DeskTop.js 679 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  106. ];
  107. U.MD.D.I.studentDeskIcon = [
  108. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  109. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  110. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  111. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  112. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  113. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  114. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  115. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  116. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  117. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  118. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  119. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  120. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  121. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  122. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  123. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  124. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  125. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  126. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  127. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  128. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  129. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  130. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  131. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  132. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  133. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  134. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  135. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  136. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  137. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  138. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  139. ];
  140. U.MD.D.I.studentDeskIcon2 = [
  141. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  142. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  143. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  144. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  145. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  146. ]
  147. U.MD.D.I.studentDeskIcon3 = [
  148. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  149. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  150. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  151. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  152. ]
  153. U.MD.D.I.schoolDeskIcon = [
  154. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  155. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  156. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  157. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  158. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  159. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  160. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  161. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  162. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  163. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  164. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  165. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  166. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  167. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  168. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  169. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  170. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  171. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  172. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  173. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  174. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  175. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  176. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  177. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  178. ];
  179. U.MD.D.I.orgDeskIcon = [
  180. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  181. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  182. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  183. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  184. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  185. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  187. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  188. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  189. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  190. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  191. ];
  192. U.MD.D.I.orgStemDeskIcon = [
  193. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  194. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  195. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  196. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  197. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  198. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  199. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  200. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  201. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  202. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  203. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  204. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  205. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  206. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  207. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  209. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  210. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  211. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  212. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  213. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  214. ];
  215. U.MD.D.I.szulsDeskIcon = [
  216. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  217. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  218. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  219. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  220. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  221. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  222. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  223. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  224. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  225. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  226. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  227. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  228. ];
  229. U.MD.D.I.hanDeskIcon = [
  230. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  231. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  232. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  233. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  234. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  235. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  236. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  237. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  238. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  239. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  240. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  241. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  242. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  243. ];
  244. U.MD.D.I.GMteacherDeskIcon = [
  245. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  246. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  247. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  248. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  249. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  250. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  251. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  252. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  253. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  254. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  255. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  256. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  257. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  258. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  259. ];
  260. U.MD.D.I.GMstudentDeskIcon = [
  261. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  262. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  263. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  264. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  265. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  266. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  267. ];
  268. //松山湖
  269. U.MD.D.I.SONGteacherDeskIcon = [
  270. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  271. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  272. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  273. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  274. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  275. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  276. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  277. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  278. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  279. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  280. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  281. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  282. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  283. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  284. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  285. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  286. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  287. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  288. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  289. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  290. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  291. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  292. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  293. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  294. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  295. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  296. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  297. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  298. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  299. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  300. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  301. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  302. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  303. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  304. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  305. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  306. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  307. ];
  308. U.MD.D.I.tcStudentDeskIcon = [
  309. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  310. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  311. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  312. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  313. ];
  314. U.MD.D.I.tcTeacherDeskIcon = [
  315. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  316. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  317. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  318. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  319. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  320. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  321. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  322. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  323. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  324. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  325. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  326. ];
  327. U.MD.D.I.tcOrganizerDeskIcon = [
  328. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  329. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  330. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  331. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  332. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  333. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  334. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  335. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  336. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  337. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  338. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  339. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  340. ];
  341. U.MD.D.I.szscStudentDeskIcon = [
  342. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  343. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  344. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  345. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  346. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  347. ];
  348. U.MD.D.I.szscTeacherDeskIcon = [
  349. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  350. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  351. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  352. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  353. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  354. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  355. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  356. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  357. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  358. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  359. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  360. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  361. ];
  362. U.MD.D.I.szscOrganizerDeskIcon = [
  363. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  364. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  365. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  366. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  367. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  368. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  369. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  370. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  371. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  372. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  373. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  374. ];
  375. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  376. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  377. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  378. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  379. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  380. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  381. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  382. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  383. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  384. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  385. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  386. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  387. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  388. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  389. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  390. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  391. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  392. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  393. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  394. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  395. ];
  396. U.MD.D.I.wankeAdminDeskIcon = [
  397. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  398. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  399. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  400. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  401. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  402. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  403. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  404. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  405. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  406. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  407. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  408. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  409. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  410. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  411. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  412. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  413. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  414. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  415. ];
  416. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  417. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  418. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  419. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  420. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  421. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  422. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  423. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  424. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  425. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  426. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  427. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  428. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  429. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  430. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  431. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  432. ];
  433. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  434. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  435. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  436. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  437. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  438. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  439. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  440. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  441. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  442. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  443. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  444. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  445. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  446. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  447. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  448. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  449. ];
  450. //明德教师桌面图标的全局变量
  451. U.MD.D.I.MingdeTeacherDeskIcon = [
  452. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  453. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  454. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  455. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  456. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  457. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  458. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  459. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  460. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  461. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  462. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  463. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  464. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  465. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  466. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  467. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  468. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  469. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  470. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  471. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  472. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  473. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  474. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  475. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  476. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  477. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  478. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  479. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  480. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  481. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  482. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  483. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  484. ];
  485. //97c4ee8b-d010-4042-986d-e9d3c217264f
  486. //教师桌面图标的全局变量
  487. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  488. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  489. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  490. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  491. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  492. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  493. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  494. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  495. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  496. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  497. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  498. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  499. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  500. ];
  501. //福田
  502. U.MD.D.I.futianTeacherDeskIcon = [
  503. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  504. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  505. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  506. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  507. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  508. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  509. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  510. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  511. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  512. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  513. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  514. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  515. ];
  516. //福田
  517. U.MD.D.I.futianAdminDeskIcon = [
  518. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  519. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  520. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  521. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  522. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  523. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  524. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  525. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  526. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  527. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  528. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  529. ];
  530. //lotech
  531. U.MD.D.I.lotechTeacherDeskIcon = [
  532. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  533. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  534. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  535. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  536. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  537. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  538. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  539. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  540. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  541. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  542. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  543. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  544. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  546. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  547. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  548. ];
  549. //龙华中心小学教师桌面图标的全局变量
  550. U.MD.D.I.longhuateacherDeskIcon = [
  551. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  552. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  553. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  554. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  555. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  556. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  557. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  558. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  559. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  560. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  561. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  562. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  563. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  564. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  565. ];
  566. //教科院实小教师桌面图标的全局变量
  567. U.MD.D.I.siesteacherDeskIcon = [
  568. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  569. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  570. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  571. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  572. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  573. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  574. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  575. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  576. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  577. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  578. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  579. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  580. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  581. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  582. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  583. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  584. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  587. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  588. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  589. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  590. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  591. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  592. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  593. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  594. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  595. ];
  596. //教科院实小教师桌面图标的全局变量
  597. U.MD.D.I.siesStudentDeskIcon = [
  598. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  599. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  600. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  601. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  602. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  603. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  604. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  605. ];
  606. //中山小学教师桌面图标的全局变量
  607. U.MD.D.I.guzmsteacherDeskIcon = [
  608. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  609. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  610. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  611. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  612. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  613. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  614. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  615. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  616. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  617. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  618. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  619. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  620. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  621. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  622. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  623. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  624. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  625. ];
  626. //中山小学学生桌面图标的全局变量
  627. U.MD.D.I.guzmsStudentDeskIcon = [
  628. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  629. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  630. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  631. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  632. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  633. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  634. ];
  635. //福田
  636. U.MD.D.I.gdjgTeacherDeskIcon = [
  637. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  638. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  639. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  640. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  641. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  642. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  643. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  644. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  645. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  646. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  647. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  648. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  649. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  650. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  651. ];
  652. //gdjg
  653. U.MD.D.I.gdjgAdminDeskIcon = [
  654. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  655. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  656. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  657. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  658. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  659. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  660. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  661. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  662. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  663. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  664. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  665. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  666. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  667. ];
  668. //hk
  669. U.MD.D.I.hkteacherDeskIcon = [
  670. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  671. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  672. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  673. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  674. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  675. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  676. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  677. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  678. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  679. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  680. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  681. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  682. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  683. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  684. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  685. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  686. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  687. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  688. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  689. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  690. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  691. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  692. ];
  693. //hk
  694. U.MD.D.I.hkStudentDeskIcon = [
  695. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  696. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  697. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  698. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  699. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  700. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  701. ];
  702. //hk
  703. U.MD.D.I.hkaceteacherDeskIcon = [
  704. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  705. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  706. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  707. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  708. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  709. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  710. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  711. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  712. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  713. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  714. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  715. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  716. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  717. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  718. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  719. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  720. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  721. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  722. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  723. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  724. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  725. ];
  726. //hk
  727. U.MD.D.I.hkaceStudentDeskIcon = [
  728. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  729. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  730. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  731. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  732. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  733. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  734. ];
  735. //香海正覺蓮社佛教正覺中學
  736. U.MD.D.I.hkZJLSteacherDeskIcon = [
  737. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  738. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  739. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  740. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  741. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  742. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  743. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  744. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  745. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  746. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  747. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  748. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  749. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  750. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  751. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  752. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  753. ];
  754. //香海正覺蓮社佛教正覺中學
  755. U.MD.D.I.hkZJLSStudentDeskIcon = [
  756. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  757. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  758. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  759. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  760. ];
  761. //云海
  762. U.MD.D.I.yunhaiTeacherDeskIcon = [
  763. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  764. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  765. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  766. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  767. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  768. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  769. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  770. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  771. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  772. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  773. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  774. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  775. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  776. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  777. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  778. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  779. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  780. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  781. ];
  782. //福田
  783. U.MD.D.I.heyuanTeacherDeskIcon = [
  784. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  785. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  786. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  787. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  788. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  789. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  790. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  791. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  792. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  793. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  794. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  795. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  796. ];
  797. //福田
  798. U.MD.D.I.heyuanAdminDeskIcon = [
  799. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  800. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  801. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  802. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  803. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  804. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  805. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  806. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  807. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  808. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  809. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  810. ];
  811. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  812. U.MD.D.I.szherTeacherDeskIcon = [
  813. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  814. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  815. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  816. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  817. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  818. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  819. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  820. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  821. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  822. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  823. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  824. ];
  825. //dsei
  826. U.MD.D.I.dseiTeacherDeskIcon = [
  827. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  828. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  829. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  830. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  831. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  832. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  833. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  834. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  835. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  836. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  837. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  838. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  839. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  840. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  841. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  842. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  843. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  844. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  845. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  846. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  847. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  848. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  849. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  850. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  851. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  852. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  853. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  854. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  855. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  856. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  857. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  858. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  859. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  860. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  861. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  862. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  863. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  864. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  865. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  866. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  867. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  868. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  869. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  870. ];
  871. //dsei
  872. U.MD.D.I.dseiAdminDeskIcon = [
  873. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  874. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  875. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  876. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  877. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  878. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  879. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  880. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  881. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  882. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  883. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  884. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  885. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  886. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  887. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  888. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  889. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  890. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  891. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  892. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  893. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  894. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  895. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  896. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  897. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  898. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  899. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  900. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  901. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  902. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  903. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  904. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  905. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  906. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  907. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  908. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  909. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  910. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  911. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  912. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  913. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  914. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  915. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  916. ];
  917. //dsei
  918. U.MD.D.I.dseiStudentDeskIcon = [
  919. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  920. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  921. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  922. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  923. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  924. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  925. ];
  926. //未来教育基地
  927. U.MD.D.I.szjkyTeacherDeskIcon = [
  928. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  929. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  930. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  931. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  932. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  933. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  934. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  935. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  936. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  937. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  938. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  939. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  940. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  941. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  942. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  943. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  944. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  945. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  946. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  947. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  948. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  949. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  950. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  951. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  952. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  953. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  954. ];
  955. //未来教育基地
  956. U.MD.D.I.szjkyAdminDeskIcon = [
  957. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  958. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  959. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  960. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  961. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  962. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  963. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  964. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  965. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  966. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  967. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  968. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  969. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  970. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  971. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  972. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  973. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  974. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  975. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  976. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  977. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  978. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  979. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  980. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  981. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  982. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  983. ];
  984. //未来教育基地
  985. U.MD.D.I.szjkyStudentDeskIcon = [
  986. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  987. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  988. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  989. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  990. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  991. ];
  992. //成华教育局
  993. U.MD.D.I.chjyjTeacherDeskIcon = [
  994. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  995. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  996. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  997. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  998. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  999. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1000. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1001. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1002. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1003. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1004. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1005. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1006. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1007. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1008. ];
  1009. //成华教育局chjyj
  1010. U.MD.D.I.chjyjAdminDeskIcon = [
  1011. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1012. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1013. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1014. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1015. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1016. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1017. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1018. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1019. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1020. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1021. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1022. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1023. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1024. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1025. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1026. ];
  1027. //成华教育局chjyj
  1028. U.MD.D.I.chjyjStudentDeskIcon = [
  1029. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1030. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1031. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1032. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1033. ];
  1034. //tpc
  1035. U.MD.D.I.tpcStudentDeskIcon = [
  1036. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1037. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1038. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1039. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1040. ];
  1041. //tpc
  1042. U.MD.D.I.tpcTeacherDeskIcon = [
  1043. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1044. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1045. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1046. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1047. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1048. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1049. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1050. ];
  1051. //tpc
  1052. U.MD.D.I.tpcAdminDeskIcon = [
  1053. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1054. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1055. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1056. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1057. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1058. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1059. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1060. ];
  1061. //THU-IOE
  1062. U.MD.D.I.thuioeTeacherDeskIcon = [
  1063. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1064. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1065. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1066. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1067. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1068. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1069. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1070. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1071. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1072. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1073. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1074. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1075. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1076. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1077. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1078. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1079. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1080. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1081. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1082. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1083. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1084. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1085. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1086. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1087. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1088. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1089. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1090. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1091. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1092. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1093. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1094. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1095. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1096. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1097. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1098. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1099. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1100. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1101. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1102. ];
  1103. //THU-IOE
  1104. U.MD.D.I.thuioeStudentDeskIcon = [
  1105. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1106. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1107. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1108. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1109. ];
  1110. //jccssyl
  1111. U.MD.D.I.jccssylTeacherDeskIcon = [
  1112. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1113. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1114. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1115. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1116. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1117. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1118. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1119. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1120. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1121. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1122. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1123. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1124. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1125. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1126. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1127. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1128. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1129. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1130. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1131. ];
  1132. //jccssyl
  1133. U.MD.D.I.jccssylStudentDeskIcon = [
  1134. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1135. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1136. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1138. ];
  1139. //cale
  1140. U.MD.D.I.caleTeacherDeskIcon = [
  1141. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1142. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1143. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1144. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1145. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1146. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1147. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1148. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1149. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1150. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1151. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1152. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1153. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1154. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1155. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1156. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1157. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1158. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1159. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1160. ];
  1161. //cale
  1162. U.MD.D.I.caleStudentDeskIcon = [
  1163. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1164. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1165. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1166. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1167. ];
  1168. //lqwmsgzs
  1169. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1170. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1171. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1172. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1173. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1174. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1175. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1176. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1177. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1178. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1179. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1180. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1181. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1182. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1183. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1184. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1185. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1186. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1187. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1188. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1189. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1190. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1191. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1192. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1193. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1194. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1195. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1196. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1197. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1198. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1199. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1200. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1201. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1202. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1203. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1204. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1205. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1206. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1207. ];
  1208. //lqwmsgzs
  1209. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1210. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1211. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1212. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1213. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1214. ];
  1215. //盐田区幼儿园
  1216. U.MD.D.I.ytyTeacherDeskIcon = [
  1217. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1218. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1219. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1220. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1221. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1222. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1223. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1224. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1226. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1227. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1228. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1229. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1230. ];
  1231. //盐田区幼儿园
  1232. U.MD.D.I.ytyStudentDeskIcon = [
  1233. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1234. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1235. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1236. ];
  1237. //scnuai
  1238. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1239. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1240. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1241. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1242. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1243. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1244. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1245. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1246. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1247. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1248. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1249. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1250. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1251. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1252. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1253. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1254. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1255. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1256. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1257. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1258. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1259. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1260. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1261. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1262. ];
  1263. //scnuai
  1264. U.MD.D.I.scnuaiAdminDeskIcon = [
  1265. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1266. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1267. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1268. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1269. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1270. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1271. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1272. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1273. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1274. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1275. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1276. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1277. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1278. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1279. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1280. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1281. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1282. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1283. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1284. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1285. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1286. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1287. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1288. ];
  1289. //scnuai
  1290. U.MD.D.I.scnuaiStudentDeskIcon = [
  1291. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1292. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1293. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1294. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1295. ];
  1296. //cocobiz
  1297. U.MD.D.I.cocobizteacherDeskIcon = [
  1298. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1299. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1300. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1301. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1302. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1303. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1304. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1305. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1306. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1307. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1308. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1309. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1310. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1311. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1312. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1313. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1314. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1315. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1316. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1317. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1318. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1319. ];
  1320. //cocobiz
  1321. U.MD.D.I.cocobizStudentDeskIcon = [
  1322. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1323. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1324. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1325. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1326. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1327. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1328. ];
  1329. //xxzjky
  1330. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1331. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1332. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1333. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1334. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1335. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1336. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1337. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1338. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1339. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1340. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1341. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1342. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1343. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1344. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1345. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1346. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1347. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1348. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1349. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1350. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1351. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1352. ];
  1353. //xxzjky
  1354. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1355. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1356. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1357. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1358. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1359. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1360. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1361. ];
  1362. //nsfx
  1363. U.MD.D.I.nsfxTeacherDeskIcon = [
  1364. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1365. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1366. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1367. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1368. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1369. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1370. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1371. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1372. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1373. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1374. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1375. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1376. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1377. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1378. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1379. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1380. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1381. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1382. ];
  1383. //nsfx
  1384. U.MD.D.I.nsfxStudentDeskIcon = [
  1385. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1386. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1387. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1388. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1389. ];
  1390. //stia
  1391. U.MD.D.I.stiaTeacherDeskIcon = [
  1392. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1393. // { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1394. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1395. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1396. // { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1397. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1398. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1399. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1400. // { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1401. // { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1402. // { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1403. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1404. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1405. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1406. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1407. ];
  1408. //stia
  1409. U.MD.D.I.stiaStudentDeskIcon = [
  1410. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1411. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1412. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1413. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1414. ];
  1415. //szdjg
  1416. U.MD.D.I.szdjgTeacherDeskIcon = [
  1417. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1418. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1419. ];
  1420. //szdjg
  1421. U.MD.D.I.szdjgStudentDeskIcon = [
  1422. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1423. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1424. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1425. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1426. ];
  1427. //010607
  1428. U.MD.D.I.x010607TeacherDeskIcon = [
  1429. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1430. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1431. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1432. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1433. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1434. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1435. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1436. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1437. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1438. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1439. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1440. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1441. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1442. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1443. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1444. ];
  1445. //010607
  1446. U.MD.D.I.x010607StudentDeskIcon = [
  1447. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1448. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1449. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1450. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1451. ];
  1452. //010608
  1453. U.MD.D.I.x010608TeacherDeskIcon = [
  1454. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1455. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1456. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1457. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1458. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1459. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1460. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1461. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1462. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1463. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1464. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1465. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1466. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1467. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1468. ];
  1469. //010608
  1470. U.MD.D.I.x010608StudentDeskIcon = [
  1471. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1472. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1473. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1474. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1475. ];
  1476. //xhly
  1477. U.MD.D.I.xhlyTeacherDeskIcon = [
  1478. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1479. ];
  1480. //010608
  1481. U.MD.D.I.xhlyStudentDeskIcon = [
  1482. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1483. ];
  1484. //北师大
  1485. U.MD.D.I.BSDNSteacherDeskIcon = [
  1486. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1487. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1488. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1489. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1490. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1491. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1492. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1493. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1494. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1495. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1496. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1497. ];
  1498. //北师大
  1499. U.MD.D.I.BSDNSstudentDeskIcon = [
  1500. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1501. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1502. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1503. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1504. ];
  1505. //CUHK_EDU
  1506. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1507. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1508. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1509. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1510. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1511. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1512. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1513. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1514. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1515. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1516. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1517. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1518. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1519. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1520. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1521. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1522. ];
  1523. //CUHK_EDU
  1524. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1525. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1526. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1527. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1528. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1529. ];
  1530. //010503
  1531. U.MD.D.I.x010503TeacherDeskIcon = [
  1532. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1533. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1534. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1535. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1536. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1537. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1538. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1539. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1540. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1541. ];
  1542. //010503
  1543. U.MD.D.I.x010503StudentDeskIcon = [
  1544. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1545. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1546. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1547. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1548. ];
  1549. //SPROUT Lab
  1550. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1551. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1552. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1553. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1554. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1555. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1556. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1557. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1558. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1559. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1560. ];
  1561. //SPROUT Lab
  1562. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1563. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1564. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1565. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1566. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1567. ];
  1568. //010204
  1569. U.MD.D.I.x010204TeacherDeskIcon = [
  1570. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1571. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1572. ];
  1573. //010204
  1574. U.MD.D.I.x010204StudentDeskIcon = [
  1575. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1576. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1577. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1578. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1579. ];
  1580. //trail
  1581. U.MD.D.I.trailTeacherDeskIcon = [
  1582. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1583. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1584. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1585. ];
  1586. //trail
  1587. U.MD.D.I.trailStudentDeskIcon = [
  1588. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1589. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1590. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1591. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1592. ];
  1593. //010504
  1594. U.MD.D.I.x010504TeacherDeskIcon = [
  1595. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1596. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1597. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1598. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1599. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1600. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1601. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1602. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1603. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1604. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1605. ];
  1606. //010504
  1607. U.MD.D.I.x010504StudentDeskIcon = [
  1608. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1609. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1610. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1611. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1612. ];
  1613. //SCNUET
  1614. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1615. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1616. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1617. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1618. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1619. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1620. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1621. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1622. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1623. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1624. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1625. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1626. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1627. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1628. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1629. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1630. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1631. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1632. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1633. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1634. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1635. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1636. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1637. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1638. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1639. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1640. ];
  1641. //SCNUET
  1642. U.MD.D.I.SCNUETAdminDeskIcon = [
  1643. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1644. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1645. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1646. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1647. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1648. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1649. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1650. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1651. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1652. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1653. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1654. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1655. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1656. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1657. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1658. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1659. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1660. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1661. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1662. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1663. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1664. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1665. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1666. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1667. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1668. ];
  1669. //SCNUET
  1670. U.MD.D.I.SCNUETStudentDeskIcon = [
  1671. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1672. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1673. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1674. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1675. ];
  1676. //x020201
  1677. U.MD.D.I.x020201TeacherDeskIcon = [
  1678. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1679. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1680. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1681. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1682. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1683. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1684. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1685. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1686. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1687. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1688. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1689. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1690. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1691. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1692. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1693. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1694. ];
  1695. //x020201
  1696. U.MD.D.I.x020201AdminDeskIcon = [
  1697. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1698. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1699. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1700. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1701. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1702. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1703. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1704. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1705. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1706. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1707. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1708. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1709. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1710. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1711. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1712. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1713. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1714. ];
  1715. //020201
  1716. U.MD.D.I.x020201StudentDeskIcon = [
  1717. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1718. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1719. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1720. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1721. ];
  1722. //010611
  1723. U.MD.D.I.x010611TeacherDeskIcon = [
  1724. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1725. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1726. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1727. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1728. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1729. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1730. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1731. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1732. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1733. ];
  1734. //010611
  1735. U.MD.D.I.x010611StudentDeskIcon = [
  1736. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1737. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1738. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1739. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1740. ];
  1741. //tianyuan
  1742. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1743. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1744. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1745. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1746. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1747. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1748. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1749. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1750. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1751. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1752. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1753. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1754. ];
  1755. //010611
  1756. U.MD.D.I.tianyuanStudentDeskIcon = [
  1757. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1758. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1759. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1760. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1761. ];
  1762. //320101
  1763. U.MD.D.I.x320101TeacherDeskIcon = [
  1764. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1765. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1766. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1767. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1768. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1769. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1770. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1771. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1772. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1773. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1774. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1775. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1776. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1777. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1778. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1779. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1780. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1781. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1782. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1783. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1784. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1785. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1786. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1787. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1788. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1789. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1790. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1791. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1792. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1793. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1794. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1795. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1796. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1797. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1798. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1799. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1800. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1801. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1802. ];
  1803. //320101
  1804. U.MD.D.I.x320101StudentDeskIcon = [
  1805. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1806. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1807. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1808. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1809. ];
  1810. //szsy
  1811. U.MD.D.I.szsyTeacherDeskIcon = [
  1812. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1813. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1814. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1815. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1816. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1817. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1818. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1819. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1820. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1821. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1822. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1823. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1824. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1825. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1826. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1827. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1828. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1829. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1830. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1831. ];
  1832. //szsy
  1833. U.MD.D.I.szsyStudentDeskIcon = [
  1834. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1835. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1836. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1837. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1838. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1839. ];
  1840. //#region 桌面初始化a
  1841. /**
  1842. * 初始化桌面的起始函数
  1843. *
  1844. */
  1845. U.MD.D.I.init = function () {
  1846. if ($("#U_MD_D_K")[0]) {
  1847. //初始化桌面图标
  1848. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1849. // var clickUrl = ':12588/requestIp.php';
  1850. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1851. // U.MD.D.I.Ip = data;
  1852. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1853. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1854. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1855. // })
  1856. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1857. // })
  1858. }
  1859. }
  1860. /**
  1861. * 模式切换
  1862. *
  1863. */
  1864. U.MD.D.I.ModeCheck = function (type) {
  1865. if (US.Config.type == type) {
  1866. return
  1867. }
  1868. US.Config.type = type
  1869. $('.U_PBL_Check .active')[0].className = ''
  1870. if (type == 1) {
  1871. $('.U_PBL_Check div')[0].className = 'active'
  1872. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1873. } else {
  1874. $('.U_PBL_Check div')[1].className = 'active'
  1875. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1876. }
  1877. //初始化桌面图标
  1878. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1879. if (type == 2) {
  1880. U.MD.D.I.openApplication("project")
  1881. }
  1882. }
  1883. /**
  1884. * 隐藏任务栏
  1885. *
  1886. * @param {element} 桌面元素
  1887. */
  1888. U.MD.D.I.hiddenTaskbar = function (el) {
  1889. //任务栏位置变小
  1890. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1891. //桌面的位置变大
  1892. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1893. }
  1894. /**
  1895. * 隐藏任务栏
  1896. *
  1897. * @param {element} 桌面元素
  1898. */
  1899. U.MD.D.I.hiddenTaskbarout = function (el) {
  1900. //任务栏位置变小
  1901. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1902. //任务栏位置变化
  1903. U.selectEl(el).css({ "bottom": "-60px" });
  1904. //桌面的位置变大
  1905. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1906. }
  1907. }
  1908. /**
  1909. * 初始化打印桌面图标
  1910. *
  1911. * @param {element} 桌面元素
  1912. */
  1913. U.MD.D.I.initDesktopIcons = function (el, type) {
  1914. var i, //用于循环
  1915. _content, //桌面图标元素
  1916. _iconcontent, //桌面图标元素
  1917. _frag = $$("frag"), //定义一个碎片元素
  1918. _type = US.userInfo.type,
  1919. _org = US.userInfo.org,
  1920. _oid = US.userInfo.organizeid,
  1921. _role = US.userInfo.role,
  1922. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1923. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1924. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1925. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1926. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1927. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1928. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1929. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1930. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1931. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1932. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1933. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1934. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1935. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1936. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1937. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1938. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1939. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1940. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1941. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1942. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1943. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1944. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1945. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1946. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1947. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1948. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1949. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1950. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1951. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1952. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1953. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1954. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1955. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1956. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1957. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1958. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1959. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1960. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1961. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1962. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1963. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1964. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1965. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1966. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1967. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1968. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1969. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1970. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1971. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1972. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1973. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1974. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1975. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1976. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1977. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1978. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1979. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1980. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1981. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1982. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1983. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1984. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1985. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1986. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1987. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1988. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1989. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1990. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1991. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1992. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1993. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1994. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1995. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1996. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1997. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1998. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1999. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2000. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2001. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2002. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2003. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2004. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2005. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2006. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2007. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2008. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2009. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2010. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2011. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2012. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2013. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2014. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2015. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2016. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2017. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2018. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2019. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2020. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2021. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2022. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2023. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2024. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2025. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2026. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2027. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2028. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //SPROUT Lab
  2029. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //SPROUT Lab
  2030. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2031. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2032. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2033. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2034. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2035. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2036. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  2037. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263','8a352da2-56e1-11ef-b873-005056b86db5','9b46a3c9-7657-11ef-9b30-005056b86db5','857af1c7-c8ee-4b04-85b5-fd182903adb7','876030db-7a49-11ef-9b30-005056b86db5','b97fc213-86a9-11ef-9b30-005056b86db5', 'c636f63e-86f4-11ef-9b30-005056b86db5','6c16df93-8849-11ef-9b30-005056b86db5','72c16ee0-89fe-11ef-9b30-005056b86db5','369222a8-cddd-11ed-9546-005056b86db5','3fc7840d-a1c4-11ef-9b30-005056b86db5','2c5d4971-ed9e-11ef-b508-005056924926'];
  2038. var _orgA = ["7ada499f-4ec7-11ed-8c78-005056b86db5", "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d", "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b", "150e3120-9195-11ed-b13d-005056b86db5", "ee40e8e3-e36c-4872-8105-cf395481012s", '97c4ee8b-d010-4042-986d-e9d3c217264f', 'ec0af97a-7c10-4259-a7eb-db9cc8174cdc', '4df1b570-f6ac-48fc-8d50-d0b157dae776', 'e632b86c-f89d-11ed-91d8-005056b86db5', 'b50cf65a-001c-11ee-91d8-005056b86db5', '578de748-05d2-11ee-91d8-005056b86db5', '54f09f1e-09f0-11ee-91d8-005056b86db5', '7b016f69-0f4f-11ee-91d8-005056b86db5', '1973f6c7-1561-11ee-91d8-005056b86db5', '2fa75e51-189a-11ee-91d8-005056b86db5', 'a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956', 'fbb00cc1-380b-4173-add4-59b3cf7682b5', '63060b4a-89dc-4f0c-bf04-a1de22d479ff', '777559d2-7239-11ee-b98c-005056b86db5', '03d24cf9-4fbc-4aeb-bb02-6f84f66e6344','884c5665-a453-46f3-b7b6-01d575290aa9','c9a6de59-8b4f-4be1-8565-a08081f649d3','7f280060-665e-4868-b68f-1eec9e1b4a07','f3b243b2-75e2-4b00-8f66-7644946a2a25','16ace517-b5c7-4168-a9bb-a9e0035df840','2fe1a080-4425-4620-b7a0-be2f3750ffd4','a5efd078-20f6-4185-bef9-6d1c688bee70','23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6','ec84034b-8ea4-4d27-9cba-1adcb4720bb3','b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc','c8266c04-59e3-44de-bcf2-8f906e66e636'];
  2039. //清楚桌面图标
  2040. el.innerHTML = "";
  2041. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2042. _teacherDesktopIconInfo.push(
  2043. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2044. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } }, { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } }, { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } }, { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2045. )
  2046. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2047. }
  2048. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  2049. _teacherDesktopIconInfo.push(
  2050. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2051. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2052. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2053. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2054. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2055. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2056. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2057. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2058. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2059. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2060. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2061. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2062. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2063. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2064. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2065. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2066. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2067. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2068. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2069. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2070. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2071. )
  2072. }
  2073. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2074. _teacherDesktopIconInfo.push(
  2075. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2076. )
  2077. }
  2078. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2079. // _teacherDesktopIconInfo.push(
  2080. // )
  2081. // }
  2082. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2083. _teacherDesktopIconInfo.push(
  2084. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2085. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2086. )
  2087. }
  2088. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2089. _teacherDesktopIconInfo.push(
  2090. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2091. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2092. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2093. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2094. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2095. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2096. )
  2097. _studentDesktopIconInfo.push(
  2098. )
  2099. }
  2100. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2101. _teacherDesktopIconInfo.push(
  2102. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2103. )
  2104. _studentDesktopIconInfo.push(
  2105. )
  2106. }
  2107. //010606 组织
  2108. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2109. _teacherDesktopIconInfo.push(
  2110. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2111. )
  2112. _studentDesktopIconInfo.push(
  2113. )
  2114. }
  2115. //麒麟二中 和 民新小学
  2116. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2117. _teacherDesktopIconInfo.push(
  2118. )
  2119. }
  2120. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2121. _teacherDesktopIconInfo.push(
  2122. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2123. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2124. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2125. )
  2126. }
  2127. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2128. _hkTeacherDeskIconInfo.push(
  2129. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2130. )
  2131. }
  2132. //北师大附中(010601)
  2133. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2134. // _teacherDesktopIconInfo.push(
  2135. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2136. // )
  2137. // _studentDesktopIconInfo.push(
  2138. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2139. // )
  2140. // }
  2141. //樂善堂余近卿中學
  2142. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2143. _teacherDesktopIconInfo.push(
  2144. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2145. )
  2146. }
  2147. // Education Artificial Intelligence
  2148. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2149. _teacherDesktopIconInfo.push(
  2150. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2151. )
  2152. }
  2153. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2154. _teacherDesktopIconInfo.push(
  2155. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2156. )
  2157. }
  2158. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2159. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2160. _teacherDesktopIconInfo.push(
  2161. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2162. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2163. )
  2164. }
  2165. //麒麟二中
  2166. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2167. _studentDesktopIconInfo.push(
  2168. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2169. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2170. )
  2171. }
  2172. //万科双语
  2173. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2174. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2175. if (el.Name == '项目管理') {
  2176. el.Name = 'PBL项目'
  2177. }
  2178. return el
  2179. })
  2180. _studentDesktopIconInfo3.push(
  2181. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2182. )
  2183. }
  2184. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2185. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2186. return el.Name != '魔盒识字' && el.Name != '24点'
  2187. })
  2188. }
  2189. if ((_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") && _type == 2) {
  2190. _studentDesktopIconInfo.push(
  2191. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2192. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2193. )
  2194. }
  2195. //循环创建桌面图标
  2196. if (type == 1) {
  2197. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2198. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2199. _content = $$("div", {
  2200. className: "U_MD_D_KO",
  2201. "onmousedown": U.UF.C.closure(function (obj) {
  2202. //防止拖动图标即打开了桌面应用
  2203. U.MD.D.click(this, obj);
  2204. }, [_studentDesktopIconInfo[i]]),
  2205. "onclick": U.UF.C.closure(function (obj) {
  2206. //防止拖动图标即打开了桌面应用
  2207. U.MD.D.click(this, obj);
  2208. }, [_studentDesktopIconInfo[i]])
  2209. }, _frag); //
  2210. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2211. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2212. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2213. }
  2214. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2215. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2216. _content = $$("div", {
  2217. className: "U_MD_D_KO",
  2218. "onmousedown": U.UF.C.closure(function (obj) {
  2219. //防止拖动图标即打开了桌面应用
  2220. U.MD.D.click(this, obj);
  2221. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2222. "onclick": U.UF.C.closure(function (obj) {
  2223. //防止拖动图标即打开了桌面应用
  2224. U.MD.D.click(this, obj);
  2225. }, [_hkZJLSStudentDeskIconInfo[i]])
  2226. }, _frag); //
  2227. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2228. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2229. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2230. } //
  2231. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2232. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2233. _content = $$("div", {
  2234. className: "U_MD_D_KO",
  2235. "onmousedown": U.UF.C.closure(function (obj) {
  2236. //防止拖动图标即打开了桌面应用
  2237. U.MD.D.click(this, obj);
  2238. }, [_ytyStudentDeskIconInfo[i]]),
  2239. "onclick": U.UF.C.closure(function (obj) {
  2240. //防止拖动图标即打开了桌面应用
  2241. U.MD.D.click(this, obj);
  2242. }, [_ytyStudentDeskIconInfo[i]])
  2243. }, _frag); //
  2244. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2245. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2246. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2247. } //
  2248. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2249. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2250. _content = $$("div", {
  2251. className: "U_MD_D_KO",
  2252. "onmousedown": U.UF.C.closure(function (obj) {
  2253. //防止拖动图标即打开了桌面应用
  2254. U.MD.D.click(this, obj);
  2255. }, [_jccssylStudentDeskIconInfo[i]]),
  2256. "onclick": U.UF.C.closure(function (obj) {
  2257. //防止拖动图标即打开了桌面应用
  2258. U.MD.D.click(this, obj);
  2259. }, [_jccssylStudentDeskIconInfo[i]])
  2260. }, _frag); //
  2261. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2262. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2263. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2264. }
  2265. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2266. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2267. _content = $$("div", {
  2268. className: "U_MD_D_KO",
  2269. "onmousedown": U.UF.C.closure(function (obj) {
  2270. //防止拖动图标即打开了桌面应用
  2271. U.MD.D.click(this, obj);
  2272. }, [_scnuaiStudentDeskIconInfo[i]]),
  2273. "onclick": U.UF.C.closure(function (obj) {
  2274. //防止拖动图标即打开了桌面应用
  2275. U.MD.D.click(this, obj);
  2276. }, [_scnuaiStudentDeskIconInfo[i]])
  2277. }, _frag); //
  2278. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2279. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2280. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2281. }
  2282. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2283. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2284. _content = $$("div", {
  2285. className: "U_MD_D_KO",
  2286. "onmousedown": U.UF.C.closure(function (obj) {
  2287. //防止拖动图标即打开了桌面应用
  2288. U.MD.D.click(this, obj);
  2289. }, [_caleStudentDeskIconInfo[i]]),
  2290. "onclick": U.UF.C.closure(function (obj) {
  2291. //防止拖动图标即打开了桌面应用
  2292. U.MD.D.click(this, obj);
  2293. }, [_caleStudentDeskIconInfo[i]])
  2294. }, _frag); //
  2295. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2296. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2297. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2298. }
  2299. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2300. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2301. _content = $$("div", {
  2302. className: "U_MD_D_KO",
  2303. "onmousedown": U.UF.C.closure(function (obj) {
  2304. //防止拖动图标即打开了桌面应用
  2305. U.MD.D.click(this, obj);
  2306. }, [_thuioeStudentDeskIconInfo[i]]),
  2307. "onclick": U.UF.C.closure(function (obj) {
  2308. //防止拖动图标即打开了桌面应用
  2309. U.MD.D.click(this, obj);
  2310. }, [_thuioeStudentDeskIconInfo[i]])
  2311. }, _frag); //
  2312. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2313. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2314. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2315. }
  2316. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2317. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2318. _content = $$("div", {
  2319. className: "U_MD_D_KO",
  2320. "onmousedown": U.UF.C.closure(function (obj) {
  2321. //防止拖动图标即打开了桌面应用
  2322. U.MD.D.click(this, obj);
  2323. }, [_tpcStudentDeskIconInfo[i]]),
  2324. "onclick": U.UF.C.closure(function (obj) {
  2325. //防止拖动图标即打开了桌面应用
  2326. U.MD.D.click(this, obj);
  2327. }, [_tpcStudentDeskIconInfo[i]])
  2328. }, _frag); //
  2329. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2330. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2331. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2332. } //
  2333. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2334. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2335. _content = $$("div", {
  2336. className: "U_MD_D_KO",
  2337. "onmousedown": U.UF.C.closure(function (obj) {
  2338. //防止拖动图标即打开了桌面应用
  2339. U.MD.D.click(this, obj);
  2340. }, [_chjyjStudentDeskIconInfo[i]]),
  2341. "onclick": U.UF.C.closure(function (obj) {
  2342. //防止拖动图标即打开了桌面应用
  2343. U.MD.D.click(this, obj);
  2344. }, [_chjyjStudentDeskIconInfo[i]])
  2345. }, _frag); //
  2346. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2347. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2348. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2349. }
  2350. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2351. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2352. _content = $$("div", {
  2353. className: "U_MD_D_KO",
  2354. "onmousedown": U.UF.C.closure(function (obj) {
  2355. //防止拖动图标即打开了桌面应用
  2356. U.MD.D.click(this, obj);
  2357. }, [_szjkyStudentDeskIconInfo[i]]),
  2358. "onclick": U.UF.C.closure(function (obj) {
  2359. //防止拖动图标即打开了桌面应用
  2360. U.MD.D.click(this, obj);
  2361. }, [_szjkyStudentDeskIconInfo[i]])
  2362. }, _frag); //
  2363. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2364. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2365. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2366. }
  2367. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2368. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2369. _content = $$("div", {
  2370. className: "U_MD_D_KO",
  2371. "onmousedown": U.UF.C.closure(function (obj) {
  2372. //防止拖动图标即打开了桌面应用
  2373. U.MD.D.click(this, obj);
  2374. }, [_x020201StudentDeskIconInfo[i]]),
  2375. "onclick": U.UF.C.closure(function (obj) {
  2376. //防止拖动图标即打开了桌面应用
  2377. U.MD.D.click(this, obj);
  2378. }, [_x020201StudentDeskIconInfo[i]])
  2379. }, _frag); //
  2380. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2381. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2382. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2383. }
  2384. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2385. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2386. _content = $$("div", {
  2387. className: "U_MD_D_KO",
  2388. "onmousedown": U.UF.C.closure(function (obj) {
  2389. //防止拖动图标即打开了桌面应用
  2390. U.MD.D.click(this, obj);
  2391. }, [_SCNUETStudentDeskIconInfo[i]]),
  2392. "onclick": U.UF.C.closure(function (obj) {
  2393. //防止拖动图标即打开了桌面应用
  2394. U.MD.D.click(this, obj);
  2395. }, [_SCNUETStudentDeskIconInfo[i]])
  2396. }, _frag); //
  2397. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2398. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2399. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2400. }
  2401. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2402. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2403. _content = $$("div", {
  2404. className: "U_MD_D_KO",
  2405. "onmousedown": U.UF.C.closure(function (obj) {
  2406. //防止拖动图标即打开了桌面应用
  2407. U.MD.D.click(this, obj);
  2408. }, [_dseiStudentDeskIconInfo[i]]),
  2409. "onclick": U.UF.C.closure(function (obj) {
  2410. //防止拖动图标即打开了桌面应用
  2411. U.MD.D.click(this, obj);
  2412. }, [_dseiStudentDeskIconInfo[i]])
  2413. }, _frag); //
  2414. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2415. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2416. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2417. }
  2418. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2419. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2420. _content = $$("div", {
  2421. className: "U_MD_D_KO",
  2422. "onmousedown": U.UF.C.closure(function (obj) {
  2423. //防止拖动图标即打开了桌面应用
  2424. U.MD.D.click(this, obj);
  2425. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2426. "onclick": U.UF.C.closure(function (obj) {
  2427. //防止拖动图标即打开了桌面应用
  2428. U.MD.D.click(this, obj);
  2429. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2430. }, _frag); //
  2431. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2432. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2433. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2434. }
  2435. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2436. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2437. _content = $$("div", {
  2438. className: "U_MD_D_KO",
  2439. "onmousedown": U.UF.C.closure(function (obj) {
  2440. //防止拖动图标即打开了桌面应用
  2441. U.MD.D.click(this, obj);
  2442. }, [_nsfxStudentDeskIconInfo[i]]),
  2443. "onclick": U.UF.C.closure(function (obj) {
  2444. //防止拖动图标即打开了桌面应用
  2445. U.MD.D.click(this, obj);
  2446. }, [_nsfxStudentDeskIconInfo[i]])
  2447. }, _frag); //
  2448. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2449. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2450. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2451. }
  2452. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2453. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2454. _content = $$("div", {
  2455. className: "U_MD_D_KO",
  2456. "onmousedown": U.UF.C.closure(function (obj) {
  2457. //防止拖动图标即打开了桌面应用
  2458. U.MD.D.click(this, obj);
  2459. }, [_stiaStudentDeskIconInfo[i]]),
  2460. "onclick": U.UF.C.closure(function (obj) {
  2461. //防止拖动图标即打开了桌面应用
  2462. U.MD.D.click(this, obj);
  2463. }, [_stiaStudentDeskIconInfo[i]])
  2464. }, _frag); //
  2465. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2466. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2467. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2468. }
  2469. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2470. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2471. _content = $$("div", {
  2472. className: "U_MD_D_KO",
  2473. "onmousedown": U.UF.C.closure(function (obj) {
  2474. //防止拖动图标即打开了桌面应用
  2475. U.MD.D.click(this, obj);
  2476. }, [_szdjgStudentDeskIconInfo[i]]),
  2477. "onclick": U.UF.C.closure(function (obj) {
  2478. //防止拖动图标即打开了桌面应用
  2479. U.MD.D.click(this, obj);
  2480. }, [_szdjgStudentDeskIconInfo[i]])
  2481. }, _frag); //
  2482. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2483. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2484. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2485. }
  2486. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2487. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2488. _content = $$("div", {
  2489. className: "U_MD_D_KO",
  2490. "onmousedown": U.UF.C.closure(function (obj) {
  2491. //防止拖动图标即打开了桌面应用
  2492. U.MD.D.click(this, obj);
  2493. }, [_x010607StudentDeskIconInfo[i]]),
  2494. "onclick": U.UF.C.closure(function (obj) {
  2495. //防止拖动图标即打开了桌面应用
  2496. U.MD.D.click(this, obj);
  2497. }, [_x010607StudentDeskIconInfo[i]])
  2498. }, _frag); //
  2499. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2500. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2501. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2502. }
  2503. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2504. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2505. _content = $$("div", {
  2506. className: "U_MD_D_KO",
  2507. "onmousedown": U.UF.C.closure(function (obj) {
  2508. //防止拖动图标即打开了桌面应用
  2509. U.MD.D.click(this, obj);
  2510. }, [_xhlyStudentDeskIconInfo[i]]),
  2511. "onclick": U.UF.C.closure(function (obj) {
  2512. //防止拖动图标即打开了桌面应用
  2513. U.MD.D.click(this, obj);
  2514. }, [_xhlyStudentDeskIconInfo[i]])
  2515. }, _frag); //
  2516. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2517. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2518. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2519. }
  2520. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2521. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2522. _content = $$("div", {
  2523. className: "U_MD_D_KO",
  2524. "onmousedown": U.UF.C.closure(function (obj) {
  2525. //防止拖动图标即打开了桌面应用
  2526. U.MD.D.click(this, obj);
  2527. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2528. "onclick": U.UF.C.closure(function (obj) {
  2529. //防止拖动图标即打开了桌面应用
  2530. U.MD.D.click(this, obj);
  2531. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2532. }, _frag); //
  2533. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2534. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2535. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2536. }
  2537. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2538. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2539. _content = $$("div", {
  2540. className: "U_MD_D_KO",
  2541. "onmousedown": U.UF.C.closure(function (obj) {
  2542. //防止拖动图标即打开了桌面应用
  2543. U.MD.D.click(this, obj);
  2544. }, [_x010503StudentDeskIconInfo[i]]),
  2545. "onclick": U.UF.C.closure(function (obj) {
  2546. //防止拖动图标即打开了桌面应用
  2547. U.MD.D.click(this, obj);
  2548. }, [_x010503StudentDeskIconInfo[i]])
  2549. }, _frag); //
  2550. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2551. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2552. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2553. }
  2554. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2555. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2556. _content = $$("div", {
  2557. className: "U_MD_D_KO",
  2558. "onmousedown": U.UF.C.closure(function (obj) {
  2559. //防止拖动图标即打开了桌面应用
  2560. U.MD.D.click(this, obj);
  2561. }, [_x010504StudentDeskIconInfo[i]]),
  2562. "onclick": U.UF.C.closure(function (obj) {
  2563. //防止拖动图标即打开了桌面应用
  2564. U.MD.D.click(this, obj);
  2565. }, [_x010504StudentDeskIconInfo[i]])
  2566. }, _frag); //
  2567. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2568. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2569. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2570. }
  2571. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2572. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2573. _content = $$("div", {
  2574. className: "U_MD_D_KO",
  2575. "onmousedown": U.UF.C.closure(function (obj) {
  2576. //防止拖动图标即打开了桌面应用
  2577. U.MD.D.click(this, obj);
  2578. }, [_x010204StudentDeskIconInfo[i]]),
  2579. "onclick": U.UF.C.closure(function (obj) {
  2580. //防止拖动图标即打开了桌面应用
  2581. U.MD.D.click(this, obj);
  2582. }, [_x010204StudentDeskIconInfo[i]])
  2583. }, _frag); //
  2584. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2585. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2586. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2587. }
  2588. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2589. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2590. _content = $$("div", {
  2591. className: "U_MD_D_KO",
  2592. "onmousedown": U.UF.C.closure(function (obj) {
  2593. //防止拖动图标即打开了桌面应用
  2594. U.MD.D.click(this, obj);
  2595. }, [_x320101StudentDeskIconInfo[i]]),
  2596. "onclick": U.UF.C.closure(function (obj) {
  2597. //防止拖动图标即打开了桌面应用
  2598. U.MD.D.click(this, obj);
  2599. }, [_x320101StudentDeskIconInfo[i]])
  2600. }, _frag); //
  2601. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2602. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2603. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2604. }
  2605. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2606. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2607. _content = $$("div", {
  2608. className: "U_MD_D_KO",
  2609. "onmousedown": U.UF.C.closure(function (obj) {
  2610. //防止拖动图标即打开了桌面应用
  2611. U.MD.D.click(this, obj);
  2612. }, [_trailStudentDeskIconInfo[i]]),
  2613. "onclick": U.UF.C.closure(function (obj) {
  2614. //防止拖动图标即打开了桌面应用
  2615. U.MD.D.click(this, obj);
  2616. }, [_trailStudentDeskIconInfo[i]])
  2617. }, _frag); //
  2618. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2619. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2620. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2621. }
  2622. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2623. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2624. _content = $$("div", {
  2625. className: "U_MD_D_KO",
  2626. "onmousedown": U.UF.C.closure(function (obj) {
  2627. //防止拖动图标即打开了桌面应用
  2628. U.MD.D.click(this, obj);
  2629. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2630. "onclick": U.UF.C.closure(function (obj) {
  2631. //防止拖动图标即打开了桌面应用
  2632. U.MD.D.click(this, obj);
  2633. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2634. }, _frag); //
  2635. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2636. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2637. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2638. }
  2639. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2640. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2641. _content = $$("div", {
  2642. className: "U_MD_D_KO",
  2643. "onmousedown": U.UF.C.closure(function (obj) {
  2644. //防止拖动图标即打开了桌面应用
  2645. U.MD.D.click(this, obj);
  2646. }, [_szsyStudentDeskIconInfo[i]]),
  2647. "onclick": U.UF.C.closure(function (obj) {
  2648. //防止拖动图标即打开了桌面应用
  2649. U.MD.D.click(this, obj);
  2650. }, [_szsyStudentDeskIconInfo[i]])
  2651. }, _frag); //
  2652. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2653. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2654. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2655. }
  2656. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2657. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2658. _content = $$("div", {
  2659. className: "U_MD_D_KO",
  2660. "onmousedown": U.UF.C.closure(function (obj) {
  2661. //防止拖动图标即打开了桌面应用
  2662. U.MD.D.click(this, obj);
  2663. }, [_x010608StudentDeskIconInfo[i]]),
  2664. "onclick": U.UF.C.closure(function (obj) {
  2665. //防止拖动图标即打开了桌面应用
  2666. U.MD.D.click(this, obj);
  2667. }, [_x010608StudentDeskIconInfo[i]])
  2668. }, _frag); //
  2669. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2670. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2671. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2672. }
  2673. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2674. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2675. _content = $$("div", {
  2676. className: "U_MD_D_KO",
  2677. "onmousedown": U.UF.C.closure(function (obj) {
  2678. //防止拖动图标即打开了桌面应用
  2679. U.MD.D.click(this, obj);
  2680. }, [_x010611StudentDeskIconInfo[i]]),
  2681. "onclick": U.UF.C.closure(function (obj) {
  2682. //防止拖动图标即打开了桌面应用
  2683. U.MD.D.click(this, obj);
  2684. }, [_x010611StudentDeskIconInfo[i]])
  2685. }, _frag); //
  2686. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2687. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2688. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2689. }
  2690. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2691. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2692. _content = $$("div", {
  2693. className: "U_MD_D_KO",
  2694. "onmousedown": U.UF.C.closure(function (obj) {
  2695. //防止拖动图标即打开了桌面应用
  2696. U.MD.D.click(this, obj);
  2697. }, [_tianyuantudentDeskIconInfo[i]]),
  2698. "onclick": U.UF.C.closure(function (obj) {
  2699. //防止拖动图标即打开了桌面应用
  2700. U.MD.D.click(this, obj);
  2701. }, [_tianyuantudentDeskIconInfo[i]])
  2702. }, _frag); //
  2703. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2704. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2705. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2706. }
  2707. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2708. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2709. _content = $$("div", {
  2710. className: "U_MD_D_KO",
  2711. "onmousedown": U.UF.C.closure(function (obj) {
  2712. //防止拖动图标即打开了桌面应用
  2713. U.MD.D.click(this, obj);
  2714. }, [_siesStudentDeskIconInfo[i]]),
  2715. "onclick": U.UF.C.closure(function (obj) {
  2716. //防止拖动图标即打开了桌面应用
  2717. U.MD.D.click(this, obj);
  2718. }, [_siesStudentDeskIconInfo[i]])
  2719. }, _frag); //
  2720. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2721. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2722. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2723. }
  2724. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2725. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2726. _content = $$("div", {
  2727. className: "U_MD_D_KO",
  2728. "onmousedown": U.UF.C.closure(function (obj) {
  2729. //防止拖动图标即打开了桌面应用
  2730. U.MD.D.click(this, obj);
  2731. }, [_guzmsStudentDeskIconInfo[i]]),
  2732. "onclick": U.UF.C.closure(function (obj) {
  2733. //防止拖动图标即打开了桌面应用
  2734. U.MD.D.click(this, obj);
  2735. }, [_guzmsStudentDeskIconInfo[i]])
  2736. }, _frag); //
  2737. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2738. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2739. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2740. }
  2741. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2742. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2743. _content = $$("div", {
  2744. className: "U_MD_D_KO",
  2745. "onmousedown": U.UF.C.closure(function (obj) {
  2746. //防止拖动图标即打开了桌面应用
  2747. U.MD.D.click(this, obj);
  2748. }, [_hkStudentDeskIconInfo[i]]),
  2749. "onclick": U.UF.C.closure(function (obj) {
  2750. //防止拖动图标即打开了桌面应用
  2751. U.MD.D.click(this, obj);
  2752. }, [_hkStudentDeskIconInfo[i]])
  2753. }, _frag); //
  2754. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2755. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2756. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2757. }
  2758. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2759. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2760. _content = $$("div", {
  2761. className: "U_MD_D_KO",
  2762. "onmousedown": U.UF.C.closure(function (obj) {
  2763. //防止拖动图标即打开了桌面应用
  2764. U.MD.D.click(this, obj);
  2765. }, [_hkaceStudentDeskIconInfo[i]]),
  2766. "onclick": U.UF.C.closure(function (obj) {
  2767. //防止拖动图标即打开了桌面应用
  2768. U.MD.D.click(this, obj);
  2769. }, [_hkaceStudentDeskIconInfo[i]])
  2770. }, _frag); //
  2771. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2772. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2773. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2774. }
  2775. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2776. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2777. _content = $$("div", {
  2778. className: "U_MD_D_KO",
  2779. "onmousedown": U.UF.C.closure(function (obj) {
  2780. //防止拖动图标即打开了桌面应用
  2781. U.MD.D.click(this, obj);
  2782. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2783. "onclick": U.UF.C.closure(function (obj) {
  2784. //防止拖动图标即打开了桌面应用
  2785. U.MD.D.click(this, obj);
  2786. }, [_BSDNSstudentDesktopIconInfo[i]])
  2787. }, _frag); //
  2788. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2789. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2790. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2791. }
  2792. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2793. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2794. _content = $$("div", {
  2795. className: "U_MD_D_KO",
  2796. "onmousedown": U.UF.C.closure(function (obj) {
  2797. //防止拖动图标即打开了桌面应用
  2798. U.MD.D.click(this, obj);
  2799. }, [_cocobizStudentDeskIconInfo[i]]),
  2800. "onclick": U.UF.C.closure(function (obj) {
  2801. //防止拖动图标即打开了桌面应用
  2802. U.MD.D.click(this, obj);
  2803. }, [_cocobizStudentDeskIconInfo[i]])
  2804. }, _frag); //
  2805. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2806. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2807. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2808. }
  2809. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2810. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2811. _content = $$("div", {
  2812. className: "U_MD_D_KO",
  2813. "onmousedown": U.UF.C.closure(function (obj) {
  2814. //防止拖动图标即打开了桌面应用
  2815. U.MD.D.click(this, obj);
  2816. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2817. "onclick": U.UF.C.closure(function (obj) {
  2818. //防止拖动图标即打开了桌面应用
  2819. U.MD.D.click(this, obj);
  2820. }, [_xxzjkyStudentDeskIconInfo[i]])
  2821. }, _frag); //
  2822. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2823. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2824. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2825. }
  2826. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2827. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2828. _content = $$("div", {
  2829. className: "U_MD_D_KO",
  2830. "onmousedown": U.UF.C.closure(function (obj) {
  2831. //防止拖动图标即打开了桌面应用
  2832. U.MD.D.click(this, obj);
  2833. }, [_studentDesktopIconInfo[i]]),
  2834. "onclick": U.UF.C.closure(function (obj) {
  2835. //防止拖动图标即打开了桌面应用
  2836. U.MD.D.click(this, obj);
  2837. }, [_studentDesktopIconInfo[i]])
  2838. }, _frag); //
  2839. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2840. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2841. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2842. }
  2843. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2844. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2845. _content = $$("div", {
  2846. className: "U_MD_D_KO",
  2847. "onmousedown": U.UF.C.closure(function (obj) {
  2848. //防止拖动图标即打开了桌面应用
  2849. U.MD.D.click(this, obj);
  2850. }, [_tcStudentDeskIconInfo[i]]),
  2851. "onclick": U.UF.C.closure(function (obj) {
  2852. //防止拖动图标即打开了桌面应用
  2853. U.MD.D.click(this, obj);
  2854. }, [_tcStudentDeskIconInfo[i]])
  2855. }, _frag); //
  2856. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2857. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2858. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2859. }
  2860. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2861. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2862. _content = $$("div", {
  2863. className: "U_MD_D_KO",
  2864. "onmousedown": U.UF.C.closure(function (obj) {
  2865. //防止拖动图标即打开了桌面应用
  2866. U.MD.D.click(this, obj);
  2867. }, [_szscStudentDeskIconInfo[i]]),
  2868. "onclick": U.UF.C.closure(function (obj) {
  2869. //防止拖动图标即打开了桌面应用
  2870. U.MD.D.click(this, obj);
  2871. }, [_szscStudentDeskIconInfo[i]])
  2872. }, _frag); //
  2873. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2874. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2875. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2876. }
  2877. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2878. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2879. _content = $$("div", {
  2880. className: "U_MD_D_KO",
  2881. "onmousedown": U.UF.C.closure(function (obj) {
  2882. //防止拖动图标即打开了桌面应用
  2883. U.MD.D.click(this, obj);
  2884. }, [_studentDesktopIconInfo3[i]]),
  2885. "onclick": U.UF.C.closure(function (obj) {
  2886. //防止拖动图标即打开了桌面应用
  2887. U.MD.D.click(this, obj);
  2888. }, [_studentDesktopIconInfo3[i]])
  2889. }, _frag); //
  2890. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2891. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2892. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2893. }
  2894. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2895. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2896. _content = $$("div", {
  2897. className: "U_MD_D_KO",
  2898. "onmousedown": U.UF.C.closure(function (obj) {
  2899. //防止拖动图标即打开了桌面应用
  2900. U.MD.D.click(this, obj);
  2901. }, [_studentDesktopIconInfo2[i]]),
  2902. "onclick": U.UF.C.closure(function (obj) {
  2903. //防止拖动图标即打开了桌面应用
  2904. U.MD.D.click(this, obj);
  2905. }, [_studentDesktopIconInfo2[i]])
  2906. }, _frag); //
  2907. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2908. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2909. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2910. }
  2911. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2912. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2913. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2914. continue
  2915. }
  2916. _content = $$("div", {
  2917. className: "U_MD_D_KO",
  2918. "onmousedown": U.UF.C.closure(function (obj) {
  2919. //防止拖动图标即打开了桌面应用
  2920. U.MD.D.click(this, obj);
  2921. }, [_wanketeacherDesktopIconInfo[i]]),
  2922. "onclick": U.UF.C.closure(function (obj) {
  2923. //防止拖动图标即打开了桌面应用
  2924. U.MD.D.click(this, obj);
  2925. }, [_wanketeacherDesktopIconInfo[i]])
  2926. }, _frag); //
  2927. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2928. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2929. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2930. }
  2931. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2932. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2933. _content = $$("div", {
  2934. className: "U_MD_D_KO",
  2935. "onmousedown": U.UF.C.closure(function (obj) {
  2936. //防止拖动图标即打开了桌面应用
  2937. U.MD.D.click(this, obj);
  2938. }, [_wankeAdminDesktopIconInfo[i]]),
  2939. "onclick": U.UF.C.closure(function (obj) {
  2940. //防止拖动图标即打开了桌面应用
  2941. U.MD.D.click(this, obj);
  2942. }, [_wankeAdminDesktopIconInfo[i]])
  2943. }, _frag); //
  2944. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2945. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2946. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2947. }
  2948. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2949. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2950. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2951. continue
  2952. }
  2953. _content = $$("div", {
  2954. className: "U_MD_D_KO",
  2955. "onmousedown": U.UF.C.closure(function (obj) {
  2956. //防止拖动图标即打开了桌面应用
  2957. U.MD.D.click(this, obj);
  2958. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2959. "onclick": U.UF.C.closure(function (obj) {
  2960. //防止拖动图标即打开了桌面应用
  2961. U.MD.D.click(this, obj);
  2962. }, [_scnuaiTeacherDeskIconInfo[i]])
  2963. }, _frag); //
  2964. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2965. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2966. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2967. }
  2968. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2969. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2970. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2971. continue
  2972. }
  2973. _content = $$("div", {
  2974. className: "U_MD_D_KO",
  2975. "onmousedown": U.UF.C.closure(function (obj) {
  2976. //防止拖动图标即打开了桌面应用
  2977. U.MD.D.click(this, obj);
  2978. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2979. "onclick": U.UF.C.closure(function (obj) {
  2980. //防止拖动图标即打开了桌面应用
  2981. U.MD.D.click(this, obj);
  2982. }, [_BSDNSteacherDesktopIconInfo[i]])
  2983. }, _frag); //
  2984. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2985. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2986. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2987. }
  2988. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2989. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2990. _content = $$("div", {
  2991. className: "U_MD_D_KO",
  2992. "onmousedown": U.UF.C.closure(function (obj) {
  2993. //防止拖动图标即打开了桌面应用
  2994. U.MD.D.click(this, obj);
  2995. }, [_scnuaiAdminDeskIconInfo[i]]),
  2996. "onclick": U.UF.C.closure(function (obj) {
  2997. //防止拖动图标即打开了桌面应用
  2998. U.MD.D.click(this, obj);
  2999. }, [_scnuaiAdminDeskIconInfo[i]])
  3000. }, _frag); //
  3001. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3002. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3003. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3004. }
  3005. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3006. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3007. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3008. continue
  3009. }
  3010. _content = $$("div", {
  3011. className: "U_MD_D_KO",
  3012. "onmousedown": U.UF.C.closure(function (obj) {
  3013. //防止拖动图标即打开了桌面应用
  3014. U.MD.D.click(this, obj);
  3015. }, [_jccssylTeacherDeskIconInfo[i]]),
  3016. "onclick": U.UF.C.closure(function (obj) {
  3017. //防止拖动图标即打开了桌面应用
  3018. U.MD.D.click(this, obj);
  3019. }, [_jccssylTeacherDeskIconInfo[i]])
  3020. }, _frag); //
  3021. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3022. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3023. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3024. }
  3025. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3026. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3027. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3028. continue
  3029. }
  3030. _content = $$("div", {
  3031. className: "U_MD_D_KO",
  3032. "onmousedown": U.UF.C.closure(function (obj) {
  3033. //防止拖动图标即打开了桌面应用
  3034. U.MD.D.click(this, obj);
  3035. }, [_caleTeacherDeskIconInfo[i]]),
  3036. "onclick": U.UF.C.closure(function (obj) {
  3037. //防止拖动图标即打开了桌面应用
  3038. U.MD.D.click(this, obj);
  3039. }, [_caleTeacherDeskIconInfo[i]])
  3040. }, _frag); //
  3041. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3042. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3043. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3044. }
  3045. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3046. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3047. _content = $$("div", {
  3048. className: "U_MD_D_KO",
  3049. "onmousedown": U.UF.C.closure(function (obj) {
  3050. //防止拖动图标即打开了桌面应用
  3051. U.MD.D.click(this, obj);
  3052. }, [_tpcOrganizerDeskIconInfo[i]]),
  3053. "onclick": U.UF.C.closure(function (obj) {
  3054. //防止拖动图标即打开了桌面应用
  3055. U.MD.D.click(this, obj);
  3056. }, [_tpcOrganizerDeskIconInfo[i]])
  3057. }, _frag); //
  3058. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3059. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3060. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3061. }
  3062. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3063. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3064. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3065. continue
  3066. }
  3067. _content = $$("div", {
  3068. className: "U_MD_D_KO",
  3069. "onmousedown": U.UF.C.closure(function (obj) {
  3070. //防止拖动图标即打开了桌面应用
  3071. U.MD.D.click(this, obj);
  3072. }, [_tpcTeacherDeskIconInfo[i]]),
  3073. "onclick": U.UF.C.closure(function (obj) {
  3074. //防止拖动图标即打开了桌面应用
  3075. U.MD.D.click(this, obj);
  3076. }, [_tpcTeacherDeskIconInfo[i]])
  3077. }, _frag); //
  3078. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3079. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3080. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3081. }
  3082. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3083. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3084. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3085. continue
  3086. }
  3087. _content = $$("div", {
  3088. className: "U_MD_D_KO",
  3089. "onmousedown": U.UF.C.closure(function (obj) {
  3090. //防止拖动图标即打开了桌面应用
  3091. U.MD.D.click(this, obj);
  3092. }, [_teacherDesktopIconInfo2[i]]),
  3093. "onclick": U.UF.C.closure(function (obj) {
  3094. //防止拖动图标即打开了桌面应用
  3095. U.MD.D.click(this, obj);
  3096. }, [_teacherDesktopIconInfo2[i]])
  3097. }, _frag); //
  3098. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3099. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3100. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3101. }
  3102. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3103. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3104. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3105. continue
  3106. }
  3107. _content = $$("div", {
  3108. className: "U_MD_D_KO",
  3109. "onmousedown": U.UF.C.closure(function (obj) {
  3110. //防止拖动图标即打开了桌面应用
  3111. U.MD.D.click(this, obj);
  3112. }, [_thuioeTeacherDeskIconInfo[i]]),
  3113. "onclick": U.UF.C.closure(function (obj) {
  3114. //防止拖动图标即打开了桌面应用
  3115. U.MD.D.click(this, obj);
  3116. }, [_thuioeTeacherDeskIconInfo[i]])
  3117. }, _frag); //
  3118. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3119. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3120. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3121. }
  3122. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3123. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3124. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3125. continue
  3126. }
  3127. _content = $$("div", {
  3128. className: "U_MD_D_KO",
  3129. "onmousedown": U.UF.C.closure(function (obj) {
  3130. //防止拖动图标即打开了桌面应用
  3131. U.MD.D.click(this, obj);
  3132. }, [_lotechTeacherDeskIconInfo[i]]),
  3133. "onclick": U.UF.C.closure(function (obj) {
  3134. //防止拖动图标即打开了桌面应用
  3135. U.MD.D.click(this, obj);
  3136. }, [_lotechTeacherDeskIconInfo[i]])
  3137. }, _frag); //
  3138. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3139. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3140. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3141. }//
  3142. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3143. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3144. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3145. continue
  3146. }
  3147. _content = $$("div", {
  3148. className: "U_MD_D_KO",
  3149. "onmousedown": U.UF.C.closure(function (obj) {
  3150. //防止拖动图标即打开了桌面应用
  3151. U.MD.D.click(this, obj);
  3152. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3153. "onclick": U.UF.C.closure(function (obj) {
  3154. //防止拖动图标即打开了桌面应用
  3155. U.MD.D.click(this, obj);
  3156. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3157. }, _frag); //
  3158. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3159. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3160. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3161. }
  3162. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3163. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3164. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3165. continue
  3166. }
  3167. _content = $$("div", {
  3168. className: "U_MD_D_KO",
  3169. "onmousedown": U.UF.C.closure(function (obj) {
  3170. //防止拖动图标即打开了桌面应用
  3171. U.MD.D.click(this, obj);
  3172. }, [_siesTeacherDeskIconInfo[i]]),
  3173. "onclick": U.UF.C.closure(function (obj) {
  3174. //防止拖动图标即打开了桌面应用
  3175. U.MD.D.click(this, obj);
  3176. }, [_siesTeacherDeskIconInfo[i]])
  3177. }, _frag); //
  3178. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3179. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3180. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3181. }
  3182. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3183. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3184. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3185. continue
  3186. }
  3187. _content = $$("div", {
  3188. className: "U_MD_D_KO",
  3189. "onmousedown": U.UF.C.closure(function (obj) {
  3190. //防止拖动图标即打开了桌面应用
  3191. U.MD.D.click(this, obj);
  3192. }, [_guzmsTeacherDeskIconInfo[i]]),
  3193. "onclick": U.UF.C.closure(function (obj) {
  3194. //防止拖动图标即打开了桌面应用
  3195. U.MD.D.click(this, obj);
  3196. }, [_guzmsTeacherDeskIconInfo[i]])
  3197. }, _frag); //
  3198. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3199. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3200. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3201. }
  3202. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3203. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3204. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3205. continue
  3206. }
  3207. _content = $$("div", {
  3208. className: "U_MD_D_KO",
  3209. "onmousedown": U.UF.C.closure(function (obj) {
  3210. //防止拖动图标即打开了桌面应用
  3211. U.MD.D.click(this, obj);
  3212. }, [_longhuaTeacherDeskIconInfo[i]]),
  3213. "onclick": U.UF.C.closure(function (obj) {
  3214. //防止拖动图标即打开了桌面应用
  3215. U.MD.D.click(this, obj);
  3216. }, [_longhuaTeacherDeskIconInfo[i]])
  3217. }, _frag); //
  3218. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3219. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3220. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3221. }
  3222. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3223. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3224. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3225. continue
  3226. }
  3227. _content = $$("div", {
  3228. className: "U_MD_D_KO",
  3229. "onmousedown": U.UF.C.closure(function (obj) {
  3230. //防止拖动图标即打开了桌面应用
  3231. U.MD.D.click(this, obj);
  3232. }, [_ytyTeacherDeskIconInfo[i]]),
  3233. "onclick": U.UF.C.closure(function (obj) {
  3234. //防止拖动图标即打开了桌面应用
  3235. U.MD.D.click(this, obj);
  3236. }, [_ytyTeacherDeskIconInfo[i]])
  3237. }, _frag); //
  3238. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3239. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3240. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3241. }
  3242. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3243. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3244. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3245. continue
  3246. }
  3247. _content = $$("div", {
  3248. className: "U_MD_D_KO",
  3249. "onmousedown": U.UF.C.closure(function (obj) {
  3250. //防止拖动图标即打开了桌面应用
  3251. U.MD.D.click(this, obj);
  3252. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3253. "onclick": U.UF.C.closure(function (obj) {
  3254. //防止拖动图标即打开了桌面应用
  3255. U.MD.D.click(this, obj);
  3256. }, [_yunhaiTeacherDeskIconInfo[i]])
  3257. }, _frag); //
  3258. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3259. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3260. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3261. } //_hkStudentDeskIconInfo
  3262. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3263. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3264. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3265. continue
  3266. }
  3267. _content = $$("div", {
  3268. className: "U_MD_D_KO",
  3269. "onmousedown": U.UF.C.closure(function (obj) {
  3270. //防止拖动图标即打开了桌面应用
  3271. U.MD.D.click(this, obj);
  3272. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3273. "onclick": U.UF.C.closure(function (obj) {
  3274. //防止拖动图标即打开了桌面应用
  3275. U.MD.D.click(this, obj);
  3276. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3277. }, _frag); //
  3278. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3279. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3280. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3281. }
  3282. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3283. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3284. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3285. continue
  3286. }
  3287. _content = $$("div", {
  3288. className: "U_MD_D_KO",
  3289. "onmousedown": U.UF.C.closure(function (obj) {
  3290. //防止拖动图标即打开了桌面应用
  3291. U.MD.D.click(this, obj);
  3292. }, [_hkTeacherDeskIconInfo[i]]),
  3293. "onclick": U.UF.C.closure(function (obj) {
  3294. //防止拖动图标即打开了桌面应用
  3295. U.MD.D.click(this, obj);
  3296. }, [_hkTeacherDeskIconInfo[i]])
  3297. }, _frag); //
  3298. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3299. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3300. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3301. }
  3302. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3303. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3304. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3305. continue
  3306. }
  3307. _content = $$("div", {
  3308. className: "U_MD_D_KO",
  3309. "onmousedown": U.UF.C.closure(function (obj) {
  3310. //防止拖动图标即打开了桌面应用
  3311. U.MD.D.click(this, obj);
  3312. }, [_hkaceTeacherDeskIconInfo[i]]),
  3313. "onclick": U.UF.C.closure(function (obj) {
  3314. //防止拖动图标即打开了桌面应用
  3315. U.MD.D.click(this, obj);
  3316. }, [_hkaceTeacherDeskIconInfo[i]])
  3317. }, _frag); //
  3318. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3319. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3320. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3321. }
  3322. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3323. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3324. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3325. continue
  3326. }
  3327. _content = $$("div", {
  3328. className: "U_MD_D_KO",
  3329. "onmousedown": U.UF.C.closure(function (obj) {
  3330. //防止拖动图标即打开了桌面应用
  3331. U.MD.D.click(this, obj);
  3332. }, [_cocobizTeacherDeskIconInfo[i]]),
  3333. "onclick": U.UF.C.closure(function (obj) {
  3334. //防止拖动图标即打开了桌面应用
  3335. U.MD.D.click(this, obj);
  3336. }, [_cocobizTeacherDeskIconInfo[i]])
  3337. }, _frag); //
  3338. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3339. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3340. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3341. }
  3342. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3343. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3344. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3345. continue
  3346. }
  3347. _content = $$("div", {
  3348. className: "U_MD_D_KO",
  3349. "onmousedown": U.UF.C.closure(function (obj) {
  3350. //防止拖动图标即打开了桌面应用
  3351. U.MD.D.click(this, obj);
  3352. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3353. "onclick": U.UF.C.closure(function (obj) {
  3354. //防止拖动图标即打开了桌面应用
  3355. U.MD.D.click(this, obj);
  3356. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3357. }, _frag); //
  3358. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3359. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3360. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3361. }
  3362. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3363. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3364. _content = $$("div", {
  3365. className: "U_MD_D_KO",
  3366. "onmousedown": U.UF.C.closure(function (obj) {
  3367. //防止拖动图标即打开了桌面应用
  3368. U.MD.D.click(this, obj);
  3369. }, [_gdjgAdminDeskIconInfo[i]]),
  3370. "onclick": U.UF.C.closure(function (obj) {
  3371. //防止拖动图标即打开了桌面应用
  3372. U.MD.D.click(this, obj);
  3373. }, [_gdjgAdminDeskIconInfo[i]])
  3374. }, _frag); //
  3375. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3376. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3377. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3378. }
  3379. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3380. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3381. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3382. continue
  3383. }
  3384. _content = $$("div", {
  3385. className: "U_MD_D_KO",
  3386. "onmousedown": U.UF.C.closure(function (obj) {
  3387. //防止拖动图标即打开了桌面应用
  3388. U.MD.D.click(this, obj);
  3389. }, [_gdjgTeacherDeskIconInfo[i]]),
  3390. "onclick": U.UF.C.closure(function (obj) {
  3391. //防止拖动图标即打开了桌面应用
  3392. U.MD.D.click(this, obj);
  3393. }, [_gdjgTeacherDeskIconInfo[i]])
  3394. }, _frag); //
  3395. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3396. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3397. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3398. }
  3399. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3400. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3401. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3402. continue
  3403. }
  3404. _content = $$("div", {
  3405. className: "U_MD_D_KO",
  3406. "onmousedown": U.UF.C.closure(function (obj) {
  3407. //防止拖动图标即打开了桌面应用
  3408. U.MD.D.click(this, obj);
  3409. }, [_szherTeacherDeskIconInfo[i]]),
  3410. "onclick": U.UF.C.closure(function (obj) {
  3411. //防止拖动图标即打开了桌面应用
  3412. U.MD.D.click(this, obj);
  3413. }, [_szherTeacherDeskIconInfo[i]])
  3414. }, _frag); //
  3415. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3416. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3417. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3418. }
  3419. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3420. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3421. _content = $$("div", {
  3422. className: "U_MD_D_KO",
  3423. "onmousedown": U.UF.C.closure(function (obj) {
  3424. //防止拖动图标即打开了桌面应用
  3425. U.MD.D.click(this, obj);
  3426. }, [_heyuannAdminDeskIconInfo[i]]),
  3427. "onclick": U.UF.C.closure(function (obj) {
  3428. //防止拖动图标即打开了桌面应用
  3429. U.MD.D.click(this, obj);
  3430. }, [_heyuannAdminDeskIconInfo[i]])
  3431. }, _frag); //
  3432. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3433. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3434. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3435. }
  3436. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3437. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3438. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3439. continue
  3440. }
  3441. _content = $$("div", {
  3442. className: "U_MD_D_KO",
  3443. "onmousedown": U.UF.C.closure(function (obj) {
  3444. //防止拖动图标即打开了桌面应用
  3445. U.MD.D.click(this, obj);
  3446. }, [_heyuanTeacherDeskIconInfo[i]]),
  3447. "onclick": U.UF.C.closure(function (obj) {
  3448. //防止拖动图标即打开了桌面应用
  3449. U.MD.D.click(this, obj);
  3450. }, [_heyuanTeacherDeskIconInfo[i]])
  3451. }, _frag); //
  3452. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3453. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3454. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3455. } //
  3456. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3457. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3458. _content = $$("div", {
  3459. className: "U_MD_D_KO",
  3460. "onmousedown": U.UF.C.closure(function (obj) {
  3461. //防止拖动图标即打开了桌面应用
  3462. U.MD.D.click(this, obj);
  3463. }, [_dseiAdminDeskIconInfo[i]]),
  3464. "onclick": U.UF.C.closure(function (obj) {
  3465. //防止拖动图标即打开了桌面应用
  3466. U.MD.D.click(this, obj);
  3467. }, [_dseiAdminDeskIconInfo[i]])
  3468. }, _frag); //
  3469. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3470. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3471. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3472. }
  3473. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3474. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3475. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3476. continue
  3477. }
  3478. _content = $$("div", {
  3479. className: "U_MD_D_KO",
  3480. "onmousedown": U.UF.C.closure(function (obj) {
  3481. //防止拖动图标即打开了桌面应用
  3482. U.MD.D.click(this, obj);
  3483. }, [_dseiTeacherDeskIconInfo[i]]),
  3484. "onclick": U.UF.C.closure(function (obj) {
  3485. //防止拖动图标即打开了桌面应用
  3486. U.MD.D.click(this, obj);
  3487. }, [_dseiTeacherDeskIconInfo[i]])
  3488. }, _frag); //
  3489. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3490. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3491. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3492. } //
  3493. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3494. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3495. _content = $$("div", {
  3496. className: "U_MD_D_KO",
  3497. "onmousedown": U.UF.C.closure(function (obj) {
  3498. //防止拖动图标即打开了桌面应用
  3499. U.MD.D.click(this, obj);
  3500. }, [_chjyjAdminDeskIconInfo[i]]),
  3501. "onclick": U.UF.C.closure(function (obj) {
  3502. //防止拖动图标即打开了桌面应用
  3503. U.MD.D.click(this, obj);
  3504. }, [_chjyjAdminDeskIconInfo[i]])
  3505. }, _frag); //
  3506. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3507. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3508. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3509. }//
  3510. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3511. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3512. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3513. continue
  3514. }
  3515. _content = $$("div", {
  3516. className: "U_MD_D_KO",
  3517. "onmousedown": U.UF.C.closure(function (obj) {
  3518. //防止拖动图标即打开了桌面应用
  3519. U.MD.D.click(this, obj);
  3520. }, [_chjyjTeacherDeskIconInfo[i]]),
  3521. "onclick": U.UF.C.closure(function (obj) {
  3522. //防止拖动图标即打开了桌面应用
  3523. U.MD.D.click(this, obj);
  3524. }, [_chjyjTeacherDeskIconInfo[i]])
  3525. }, _frag); //
  3526. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3527. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3528. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3529. }
  3530. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3531. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3532. _content = $$("div", {
  3533. className: "U_MD_D_KO",
  3534. "onmousedown": U.UF.C.closure(function (obj) {
  3535. //防止拖动图标即打开了桌面应用
  3536. U.MD.D.click(this, obj);
  3537. }, [_szjkyAdminDeskIconInfo[i]]),
  3538. "onclick": U.UF.C.closure(function (obj) {
  3539. //防止拖动图标即打开了桌面应用
  3540. U.MD.D.click(this, obj);
  3541. }, [_szjkyAdminDeskIconInfo[i]])
  3542. }, _frag); //
  3543. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3544. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3545. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3546. }//
  3547. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3548. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3549. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3550. continue
  3551. }
  3552. _content = $$("div", {
  3553. className: "U_MD_D_KO",
  3554. "onmousedown": U.UF.C.closure(function (obj) {
  3555. //防止拖动图标即打开了桌面应用
  3556. U.MD.D.click(this, obj);
  3557. }, [_szjkyTeacherDeskIconInfo[i]]),
  3558. "onclick": U.UF.C.closure(function (obj) {
  3559. //防止拖动图标即打开了桌面应用
  3560. U.MD.D.click(this, obj);
  3561. }, [_szjkyTeacherDeskIconInfo[i]])
  3562. }, _frag); //
  3563. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3564. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3565. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3566. }
  3567. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3568. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3569. _content = $$("div", {
  3570. className: "U_MD_D_KO",
  3571. "onmousedown": U.UF.C.closure(function (obj) {
  3572. //防止拖动图标即打开了桌面应用
  3573. U.MD.D.click(this, obj);
  3574. }, [_x020201AdminDeskIconInfo[i]]),
  3575. "onclick": U.UF.C.closure(function (obj) {
  3576. //防止拖动图标即打开了桌面应用
  3577. U.MD.D.click(this, obj);
  3578. }, [_x020201AdminDeskIconInfo[i]])
  3579. }, _frag); //
  3580. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3581. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3582. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3583. }//
  3584. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3585. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3586. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3587. continue
  3588. }
  3589. _content = $$("div", {
  3590. className: "U_MD_D_KO",
  3591. "onmousedown": U.UF.C.closure(function (obj) {
  3592. //防止拖动图标即打开了桌面应用
  3593. U.MD.D.click(this, obj);
  3594. }, [_x020201TeacherDeskIconInfo[i]]),
  3595. "onclick": U.UF.C.closure(function (obj) {
  3596. //防止拖动图标即打开了桌面应用
  3597. U.MD.D.click(this, obj);
  3598. }, [_x020201TeacherDeskIconInfo[i]])
  3599. }, _frag); //
  3600. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3601. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3602. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3603. }
  3604. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3605. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3606. _content = $$("div", {
  3607. className: "U_MD_D_KO",
  3608. "onmousedown": U.UF.C.closure(function (obj) {
  3609. //防止拖动图标即打开了桌面应用
  3610. U.MD.D.click(this, obj);
  3611. }, [_SCNUETAdminDeskIconInfo[i]]),
  3612. "onclick": U.UF.C.closure(function (obj) {
  3613. //防止拖动图标即打开了桌面应用
  3614. U.MD.D.click(this, obj);
  3615. }, [_SCNUETAdminDeskIconInfo[i]])
  3616. }, _frag); //
  3617. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3618. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3619. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3620. }//
  3621. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3622. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3623. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3624. continue
  3625. }
  3626. _content = $$("div", {
  3627. className: "U_MD_D_KO",
  3628. "onmousedown": U.UF.C.closure(function (obj) {
  3629. //防止拖动图标即打开了桌面应用
  3630. U.MD.D.click(this, obj);
  3631. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3632. "onclick": U.UF.C.closure(function (obj) {
  3633. //防止拖动图标即打开了桌面应用
  3634. U.MD.D.click(this, obj);
  3635. }, [_SCNUETTeacherDeskIconInfo[i]])
  3636. }, _frag); //
  3637. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3638. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3639. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3640. }
  3641. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3642. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3643. _content = $$("div", {
  3644. className: "U_MD_D_KO",
  3645. "onmousedown": U.UF.C.closure(function (obj) {
  3646. //防止拖动图标即打开了桌面应用
  3647. U.MD.D.click(this, obj);
  3648. }, [_futianAdminDeskIconInfo[i]]),
  3649. "onclick": U.UF.C.closure(function (obj) {
  3650. //防止拖动图标即打开了桌面应用
  3651. U.MD.D.click(this, obj);
  3652. }, [_futianAdminDeskIconInfo[i]])
  3653. }, _frag); //
  3654. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3655. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3656. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3657. }
  3658. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3659. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3660. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3661. continue
  3662. }
  3663. _content = $$("div", {
  3664. className: "U_MD_D_KO",
  3665. "onmousedown": U.UF.C.closure(function (obj) {
  3666. //防止拖动图标即打开了桌面应用
  3667. U.MD.D.click(this, obj);
  3668. }, [_futianTeacherDeskIconInfo[i]]),
  3669. "onclick": U.UF.C.closure(function (obj) {
  3670. //防止拖动图标即打开了桌面应用
  3671. U.MD.D.click(this, obj);
  3672. }, [_futianTeacherDeskIconInfo[i]])
  3673. }, _frag); //
  3674. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3675. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3676. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3677. }
  3678. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3679. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3680. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3681. continue
  3682. }
  3683. _content = $$("div", {
  3684. className: "U_MD_D_KO",
  3685. "onmousedown": U.UF.C.closure(function (obj) {
  3686. //防止拖动图标即打开了桌面应用
  3687. U.MD.D.click(this, obj);
  3688. }, [_MingdeTeacherDeskIcon[i]]),
  3689. "onclick": U.UF.C.closure(function (obj) {
  3690. //防止拖动图标即打开了桌面应用
  3691. U.MD.D.click(this, obj);
  3692. }, [_MingdeTeacherDeskIcon[i]])
  3693. }, _frag); //
  3694. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3695. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3696. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3697. }
  3698. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3699. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3700. _content = $$("div", {
  3701. className: "U_MD_D_KO",
  3702. "onmousedown": U.UF.C.closure(function (obj) {
  3703. //防止拖动图标即打开了桌面应用
  3704. U.MD.D.click(this, obj);
  3705. }, [_lhsAdminDesktopIconInfo[i]]),
  3706. "onclick": U.UF.C.closure(function (obj) {
  3707. //防止拖动图标即打开了桌面应用
  3708. U.MD.D.click(this, obj);
  3709. }, [_lhsAdminDesktopIconInfo[i]])
  3710. }, _frag); //
  3711. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3712. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3713. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3714. }
  3715. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3716. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3717. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3718. continue
  3719. }
  3720. _content = $$("div", {
  3721. className: "U_MD_D_KO",
  3722. "onmousedown": U.UF.C.closure(function (obj) {
  3723. //防止拖动图标即打开了桌面应用
  3724. U.MD.D.click(this, obj);
  3725. }, [_lhsteacherDesktopIconInfo[i]]),
  3726. "onclick": U.UF.C.closure(function (obj) {
  3727. //防止拖动图标即打开了桌面应用
  3728. U.MD.D.click(this, obj);
  3729. }, [_lhsteacherDesktopIconInfo[i]])
  3730. }, _frag); //
  3731. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3732. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3733. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3734. }
  3735. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3736. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3737. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3738. continue
  3739. }
  3740. _content = $$("div", {
  3741. className: "U_MD_D_KO",
  3742. "onmousedown": U.UF.C.closure(function (obj) {
  3743. //防止拖动图标即打开了桌面应用
  3744. U.MD.D.click(this, obj);
  3745. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3746. "onclick": U.UF.C.closure(function (obj) {
  3747. //防止拖动图标即打开了桌面应用
  3748. U.MD.D.click(this, obj);
  3749. }, [_zhoujiateacherDesktopIconInfo[i]])
  3750. }, _frag); //
  3751. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3752. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3753. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3754. }
  3755. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3756. for (i = 0; i < _hanDeskIcon.length; i++) {
  3757. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3758. continue
  3759. }
  3760. _content = $$("div", {
  3761. className: "U_MD_D_KO",
  3762. "onmousedown": U.UF.C.closure(function (obj) {
  3763. //防止拖动图标即打开了桌面应用
  3764. U.MD.D.click(this, obj);
  3765. }, [_hanDeskIcon[i]]),
  3766. "onclick": U.UF.C.closure(function (obj) {
  3767. //防止拖动图标即打开了桌面应用
  3768. U.MD.D.click(this, obj);
  3769. }, [_hanDeskIcon[i]])
  3770. }, _frag); //
  3771. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3772. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3773. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3774. }
  3775. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3776. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3777. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3778. continue
  3779. }
  3780. _content = $$("div", {
  3781. className: "U_MD_D_KO",
  3782. "onmousedown": U.UF.C.closure(function (obj) {
  3783. //防止拖动图标即打开了桌面应用
  3784. U.MD.D.click(this, obj);
  3785. }, [_orgStemDeskIcon[i]]),
  3786. "onclick": U.UF.C.closure(function (obj) {
  3787. //防止拖动图标即打开了桌面应用
  3788. U.MD.D.click(this, obj);
  3789. }, [_orgStemDeskIcon[i]])
  3790. }, _frag); //
  3791. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3792. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3793. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3794. }
  3795. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3796. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3797. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3798. continue
  3799. }
  3800. _content = $$("div", {
  3801. className: "U_MD_D_KO",
  3802. "onmousedown": U.UF.C.closure(function (obj) {
  3803. //防止拖动图标即打开了桌面应用
  3804. U.MD.D.click(this, obj);
  3805. }, [_szulsDeskIcon[i]]),
  3806. "onclick": U.UF.C.closure(function (obj) {
  3807. //防止拖动图标即打开了桌面应用
  3808. U.MD.D.click(this, obj);
  3809. }, [_szulsDeskIcon[i]])
  3810. }, _frag); //
  3811. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3812. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3813. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3814. }
  3815. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3816. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3817. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3818. continue
  3819. }
  3820. _content = $$("div", {
  3821. className: "U_MD_D_KO",
  3822. "onmousedown": U.UF.C.closure(function (obj) {
  3823. //防止拖动图标即打开了桌面应用
  3824. U.MD.D.click(this, obj);
  3825. }, [_orgDesktopIconInfo[i]]),
  3826. "onclick": U.UF.C.closure(function (obj) {
  3827. //防止拖动图标即打开了桌面应用
  3828. U.MD.D.click(this, obj);
  3829. }, [_orgDesktopIconInfo[i]])
  3830. }, _frag); //
  3831. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3832. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3833. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3834. }
  3835. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3836. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3837. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3838. continue
  3839. }
  3840. _content = $$("div", {
  3841. className: "U_MD_D_KO",
  3842. "onmousedown": U.UF.C.closure(function (obj) {
  3843. //防止拖动图标即打开了桌面应用
  3844. U.MD.D.click(this, obj);
  3845. }, [_schoolDesktopIconInfo[i]]),
  3846. "onclick": U.UF.C.closure(function (obj) {
  3847. //防止拖动图标即打开了桌面应用
  3848. U.MD.D.click(this, obj);
  3849. }, [_schoolDesktopIconInfo[i]])
  3850. }, _frag); //
  3851. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3852. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3853. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3854. }
  3855. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3856. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3857. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3858. continue
  3859. }
  3860. _content = $$("div", {
  3861. className: "U_MD_D_KO",
  3862. "onmousedown": U.UF.C.closure(function (obj) {
  3863. //防止拖动图标即打开了桌面应用
  3864. U.MD.D.click(this, obj);
  3865. }, [_GMteacherDesktopIconInfo[i]]),
  3866. "onclick": U.UF.C.closure(function (obj) {
  3867. //防止拖动图标即打开了桌面应用
  3868. U.MD.D.click(this, obj);
  3869. }, [_GMteacherDesktopIconInfo[i]])
  3870. }, _frag); //
  3871. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3872. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3873. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3874. }
  3875. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3876. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3877. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3878. continue
  3879. }
  3880. _content = $$("div", {
  3881. className: "U_MD_D_KO",
  3882. "onmousedown": U.UF.C.closure(function (obj) {
  3883. //防止拖动图标即打开了桌面应用
  3884. U.MD.D.click(this, obj);
  3885. }, [_SONGteacherDesktopIconInfo[i]]),
  3886. "onclick": U.UF.C.closure(function (obj) {
  3887. //防止拖动图标即打开了桌面应用
  3888. U.MD.D.click(this, obj);
  3889. }, [_SONGteacherDesktopIconInfo[i]])
  3890. }, _frag); //
  3891. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3892. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3893. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3894. }
  3895. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3896. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3897. _content = $$("div", {
  3898. className: "U_MD_D_KO",
  3899. "onmousedown": U.UF.C.closure(function (obj) {
  3900. //防止拖动图标即打开了桌面应用
  3901. U.MD.D.click(this, obj);
  3902. }, [_GMstudentDesktopIconInfo[i]]),
  3903. "onclick": U.UF.C.closure(function (obj) {
  3904. //防止拖动图标即打开了桌面应用
  3905. U.MD.D.click(this, obj);
  3906. }, [_GMstudentDesktopIconInfo[i]])
  3907. }, _frag); //
  3908. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3909. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3910. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3911. }
  3912. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3913. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3914. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3915. continue
  3916. }
  3917. _content = $$("div", {
  3918. className: "U_MD_D_KO",
  3919. "onmousedown": U.UF.C.closure(function (obj) {
  3920. //防止拖动图标即打开了桌面应用
  3921. U.MD.D.click(this, obj);
  3922. }, [_tcTeacherDeskIconInfo[i]]),
  3923. "onclick": U.UF.C.closure(function (obj) {
  3924. //防止拖动图标即打开了桌面应用
  3925. U.MD.D.click(this, obj);
  3926. }, [_tcTeacherDeskIconInfo[i]])
  3927. }, _frag); //
  3928. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3929. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3930. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3931. }
  3932. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3933. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3934. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3935. continue
  3936. }
  3937. _content = $$("div", {
  3938. className: "U_MD_D_KO",
  3939. "onmousedown": U.UF.C.closure(function (obj) {
  3940. //防止拖动图标即打开了桌面应用
  3941. U.MD.D.click(this, obj);
  3942. }, [_tcOrganizerDeskIconInfo[i]]),
  3943. "onclick": U.UF.C.closure(function (obj) {
  3944. //防止拖动图标即打开了桌面应用
  3945. U.MD.D.click(this, obj);
  3946. }, [_tcOrganizerDeskIconInfo[i]])
  3947. }, _frag); //
  3948. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3949. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3950. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3951. }
  3952. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3953. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3954. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3955. continue
  3956. }
  3957. _content = $$("div", {
  3958. className: "U_MD_D_KO",
  3959. "onmousedown": U.UF.C.closure(function (obj) {
  3960. //防止拖动图标即打开了桌面应用
  3961. U.MD.D.click(this, obj);
  3962. }, [_szscTeacherDeskIconInfo[i]]),
  3963. "onclick": U.UF.C.closure(function (obj) {
  3964. //防止拖动图标即打开了桌面应用
  3965. U.MD.D.click(this, obj);
  3966. }, [_szscTeacherDeskIconInfo[i]])
  3967. }, _frag); //
  3968. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3969. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3970. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3971. }
  3972. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3973. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3974. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3975. continue
  3976. }
  3977. _content = $$("div", {
  3978. className: "U_MD_D_KO",
  3979. "onmousedown": U.UF.C.closure(function (obj) {
  3980. //防止拖动图标即打开了桌面应用
  3981. U.MD.D.click(this, obj);
  3982. }, [_szscOrganizerDeskIconInfo[i]]),
  3983. "onclick": U.UF.C.closure(function (obj) {
  3984. //防止拖动图标即打开了桌面应用
  3985. U.MD.D.click(this, obj);
  3986. }, [_szscOrganizerDeskIconInfo[i]])
  3987. }, _frag); //
  3988. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3989. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3990. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3991. }
  3992. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3993. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3994. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3995. continue
  3996. }
  3997. _content = $$("div", {
  3998. className: "U_MD_D_KO",
  3999. "onmousedown": U.UF.C.closure(function (obj) {
  4000. //防止拖动图标即打开了桌面应用
  4001. U.MD.D.click(this, obj);
  4002. }, [_nsfxTeacherDeskIconInfo[i]]),
  4003. "onclick": U.UF.C.closure(function (obj) {
  4004. //防止拖动图标即打开了桌面应用
  4005. U.MD.D.click(this, obj);
  4006. }, [_nsfxTeacherDeskIconInfo[i]])
  4007. }, _frag); //
  4008. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4009. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4010. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4011. }
  4012. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4013. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4014. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4015. continue
  4016. }
  4017. _content = $$("div", {
  4018. className: "U_MD_D_KO",
  4019. "onmousedown": U.UF.C.closure(function (obj) {
  4020. //防止拖动图标即打开了桌面应用
  4021. U.MD.D.click(this, obj);
  4022. }, [_stiaTeacherDeskIconInfo[i]]),
  4023. "onclick": U.UF.C.closure(function (obj) {
  4024. //防止拖动图标即打开了桌面应用
  4025. U.MD.D.click(this, obj);
  4026. }, [_stiaTeacherDeskIconInfo[i]])
  4027. }, _frag); //
  4028. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4029. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4030. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4031. }
  4032. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4033. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4034. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4035. continue
  4036. }
  4037. _content = $$("div", {
  4038. className: "U_MD_D_KO",
  4039. "onmousedown": U.UF.C.closure(function (obj) {
  4040. //防止拖动图标即打开了桌面应用
  4041. U.MD.D.click(this, obj);
  4042. }, [_szdjgTeacherDeskIconInfo[i]]),
  4043. "onclick": U.UF.C.closure(function (obj) {
  4044. //防止拖动图标即打开了桌面应用
  4045. U.MD.D.click(this, obj);
  4046. }, [_szdjgTeacherDeskIconInfo[i]])
  4047. }, _frag); //
  4048. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4049. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4050. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4051. }
  4052. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4053. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4054. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4055. continue
  4056. }
  4057. _content = $$("div", {
  4058. className: "U_MD_D_KO",
  4059. "onmousedown": U.UF.C.closure(function (obj) {
  4060. //防止拖动图标即打开了桌面应用
  4061. U.MD.D.click(this, obj);
  4062. }, [_x010607TeacherDeskIconInfo[i]]),
  4063. "onclick": U.UF.C.closure(function (obj) {
  4064. //防止拖动图标即打开了桌面应用
  4065. U.MD.D.click(this, obj);
  4066. }, [_x010607TeacherDeskIconInfo[i]])
  4067. }, _frag); //
  4068. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4069. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4070. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4071. }
  4072. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4073. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4074. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4075. continue
  4076. }
  4077. _content = $$("div", {
  4078. className: "U_MD_D_KO",
  4079. "onmousedown": U.UF.C.closure(function (obj) {
  4080. //防止拖动图标即打开了桌面应用
  4081. U.MD.D.click(this, obj);
  4082. }, [_xhlyTeacherDeskIconInfo[i]]),
  4083. "onclick": U.UF.C.closure(function (obj) {
  4084. //防止拖动图标即打开了桌面应用
  4085. U.MD.D.click(this, obj);
  4086. }, [_xhlyTeacherDeskIconInfo[i]])
  4087. }, _frag); //
  4088. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4089. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4090. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4091. }
  4092. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4093. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4094. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4095. continue
  4096. }
  4097. _content = $$("div", {
  4098. className: "U_MD_D_KO",
  4099. "onmousedown": U.UF.C.closure(function (obj) {
  4100. //防止拖动图标即打开了桌面应用
  4101. U.MD.D.click(this, obj);
  4102. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4103. "onclick": U.UF.C.closure(function (obj) {
  4104. //防止拖动图标即打开了桌面应用
  4105. U.MD.D.click(this, obj);
  4106. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4107. }, _frag); //
  4108. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4109. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4110. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4111. }
  4112. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4113. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4114. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4115. continue
  4116. }
  4117. _content = $$("div", {
  4118. className: "U_MD_D_KO",
  4119. "onmousedown": U.UF.C.closure(function (obj) {
  4120. //防止拖动图标即打开了桌面应用
  4121. U.MD.D.click(this, obj);
  4122. }, [_x010503TeacherDeskIconInfo[i]]),
  4123. "onclick": U.UF.C.closure(function (obj) {
  4124. //防止拖动图标即打开了桌面应用
  4125. U.MD.D.click(this, obj);
  4126. }, [_x010503TeacherDeskIconInfo[i]])
  4127. }, _frag); //
  4128. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4129. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4130. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4131. }
  4132. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4133. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4134. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4135. continue
  4136. }
  4137. _content = $$("div", {
  4138. className: "U_MD_D_KO",
  4139. "onmousedown": U.UF.C.closure(function (obj) {
  4140. //防止拖动图标即打开了桌面应用
  4141. U.MD.D.click(this, obj);
  4142. }, [_x010504TeacherDeskIconInfo[i]]),
  4143. "onclick": U.UF.C.closure(function (obj) {
  4144. //防止拖动图标即打开了桌面应用
  4145. U.MD.D.click(this, obj);
  4146. }, [_x010504TeacherDeskIconInfo[i]])
  4147. }, _frag); //
  4148. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4149. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4150. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4151. }
  4152. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4153. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4154. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4155. continue
  4156. }
  4157. _content = $$("div", {
  4158. className: "U_MD_D_KO",
  4159. "onmousedown": U.UF.C.closure(function (obj) {
  4160. //防止拖动图标即打开了桌面应用
  4161. U.MD.D.click(this, obj);
  4162. }, [_x010204TeacherDeskIconInfo[i]]),
  4163. "onclick": U.UF.C.closure(function (obj) {
  4164. //防止拖动图标即打开了桌面应用
  4165. U.MD.D.click(this, obj);
  4166. }, [_x010204TeacherDeskIconInfo[i]])
  4167. }, _frag); //
  4168. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4169. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4170. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4171. }
  4172. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4173. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4174. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4175. continue
  4176. }
  4177. _content = $$("div", {
  4178. className: "U_MD_D_KO",
  4179. "onmousedown": U.UF.C.closure(function (obj) {
  4180. //防止拖动图标即打开了桌面应用
  4181. U.MD.D.click(this, obj);
  4182. }, [_x320101TeacherDeskIconInfo[i]]),
  4183. "onclick": U.UF.C.closure(function (obj) {
  4184. //防止拖动图标即打开了桌面应用
  4185. U.MD.D.click(this, obj);
  4186. }, [_x320101TeacherDeskIconInfo[i]])
  4187. }, _frag); //
  4188. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4189. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4190. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4191. }
  4192. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4193. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4194. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4195. continue
  4196. }
  4197. _content = $$("div", {
  4198. className: "U_MD_D_KO",
  4199. "onmousedown": U.UF.C.closure(function (obj) {
  4200. //防止拖动图标即打开了桌面应用
  4201. U.MD.D.click(this, obj);
  4202. }, [_trailTeacherDeskIconInfo[i]]),
  4203. "onclick": U.UF.C.closure(function (obj) {
  4204. //防止拖动图标即打开了桌面应用
  4205. U.MD.D.click(this, obj);
  4206. }, [_trailTeacherDeskIconInfo[i]])
  4207. }, _frag); //
  4208. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4209. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4210. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4211. }
  4212. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4213. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4214. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4215. continue
  4216. }
  4217. _content = $$("div", {
  4218. className: "U_MD_D_KO",
  4219. "onmousedown": U.UF.C.closure(function (obj) {
  4220. //防止拖动图标即打开了桌面应用
  4221. U.MD.D.click(this, obj);
  4222. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4223. "onclick": U.UF.C.closure(function (obj) {
  4224. //防止拖动图标即打开了桌面应用
  4225. U.MD.D.click(this, obj);
  4226. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4227. }, _frag); //
  4228. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4229. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4230. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4231. }
  4232. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4233. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4234. if(_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4235. continue
  4236. }
  4237. _content = $$("div", {
  4238. className: "U_MD_D_KO",
  4239. "onmousedown": U.UF.C.closure(function (obj) {
  4240. //防止拖动图标即打开了桌面应用
  4241. U.MD.D.click(this, obj);
  4242. }, [_szsyTeacherDeskIconInfo[i]]),
  4243. "onclick": U.UF.C.closure(function (obj) {
  4244. //防止拖动图标即打开了桌面应用
  4245. U.MD.D.click(this, obj);
  4246. }, [_szsyTeacherDeskIconInfo[i]])
  4247. }, _frag); //
  4248. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4249. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4250. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4251. }
  4252. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4253. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4254. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4255. continue
  4256. }
  4257. _content = $$("div", {
  4258. className: "U_MD_D_KO",
  4259. "onmousedown": U.UF.C.closure(function (obj) {
  4260. //防止拖动图标即打开了桌面应用
  4261. U.MD.D.click(this, obj);
  4262. }, [_x010608TeacherDeskIconInfo[i]]),
  4263. "onclick": U.UF.C.closure(function (obj) {
  4264. //防止拖动图标即打开了桌面应用
  4265. U.MD.D.click(this, obj);
  4266. }, [_x010608TeacherDeskIconInfo[i]])
  4267. }, _frag); //
  4268. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4269. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4270. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4271. }
  4272. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4273. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4274. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4275. continue
  4276. }
  4277. _content = $$("div", {
  4278. className: "U_MD_D_KO",
  4279. "onmousedown": U.UF.C.closure(function (obj) {
  4280. //防止拖动图标即打开了桌面应用
  4281. U.MD.D.click(this, obj);
  4282. }, [_x010611TeacherDeskIconInfo[i]]),
  4283. "onclick": U.UF.C.closure(function (obj) {
  4284. //防止拖动图标即打开了桌面应用
  4285. U.MD.D.click(this, obj);
  4286. }, [_x010611TeacherDeskIconInfo[i]])
  4287. }, _frag); //
  4288. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4289. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4290. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4291. }
  4292. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4293. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4294. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4295. continue
  4296. }
  4297. _content = $$("div", {
  4298. className: "U_MD_D_KO",
  4299. "onmousedown": U.UF.C.closure(function (obj) {
  4300. //防止拖动图标即打开了桌面应用
  4301. U.MD.D.click(this, obj);
  4302. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4303. "onclick": U.UF.C.closure(function (obj) {
  4304. //防止拖动图标即打开了桌面应用
  4305. U.MD.D.click(this, obj);
  4306. }, [_tianyuanTeacherDeskIconInfo[i]])
  4307. }, _frag); //
  4308. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4309. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4310. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4311. }
  4312. } else {
  4313. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4314. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4315. continue
  4316. }
  4317. _content = $$("div", {
  4318. className: "U_MD_D_KO",
  4319. "onmousedown": U.UF.C.closure(function (obj) {
  4320. //防止拖动图标即打开了桌面应用
  4321. U.MD.D.click(this, obj);
  4322. }, [_teacherDesktopIconInfo[i]]),
  4323. "onclick": U.UF.C.closure(function (obj) {
  4324. //防止拖动图标即打开了桌面应用
  4325. U.MD.D.click(this, obj);
  4326. }, [_teacherDesktopIconInfo[i]])
  4327. }, _frag); //
  4328. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4329. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4330. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4331. }
  4332. }
  4333. } else {
  4334. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4335. _content = $$("div", {
  4336. className: "U_MD_D_KO",
  4337. style: { 'width': '124px', 'height': '145px' },
  4338. "onmousedown": U.UF.C.closure(function (obj) {
  4339. //防止拖动图标即打开了桌面应用
  4340. U.MD.D.click(this, obj);
  4341. }, [_easyDesktopIconInfo[i]]),
  4342. "onclick": U.UF.C.closure(function (obj) {
  4343. //防止拖动图标即打开了桌面应用
  4344. U.MD.D.click(this, obj);
  4345. }, [_easyDesktopIconInfo[i]])
  4346. }, _frag); //
  4347. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4348. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4349. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4350. }
  4351. }
  4352. if (type == 1) {
  4353. //加载好后给图标定位
  4354. U.MD.D.iconPostion($(_frag).Child());
  4355. } else {
  4356. //加载好后给图标定位
  4357. U.MD.D.iconPostion2($(_frag).Child());
  4358. }
  4359. //把图标加载到页面
  4360. el.appendChild(_frag);
  4361. }
  4362. /**
  4363. * 显示任务栏
  4364. *
  4365. * @param {element} 桌面元素
  4366. */
  4367. U.MD.D.I.displayTaskbar = function (el) {
  4368. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4369. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4370. //任务栏位置变化
  4371. U.selectEl(el).css({ "bottom": "0px" });
  4372. //桌面位置变话
  4373. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4374. }
  4375. }
  4376. //#region 桌面图标拖动逻辑
  4377. /**
  4378. * 桌面排列图标
  4379. *
  4380. * @param {element} 桌面元素
  4381. * @param {object} 上下相距的距离
  4382. * @param {object} 左右相距的距离
  4383. * @return {object} 命名空间
  4384. */
  4385. U.MD.D.iconPostion = function (childs, top, left) {
  4386. var i; //用于循环处理
  4387. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4388. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4389. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4390. for (i = 0; i < childs.length; i++) {
  4391. //如果竖排top超过了范围处理
  4392. if (top + 95 > US.height - 10) {
  4393. //left超过了页面范围处理,则向上重叠打印处理
  4394. if ((left + 180) > US.width) {
  4395. top -= 110;
  4396. left -= 90;
  4397. }
  4398. //没有超过范围,那么left+90添加到下一个竖排打印
  4399. else {
  4400. left += 90;
  4401. top = 15;
  4402. };
  4403. }
  4404. //给图标的位置赋值
  4405. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4406. if (i < childs.length - 1) {
  4407. //页面图标每次向下加95
  4408. top += 95;
  4409. }
  4410. }
  4411. //返回最后调用的图标的位置
  4412. return [top, left];
  4413. }
  4414. /**
  4415. * 桌面排列图标
  4416. *
  4417. * @param {element} 桌面元素
  4418. * @param {object} 上下相距的距离
  4419. * @param {object} 左右相距的距离
  4420. * @return {object} 命名空间
  4421. */
  4422. U.MD.D.iconPostion2 = function (childs, top, left) {
  4423. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4424. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4425. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4426. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4427. for (i = 0; i < childs.length; i++) {
  4428. //如果竖排top超过了范围处理
  4429. if (left + 150 > US.width - 10) {
  4430. //left超过了页面范围处理,则向上重叠打印处理
  4431. if ((top + 180) > US.Height) {
  4432. top -= 150;
  4433. left -= 150;
  4434. }
  4435. //没有超过范围,那么left+90添加到下一个竖排打印
  4436. else {
  4437. top += 150;
  4438. left = ol;
  4439. };
  4440. }
  4441. //给图标的位置赋值
  4442. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4443. if (i < childs.length - 1) {
  4444. //页面图标每次向下加95
  4445. left += 150;
  4446. }
  4447. }
  4448. //返回最后调用的图标的位置
  4449. return [top, left];
  4450. }
  4451. /**
  4452. * 桌面点击事件逻辑
  4453. *
  4454. * @param {element} 桌面元素
  4455. * @param {object} 上下相距的距离
  4456. * @param {object} 左右相距的距离
  4457. * @return {object} 命名空间
  4458. */
  4459. U.MD.D.click = function (el, obj) {
  4460. var _buttonnumber = event.button; //点击的按钮的事件值
  4461. var _userinfo = US.userInfo;
  4462. U.UF.EV.stopBubble(); //阻止向上冒泡
  4463. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4464. if (_buttonnumber < 2) {
  4465. //如果是click事件的处理
  4466. if (event.type == "click") {
  4467. //如果元素在mousemove事件中没有移动则出发click事件
  4468. if (!U.MD.D.I.IsDrag) {
  4469. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4470. U.alert("请先登录您的账号!");
  4471. setTimeout(() => {
  4472. U.MD.U.L.login();
  4473. }, 2000);
  4474. } else {
  4475. //打开应用处理
  4476. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4477. }
  4478. }
  4479. }
  4480. //如果是mouse事件的处理
  4481. else {
  4482. if (US.Config.type == '1') {
  4483. //拖动处理,添加拖动和拖动结束事件
  4484. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4485. }
  4486. }
  4487. U.MD.D.I.IsDrag = false;
  4488. }
  4489. }
  4490. /**
  4491. * 拖动的处理
  4492. *
  4493. */
  4494. U.MD.D.iconMove = function () {
  4495. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4496. U.MD.D.I.IsDrag = true;
  4497. }
  4498. /**
  4499. * 拖动结束后,这里是定位处理,以网状的形式定位
  4500. *
  4501. * @param {element} 拖动的元素
  4502. * @return {object} 命名空间
  4503. */
  4504. U.MD.D.iconUp = function (el) {
  4505. var _top = 15,
  4506. _left = 20,
  4507. _margin,
  4508. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4509. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4510. if (_positioninfo["OT"] > 15) {
  4511. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4512. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4513. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4514. }
  4515. if (_positioninfo["OL"] > 20) {
  4516. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4517. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4518. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4519. }
  4520. //while循环判断么一个重叠的元素
  4521. do {
  4522. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4523. _top = _positioninfo[0] + 95; //得到定位后的top
  4524. _left = _positioninfo[1]; //得到定位后的left
  4525. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4526. }
  4527. /**
  4528. * 判断拖动后图标是否重叠
  4529. *
  4530. * @param {element} 拖动的元素
  4531. * @param {element} 桌面所有的元素
  4532. * @param {array} 拖动元素的位置
  4533. ----------[0] 上 top
  4534. ----------[1] 左 left
  4535. * @return {object} 命名空间
  4536. */
  4537. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4538. //循环所有的图标
  4539. for (var i = 0; i < childs.length; i++) {
  4540. //判断有没有和该图标诶子重叠的元素
  4541. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4542. return childs[i]; //如果有返回
  4543. }
  4544. }
  4545. }
  4546. //#endregion
  4547. //#endregion
  4548. //#region 桌面应用
  4549. /**
  4550. * 打开应用
  4551. *
  4552. * @param {string} 类型
  4553. -----------------Disk 网盘系统
  4554. -----------------PDisk 学习系统网盘
  4555. -----------------Poto 图片
  4556. -----------------Video 视频
  4557. -----------------Music 音乐
  4558. -----------------Word word
  4559. -----------------Excel excel
  4560. -----------------Txt 记事本
  4561. -----------------PB 学习系统
  4562. -----------------Blog 朋友圈系统
  4563. -----------------FTP ftp系统
  4564. -----------------Group 好友群
  4565. -----------------SY 首页系统
  4566. -----------------Set 个人设置
  4567. -----------------XSet 系统设置
  4568. -----------------App 我们所有的app
  4569. -----------------BC c.1473.cn 平台
  4570. -----------------CWeb d.1473.cn 变成平台
  4571. -----------------其他的外联系统 我们统一用iframe打开
  4572. * @param {array} 类型
  4573. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4574. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4575. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4576. 如果第一个参数为其他,则无第二个参数
  4577. * @returns {array}
  4578. */
  4579. window.addEventListener('message', function (e) { // 监听 message 事件
  4580. // alert(e.data.type);
  4581. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4582. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4583. //3是展示全部阶段 2学生 1老师 4专家
  4584. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4585. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4586. //3是展示全部阶段 2学生 1老师 4专家
  4587. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4588. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4589. //3是展示全部阶段 2学生 1老师 4专家
  4590. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4591. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4592. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4593. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4594. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4595. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4596. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4597. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4598. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4599. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4600. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4601. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4602. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4603. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4604. //3是展示全部阶段 2学生 1老师 4专家
  4605. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4606. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4607. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4608. U.MD.D.I.selectUser();
  4609. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4610. var _formel = document.getElementById("study");
  4611. U.UF.F.windowZooming(_formel);
  4612. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4613. var _formel = document.getElementById("studyDetail");
  4614. U.UF.F.windowZooming(_formel);
  4615. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4616. var _formel = document.getElementById("studyDetail");
  4617. U.UF.F.windowZooming(_formel);
  4618. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4619. var _formel = document.getElementById("studentStudy");
  4620. U.UF.F.windowZooming(_formel);
  4621. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4622. // var _formel = document.getElementById("study");
  4623. //如果最大化了,那么就把他缩小
  4624. // if (_formel.ismaximize) {
  4625. // return;
  4626. // }
  4627. // U.UF.F.windowZooming(_formel);
  4628. // U.UF.F.topWindow(_formel);
  4629. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4630. // var _formel = document.getElementById("studyDetail");
  4631. //如果最大化了,那么就把他缩小
  4632. // if (_formel.ismaximize) {
  4633. // return;
  4634. // }
  4635. // U.UF.F.windowZooming(_formel);
  4636. // U.UF.F.topWindow(_formel);
  4637. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4638. // var _formel = document.getElementById("studentStudy");
  4639. // if (_formel.ismaximize) {
  4640. // return;
  4641. // }
  4642. // U.UF.F.windowZooming(_formel);
  4643. // U.UF.F.topWindow(_formel);
  4644. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4645. var _formel = document.getElementById("study");
  4646. // if (_formel.ismaximize) {
  4647. // return;
  4648. // }
  4649. // U.UF.F.windowZooming(_formel);
  4650. U.UF.F.topWindow(_formel);
  4651. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4652. var _formel = document.getElementById("studentIndex");
  4653. U.UF.F.windowZooming(_formel);
  4654. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4655. var _formel = document.getElementById("studyDetailS");
  4656. U.UF.F.windowZooming(_formel);
  4657. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4658. var _formel = document.getElementById("studioIndex");
  4659. U.UF.F.windowZooming(_formel);
  4660. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4661. var _formel = document.getElementById("studyDetailStudio");
  4662. U.UF.F.windowZooming(_formel);
  4663. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4664. var _formel = document.getElementById("studyDetailStudio");
  4665. U.UF.F.windowZooming(_formel);
  4666. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4667. var _formel = document.getElementById("studyDetailNT");
  4668. U.UF.F.windowZooming(_formel);
  4669. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4670. var _formel = document.getElementById("studyDetailS");
  4671. U.UF.F.windowZooming(_formel);
  4672. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4673. var _formel = document.getElementById("studyDetailS");
  4674. U.UF.F.topWindow(_formel);
  4675. } else if (e.data.tools && e.data.tools == "1") {
  4676. // U.MD.D.I.openApplication("whiteboard")
  4677. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4678. } else if (e.data.tools && e.data.tools == "2") {
  4679. U.MD.D.I.openApplication("note")
  4680. } else if (e.data.tools && e.data.tools == "3") {
  4681. // U.MD.D.I.openApplication("mind")
  4682. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4683. } else if (e.data.tools && e.data.tools == "4") {
  4684. U.MD.D.I.openApplication("investigation")
  4685. } else if (e.data.tools && e.data.tools == "6") {
  4686. // U.MD.D.I.openApplication("doc")
  4687. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4688. } else if (e.data.tools && e.data.tools == "7") {
  4689. // U.MD.D.I.openApplication("mindNetwork")
  4690. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4691. } else if (e.data.tools && e.data.tools == "8") {
  4692. U.MD.D.I.openApplication("library")
  4693. } else if (e.data.tools && e.data.tools == "17") {
  4694. U.MD.D.I.openApplication("stuLibrary")
  4695. } else if (e.data.tools && e.data.tools == "18") {
  4696. U.MD.D.I.openApplication("train")
  4697. } else if (e.data.tools && e.data.tools == "21") {
  4698. U.MD.D.I.openApplication("program")
  4699. } else if (e.data.tools && e.data.tools == "22") {
  4700. U.MD.D.I.openApplication("AIprogram2")
  4701. } else if (e.data.tools && e.data.tools == "23") {
  4702. U.MD.D.I.openApplication("Pythonprogram")
  4703. } else if (e.data.tools && e.data.tools == "24") {
  4704. U.MD.D.I.openApplication("AIprogram")
  4705. } else if (e.data.tools && e.data.tools == "25") {
  4706. U.MD.D.I.openApplication("sys")
  4707. } else if (e.data.tools && e.data.tools == "26") {
  4708. // U.MD.D.I.openApplication("courseDesign")
  4709. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4710. } else if (e.data.tools && e.data.tools == "31") {
  4711. U.MD.D.I.openApplication("netWorkPanel")
  4712. } else if (e.data.tools && e.data.tools == "32") {
  4713. U.MD.D.I.openApplication("codeEdit")
  4714. } else if (e.data.tools && e.data.tools == "57") {
  4715. U.MD.D.I.openApplication("CocoPi")
  4716. } else if (e.data.tools && e.data.tools == "63") {
  4717. U.MD.D.I.openApplication("Wood")
  4718. } else if (e.data.tools && e.data.tools == "58") {
  4719. U.MD.D.I.openApplication("car")
  4720. } else if (e.data.tools && e.data.tools == "59") {
  4721. U.MD.D.I.openApplication("lineSearch")
  4722. } else if (e.data.tools && e.data.tools == "60") {
  4723. U.MD.D.I.openApplication("deepLearning")
  4724. } else if (e.data.tools && e.data.tools == "61") {
  4725. U.MD.D.I.openApplication("allHistory")
  4726. } else if (e.data.tools && e.data.tools == "28") {
  4727. U.MD.D.I.openApplication("translation")
  4728. } else if (e.data.tools && e.data.tools == "37") {
  4729. U.MD.D.I.openApplication("mohe")
  4730. } else if (e.data.tools && e.data.tools == "38") {
  4731. U.MD.D.I.openApplication("24game")
  4732. } else if (e.data.tools && e.data.tools == "39") {
  4733. U.MD.D.I.openApplication("GeoGebra")
  4734. } else if (e.data.tools && e.data.tools == "43") {
  4735. U.MD.D.I.openApplication("studentEvaluate")
  4736. } else if (e.data.tools && e.data.tools == "44") {
  4737. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4738. } else if (e.data.tools && e.data.tools == "46") {
  4739. U.MD.D.I.openApplication("project")
  4740. } else if (e.data.tools && e.data.tools == "71") {
  4741. U.MD.D.I.openApplication("aigptCourse")
  4742. } else if (e.data.tools && e.data.tools == "1s") {
  4743. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4744. } else if (e.data.tools && e.data.tools == "3s") {
  4745. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4746. } else if (e.data.tools && e.data.tools == "6s") {
  4747. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4748. } else if (e.data.tools && e.data.tools == "1studio") {
  4749. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4750. } else if (e.data.tools && e.data.tools == "3studio") {
  4751. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4752. } else if (e.data.tools && e.data.tools == "6studio") {
  4753. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4754. } else if (e.data.tools && e.data.tools == "3y") {
  4755. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4756. } else if (e.data.tools && e.data.tools == "1y") {
  4757. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4758. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4759. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4760. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4761. U.MD.D.I.openApplication("AIAnalyse")
  4762. } else if (e.data.tools && e.data.tools == "1teacher") {
  4763. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4764. } else if (e.data.tools && e.data.tools == "3teacher") {
  4765. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4766. } else if (e.data.tools && e.data.tools == "7teacher") {
  4767. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4768. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4769. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4770. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4771. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4772. } else if (e.data.tools && e.data.tools == "1E") {
  4773. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4774. } else if (e.data.tools && e.data.tools == "3E") {
  4775. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4776. } else if (e.data.tools && e.data.tools == "57y") {
  4777. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4778. } else if (e.data.tools && e.data.tools == "57u") {
  4779. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4780. } else if (e.data.tools && e.data.tools == "57teacher") {
  4781. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4782. } else if (e.data.tools && e.data.tools == "64") {
  4783. U.MD.D.I.openApplication("AIChat")
  4784. } else if (e.data.tools && e.data.tools == "66") {
  4785. U.MD.D.I.openApplication("formulaEdi")
  4786. } else if (e.data.tools && e.data.tools == "67") {
  4787. U.MD.D.I.openApplication("molStr")
  4788. } else if (e.data.tools && e.data.tools == "68") {
  4789. U.MD.D.I.openApplication("timeAxis")
  4790. } else if (e.data.tools && e.data.tools == "openCourse") {
  4791. let _data = {
  4792. typea: e.data.typea || '',
  4793. typeb: e.data.typeb || '',
  4794. typed: e.data.typed || '',
  4795. }
  4796. U.MD.D.I.openInApplication("index", _data)
  4797. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4798. let _data = {
  4799. classid: e.data.classid || '',
  4800. }
  4801. U.MD.D.I.openInApplication("dataClass", _data)
  4802. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4803. let _data = {
  4804. cid: e.data.cid || '',
  4805. gid: e.data.gid || '',
  4806. }
  4807. U.MD.D.I.openInApplication("opencCscl", _data)
  4808. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4809. U.MD.D.I.openApplication("dataBoardTest")
  4810. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4811. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4812. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4813. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4814. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4815. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4816. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  4817. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  4818. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4819. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4820. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4821. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4822. }else if (e.data.tools && e.data.tools == "loginSz") {
  4823. U.MD.D.I.openInApplication("loginSz")
  4824. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4825. if($('#classroom_observation_board')[0]){
  4826. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4827. }
  4828. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4829. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4830. if($('#classroom_observation_ob_comment')[0]){
  4831. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4832. }
  4833. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4834. }else if (e.data.tools && e.data.tools == "logout"){
  4835. U.MD.U.LO.logoutSystem()
  4836. }else if (e.data.tools && e.data.tools == "getLogin"){
  4837. let _iframe = $('#UI_Login')[0];
  4838. if (_iframe) {
  4839. var userInfo = US.userInfo;
  4840. var type = 2
  4841. if(userInfo && userInfo.userid){
  4842. type = 1
  4843. }
  4844. _contentWindow = _iframe.contentWindow;
  4845. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  4846. }
  4847. }
  4848. });
  4849. U.MD.D.I.selectUser = function () {
  4850. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4851. if (res.value[0].length > 0) {
  4852. US.userInfo = res.value[0][0];
  4853. $(".userName")[0].innerHTML = US.userInfo.username;
  4854. }
  4855. }, [], { "type": "GET", "withCredentials": true });
  4856. }
  4857. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4858. var _userinfo = US.userInfo, //登录用户信息
  4859. _userid = US.userInfo.userid, //登录用户id
  4860. _oid = _userinfo.organizeid,
  4861. _type = US.userInfo.type,
  4862. _org = US.userInfo.org,
  4863. _role = US.userInfo.role,
  4864. _classId = US.userInfo.classid;
  4865. if (_type == 4) {
  4866. tType = 4
  4867. }
  4868. switch (str) {
  4869. case "studyDetailNT": //无终端模式
  4870. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4871. setTimeout(() => {
  4872. U.MD.U.L.login();
  4873. }, 2000);
  4874. } else {
  4875. _formdiv = new U.UF.UI.form(
  4876. "课程详情",
  4877. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailNT?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4878. "id": "studyDetailNT",
  4879. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4880. "onresize": function () { }
  4881. }, {
  4882. closecallback: function () { }
  4883. }, { "style": { "height": "36px" } }).form; //创建窗体
  4884. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4885. break;
  4886. }
  4887. case "studyDetail":
  4888. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4889. setTimeout(() => {
  4890. U.MD.U.L.login();
  4891. }, 2000);
  4892. } else {
  4893. _formdiv = new U.UF.UI.form(
  4894. "课程详情",
  4895. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetail?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4896. "id": "studyDetail",
  4897. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4898. "onresize": function () { }
  4899. }, {
  4900. closecallback: function () { }
  4901. }, { "style": { "height": "36px" } }).form; //创建窗体
  4902. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4903. break;
  4904. }
  4905. case "studyDetailTrain":
  4906. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4907. setTimeout(() => {
  4908. U.MD.U.L.login();
  4909. }, 2000);
  4910. } else {
  4911. _formdiv = new U.UF.UI.form(
  4912. "培训详情",
  4913. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailTrain?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4914. "id": "studyDetailTrain",
  4915. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4916. "onresize": function () { }
  4917. }, {
  4918. closecallback: function () { }
  4919. }, { "style": { "height": "36px" } }).form; //创建窗体
  4920. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4921. break;
  4922. }
  4923. case "studyDetailS":
  4924. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4925. setTimeout(() => {
  4926. U.MD.U.L.login();
  4927. }, 2000);
  4928. } else {
  4929. _formdiv = new U.UF.UI.form(
  4930. "项目详情",
  4931. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4932. "id": "studyDetailS",
  4933. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4934. "onresize": function () { }
  4935. }, {
  4936. closecallback: function () { }
  4937. }, { "style": { "height": "36px" } }).form; //创建窗体
  4938. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4939. break;
  4940. }
  4941. case "studyDetailStudio":
  4942. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4943. setTimeout(() => {
  4944. U.MD.U.L.login();
  4945. }, 2000);
  4946. } else {
  4947. _formdiv = new U.UF.UI.form(
  4948. "工作详情",
  4949. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailStudio?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4950. "id": "studyDetailStudio",
  4951. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4952. "onresize": function () { }
  4953. }, {
  4954. closecallback: function () { }
  4955. }, { "style": { "height": "36px" } }).form; //创建窗体
  4956. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioCourse.png)" }, "name": "工作详情", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4957. break;
  4958. }
  4959. case "studyDetailS5":
  4960. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4961. setTimeout(() => {
  4962. U.MD.U.L.login();
  4963. }, 2000);
  4964. } else {
  4965. _formdiv = new U.UF.UI.form(
  4966. "项目详情",
  4967. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/studyStudentS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4968. "id": "studyDetailS",
  4969. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4970. "onresize": function () { }
  4971. }, {
  4972. closecallback: function () { }
  4973. }, { "style": { "height": "36px" } }).form; //创建窗体
  4974. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4975. break;
  4976. }
  4977. case "studyDetailGM":
  4978. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4979. setTimeout(() => {
  4980. U.MD.U.L.login();
  4981. }, 2000);
  4982. } else {
  4983. _formdiv = new U.UF.UI.form(
  4984. "课程详情",
  4985. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4986. "id": "studyDetail",
  4987. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4988. "onresize": function () { }
  4989. }, {
  4990. closecallback: function () { }
  4991. }, { "style": { "height": "36px" } }).form; //创建窗体
  4992. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/learning.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4993. break;
  4994. }
  4995. case "hanUrl":
  4996. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4997. setTimeout(() => {
  4998. U.MD.U.L.login();
  4999. }, 2000);
  5000. } else {
  5001. _formdiv = new U.UF.UI.form(
  5002. "汉字宫",
  5003. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//school.hanzigon.cn/?appid=734714090237947#/material/video?grade_id=62&lesson_code=621&id=2432" }), {
  5004. "id": "hanUrl",
  5005. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5006. "onresize": function () { }
  5007. }, {
  5008. closecallback: function () { }
  5009. }, { "style": { "height": "36px" } }).form; //创建窗体
  5010. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClass.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5011. break;
  5012. }
  5013. case "index":
  5014. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5015. setTimeout(() => {
  5016. U.MD.U.L.login();
  5017. }, 2000);
  5018. } else {
  5019. _formdiv = new U.UF.UI.form(
  5020. "课程中心",
  5021. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=2" + "&typea=" + data.typea + "&typeb=" + data.typeb + "&typed=" + data.typed }), {
  5022. "id": "study",
  5023. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5024. "onresize": function () { }
  5025. }, {
  5026. closecallback: function () { }
  5027. }, { "style": { "height": "36px" } }).form; //创建窗体
  5028. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5029. break;
  5030. }
  5031. case "dataClass":
  5032. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5033. setTimeout(() => {
  5034. U.MD.U.L.login();
  5035. }, 2000);
  5036. } else {
  5037. _formdiv = new U.UF.UI.form(
  5038. "数据报告",
  5039. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/worksReport?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&cid=" + _classId + "&checkid=" + data.classid }), {
  5040. "id": "dataClass",
  5041. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5042. "onresize": function () { }
  5043. }, {
  5044. closecallback: function () { }
  5045. }, { "style": { "height": "36px" } }).form; //创建窗体
  5046. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "数据报告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5047. break;
  5048. }
  5049. case "opencCscl":
  5050. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5051. setTimeout(() => {
  5052. U.MD.U.L.login();
  5053. }, 2000);
  5054. } else {
  5055. _formdiv = new U.UF.UI.form(
  5056. "协同建构",
  5057. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  5058. "id": "futureClass",
  5059. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5060. "onresize": function () { }
  5061. }, {
  5062. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5063. }, { "style": { "height": "36px" } }).form; //创建窗体
  5064. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/futureClass.png)" }, "name": "协同建构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5065. break;
  5066. }
  5067. case "openCourseUpdate":
  5068. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5069. setTimeout(() => {
  5070. U.MD.U.L.login();
  5071. }, 2000);
  5072. } else {
  5073. _formdiv = new U.UF.UI.form(
  5074. "课程管理",
  5075. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course/addCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5076. "id": "openCourseUpdate",
  5077. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5078. "onresize": function () { }
  5079. }, {
  5080. closecallback: function () { }
  5081. }, { "style": { "height": "36px" } }).form; //创建窗体
  5082. break;
  5083. }
  5084. case "openNewCourseUpdate":
  5085. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5086. setTimeout(() => {
  5087. U.MD.U.L.login();
  5088. }, 2000);
  5089. } else {
  5090. _formdiv = new U.UF.UI.form(
  5091. "课程管理",
  5092. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/newAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5093. "id": "openCourseUpdate",
  5094. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5095. "onresize": function () { }
  5096. }, {
  5097. closecallback: function () { }
  5098. }, { "style": { "height": "36px" } }).form; //创建窗体
  5099. break;
  5100. }
  5101. case "openCourseEUpdate":
  5102. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5103. setTimeout(() => {
  5104. U.MD.U.L.login();
  5105. }, 2000);
  5106. } else {
  5107. _formdiv = new U.UF.UI.form(
  5108. "课程管理",
  5109. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course/addCourseE?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5110. "id": "openCourseUpdate",
  5111. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5112. "onresize": function () { }
  5113. }, {
  5114. closecallback: function () { }
  5115. }, { "style": { "height": "36px" } }).form; //创建窗体
  5116. break;
  5117. }
  5118. case "openCourseAiUpdate":
  5119. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5120. setTimeout(() => {
  5121. U.MD.U.L.login();
  5122. }, 2000);
  5123. } else {
  5124. _formdiv = new U.UF.UI.form(
  5125. "课程管理",
  5126. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/aiAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5127. "id": "openCourseUpdate",
  5128. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5129. "onresize": function () { }
  5130. }, {
  5131. closecallback: function () { }
  5132. }, { "style": { "height": "36px" } }).form; //创建窗体
  5133. break;
  5134. }
  5135. case "openCourseAiUpdate2":
  5136. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5137. setTimeout(() => {
  5138. U.MD.U.L.login();
  5139. }, 2000);
  5140. } else {
  5141. _formdiv = new U.UF.UI.form(
  5142. "课程管理",
  5143. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/addCourseEAi?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5144. "id": "openCourseUpdate",
  5145. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5146. "onresize": function () { }
  5147. }, {
  5148. closecallback: function () { }
  5149. }, { "style": { "height": "36px" } }).form; //创建窗体
  5150. break;
  5151. }
  5152. case "openCourseNewUpdate":
  5153. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5154. setTimeout(() => {
  5155. U.MD.U.L.login();
  5156. }, 2000);
  5157. } else {
  5158. _formdiv = new U.UF.UI.form(
  5159. "课程管理",
  5160. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/newAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5161. "id": "openCourseUpdate",
  5162. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5163. "onresize": function () { }
  5164. }, {
  5165. closecallback: function () { }
  5166. }, { "style": { "height": "36px" } }).form; //创建窗体
  5167. break;
  5168. }
  5169. case "inviteLoginSz":
  5170. _formdiv = new U.UF.UI.form(
  5171. "随机码登录",
  5172. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/inviteLoginSZ?code=" + data }), {
  5173. "id": "loginSz",
  5174. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5175. "onresize": function () { }
  5176. }, {
  5177. closecallback: function () { }
  5178. }, { "style": { "height": "36px" } }).form; //创建窗体
  5179. break;
  5180. case "loginSz":
  5181. _formdiv = new U.UF.UI.form(
  5182. "教师登录",
  5183. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://edu.cocorobo.cn/ResourcesLogin" }), {
  5184. "id": "loginSz",
  5185. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5186. "onresize": function () { }
  5187. }, {
  5188. closecallback: function () { }
  5189. }, { "style": { "height": "36px" } }).form; //创建窗体
  5190. break;
  5191. case "teacher":
  5192. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5193. setTimeout(() => {
  5194. U.MD.U.L.login();
  5195. }, 2000);
  5196. } else {
  5197. _formdiv = new U.UF.UI.form(
  5198. "教师管理",
  5199. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacher?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5200. "id": "teacher",
  5201. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5202. "onresize": function () { }
  5203. }, {
  5204. closecallback: function () { }
  5205. }, { "style": { "height": "36px" } }).form; //创建窗体
  5206. break;
  5207. }
  5208. case "dataBoardSZArea":
  5209. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5210. setTimeout(() => {
  5211. U.MD.U.L.login();
  5212. }, 2000);
  5213. } else {
  5214. _formdiv = new U.UF.UI.form(
  5215. "综合数据看板",
  5216. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/sz/dataBoardArea?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5217. "id": "dataBoardSZArea",
  5218. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5219. "onresize": function () { }
  5220. }, {
  5221. closecallback: function () { }
  5222. }, { "style": { "height": "36px" } }).form; //创建窗体
  5223. break;
  5224. }
  5225. case "dataBoardSZCity":
  5226. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5227. setTimeout(() => {
  5228. U.MD.U.L.login();
  5229. }, 2000);
  5230. } else {
  5231. _formdiv = new U.UF.UI.form(
  5232. "综合数据看板",
  5233. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/sz/dataBoardCity?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5234. "id": "dataBoardSZCity",
  5235. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5236. "onresize": function () { }
  5237. }, {
  5238. closecallback: function () { }
  5239. }, { "style": { "height": "36px" } }).form; //创建窗体
  5240. break;
  5241. }
  5242. case "classroom_observation_board":
  5243. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5244. setTimeout(() => {
  5245. U.MD.U.L.login();
  5246. }, 2000);
  5247. } else {
  5248. _formdiv = new U.UF.UI.form(
  5249. "课堂观察",
  5250. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_board?tid="+data }), {
  5251. "id": "classroom_observation_board",
  5252. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5253. "onresize": function () { }
  5254. }, {
  5255. closecallback: function () { }
  5256. }, { "style": { "height": "36px" } }).form; //创建窗体
  5257. break;
  5258. }
  5259. case "classroom_observation_ob_comment":
  5260. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5261. setTimeout(() => {
  5262. U.MD.U.L.login();
  5263. }, 2000);
  5264. } else {
  5265. _formdiv = new U.UF.UI.form(
  5266. "课堂审核",
  5267. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_ob_comment?tid="+data }), {
  5268. "id": "classroom_observation_ob_comment",
  5269. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5270. "onresize": function () { }
  5271. }, {
  5272. closecallback: function () { }
  5273. }, { "style": { "height": "36px" } }).form; //创建窗体
  5274. break;
  5275. }
  5276. }
  5277. }
  5278. U.MD.D.I.openApplication = function (str, obj, info) {
  5279. obj = obj || {};
  5280. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5281. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5282. _userinfo = US.userInfo, //登录用户信息
  5283. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5284. _oid = obj.organizeid || _userinfo.organizeid,
  5285. _type = US.userInfo.type,
  5286. _org = US.userInfo.org,
  5287. _role = US.userInfo.role,
  5288. _classId = US.userInfo.classid,
  5289. _TscreenType = 1
  5290. _screenType = 2,
  5291. _SscreenType = 3;
  5292. let iframeBool = true
  5293. if(U.UF.UI.form.allForm[str]){
  5294. iframeBool = false
  5295. }
  5296. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5297. return;
  5298. }
  5299. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5300. switch (str) {
  5301. case "studnetProject": //好友打开
  5302. _formdiv = new U.UF.UI.form(
  5303. "我的项目",
  5304. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/project?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), {
  5305. "id": "studnetProject",
  5306. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5307. "onresize": function () { }
  5308. }, {
  5309. closecallback: function () { }
  5310. }, { "style": { "height": "36px" } }).form; //创建窗体
  5311. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "我的项目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5312. break;
  5313. case "studentEvaluate": //好友打开
  5314. _formdiv = new U.UF.UI.form(
  5315. "我的评价",
  5316. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5317. "id": "studentEvaluate",
  5318. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5319. "onresize": function () { }
  5320. }, {
  5321. closecallback: function () { }
  5322. }, { "style": { "height": "36px" } }).form; //创建窗体
  5323. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5324. break;
  5325. case "my":
  5326. _formdiv = new U.UF.UI.form(
  5327. "我的资料",
  5328. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  5329. "id": "my",
  5330. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5331. "onresize": function () { }
  5332. }, {
  5333. closecallback: function () { }
  5334. }, { "style": { "height": "36px" } }).form; //创建窗体
  5335. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5336. break;
  5337. case "program":
  5338. _formdiv = new U.UF.UI.form(
  5339. "编程平台",
  5340. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5341. "id": "program",
  5342. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5343. "onresize": function () { }
  5344. }, {
  5345. closecallback: function () { }
  5346. }, { "style": { "height": "36px" } }).form; //创建窗体
  5347. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5348. break;
  5349. case "library":
  5350. _formdiv = new U.UF.UI.form(
  5351. "素材库",
  5352. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  5353. "id": "library",
  5354. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5355. "onresize": function () { }
  5356. }, {
  5357. closecallback: function () { }
  5358. }, { "style": { "height": "36px" } }).form; //创建窗体
  5359. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5360. break;
  5361. case "whiteboard":
  5362. _formdiv = new U.UF.UI.form(
  5363. "电子白板",
  5364. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5365. "id": "whiteboard",
  5366. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5367. "onresize": function () { }
  5368. }, {
  5369. closecallback: function () { }
  5370. }, { "style": { "height": "36px" } }).form; //创建窗体
  5371. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5372. break;
  5373. case "investigation":
  5374. _formdiv = new U.UF.UI.form(
  5375. "问卷调查",
  5376. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  5377. "id": "investigation",
  5378. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5379. "onresize": function () { }
  5380. }, {
  5381. closecallback: function () { }
  5382. }, { "style": { "height": "36px" } }).form; //创建窗体
  5383. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5384. break;
  5385. case "note":
  5386. _formdiv = new U.UF.UI.form(
  5387. "便签分类",
  5388. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/note?userid=" + _userid + "&org=" + _org }), {
  5389. "id": "note",
  5390. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5391. "onresize": function () { }
  5392. }, {
  5393. closecallback: function () { }
  5394. }, { "style": { "height": "36px" } }).form; //创建窗体
  5395. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5396. break;
  5397. // case "score":
  5398. // _formdiv = new U.UF.UI.form(
  5399. // "量规评分",
  5400. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5401. // "id": "score",
  5402. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5403. // "onresize": function() {}
  5404. // }, {
  5405. // closecallback: function() {}
  5406. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5407. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  5408. // break;
  5409. case "mind":
  5410. _formdiv = new U.UF.UI.form(
  5411. "思维导图",
  5412. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  5413. "id": "mind",
  5414. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5415. "onresize": function () { }
  5416. }, {
  5417. closecallback: function () { }
  5418. }, { "style": { "height": "36px" } }).form; //创建窗体
  5419. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5420. break;
  5421. case "doc":
  5422. // U.MD.D.I.isRoom();
  5423. _formdiv = new U.UF.UI.form(
  5424. "协同文档",
  5425. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5426. "id": "doc",
  5427. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5428. "onresize": function () { }
  5429. }, {
  5430. closecallback: function () { }
  5431. }, { "style": { "height": "36px" } }).form; //创建窗体
  5432. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5433. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5434. // })
  5435. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/doc.png)" }, "name": "协同文档", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5436. break;
  5437. case "studentStudy":
  5438. _formdiv = new U.UF.UI.form(
  5439. "课程中心",
  5440. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  5441. "id": "studentStudy",
  5442. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5443. "onresize": function () { }
  5444. }, {
  5445. closecallback: function () { }
  5446. }, { "style": { "height": "36px" } }).form; //创建窗体
  5447. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5448. break;
  5449. case "train": //好友打开
  5450. _formdiv = new U.UF.UI.form(
  5451. "训练平台",
  5452. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5453. "id": "train",
  5454. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5455. "onresize": function () { }
  5456. }, {
  5457. closecallback: function () { }
  5458. }, { "style": { "height": "36px" } }).form; //创建窗体
  5459. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5460. break;
  5461. case "mindNetwork": //好友打开
  5462. _formdiv = new U.UF.UI.form(
  5463. "思维网格",
  5464. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid + "&org=" + _org }), {
  5465. "id": "mindNetwork",
  5466. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5467. "onresize": function () { }
  5468. }, {
  5469. closecallback: function () { }
  5470. }, { "style": { "height": "36px" } }).form; //创建窗体
  5471. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5472. break;
  5473. case "studentClassRoom": //好友打开
  5474. _formdiv = new U.UF.UI.form(
  5475. "实时课堂",
  5476. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/liveRoom?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5477. "id": "studentClassRoom",
  5478. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5479. "onresize": function () { }
  5480. }, {
  5481. closecallback: function () { }
  5482. }, { "style": { "height": "36px" } }).form; //创建窗体
  5483. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5484. setTimeout(() => {
  5485. U.UF.F.windowZooming(_formdiv)
  5486. }, 0);
  5487. break;
  5488. }
  5489. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5490. switch (str) {
  5491. case "studnetProject": //好友打开
  5492. _formdiv = new U.UF.UI.form(
  5493. "我的项目",
  5494. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/project?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), {
  5495. "id": "studnetProject",
  5496. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5497. "onresize": function () { }
  5498. }, {
  5499. closecallback: function () { }
  5500. }, { "style": { "height": "36px" } }).form; //创建窗体
  5501. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "我的项目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5502. break;
  5503. case "studentEvaluate": //好友打开
  5504. _formdiv = new U.UF.UI.form(
  5505. "我的评价",
  5506. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5507. "id": "studentEvaluate",
  5508. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5509. "onresize": function () { }
  5510. }, {
  5511. closecallback: function () { }
  5512. }, { "style": { "height": "36px" } }).form; //创建窗体
  5513. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5514. break;
  5515. case "my":
  5516. _formdiv = new U.UF.UI.form(
  5517. "我的资料",
  5518. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  5519. "id": "my",
  5520. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5521. "onresize": function () { }
  5522. }, {
  5523. closecallback: function () { }
  5524. }, { "style": { "height": "36px" } }).form; //创建窗体
  5525. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5526. break;
  5527. case "program":
  5528. _formdiv = new U.UF.UI.form(
  5529. "编程平台",
  5530. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5531. "id": "program",
  5532. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5533. "onresize": function () { }
  5534. }, {
  5535. closecallback: function () { }
  5536. }, { "style": { "height": "36px" } }).form; //创建窗体
  5537. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5538. break;
  5539. case "library":
  5540. _formdiv = new U.UF.UI.form(
  5541. "素材库",
  5542. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  5543. "id": "library",
  5544. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5545. "onresize": function () { }
  5546. }, {
  5547. closecallback: function () { }
  5548. }, { "style": { "height": "36px" } }).form; //创建窗体
  5549. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5550. break;
  5551. case "whiteboard":
  5552. _formdiv = new U.UF.UI.form(
  5553. "电子白板",
  5554. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5555. "id": "whiteboard",
  5556. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5557. "onresize": function () { }
  5558. }, {
  5559. closecallback: function () { }
  5560. }, { "style": { "height": "36px" } }).form; //创建窗体
  5561. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5562. break;
  5563. case "investigation":
  5564. _formdiv = new U.UF.UI.form(
  5565. "问卷调查",
  5566. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  5567. "id": "investigation",
  5568. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5569. "onresize": function () { }
  5570. }, {
  5571. closecallback: function () { }
  5572. }, { "style": { "height": "36px" } }).form; //创建窗体
  5573. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5574. break;
  5575. case "note":
  5576. _formdiv = new U.UF.UI.form(
  5577. "便签分类",
  5578. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/note?userid=" + _userid + "&org=" + _org }), {
  5579. "id": "note",
  5580. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5581. "onresize": function () { }
  5582. }, {
  5583. closecallback: function () { }
  5584. }, { "style": { "height": "36px" } }).form; //创建窗体
  5585. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5586. break;
  5587. // case "score":
  5588. // _formdiv = new U.UF.UI.form(
  5589. // "量规评分",
  5590. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5591. // "id": "score",
  5592. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5593. // "onresize": function() {}
  5594. // }, {
  5595. // closecallback: function() {}
  5596. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5597. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  5598. // break;
  5599. case "mind":
  5600. _formdiv = new U.UF.UI.form(
  5601. "思维导图",
  5602. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  5603. "id": "mind",
  5604. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5605. "onresize": function () { }
  5606. }, {
  5607. closecallback: function () { }
  5608. }, { "style": { "height": "36px" } }).form; //创建窗体
  5609. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5610. break;
  5611. case "doc":
  5612. // U.MD.D.I.isRoom();
  5613. _formdiv = new U.UF.UI.form(
  5614. "协同文档",
  5615. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5616. "id": "doc",
  5617. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5618. "onresize": function () { }
  5619. }, {
  5620. closecallback: function () { }
  5621. }, { "style": { "height": "36px" } }).form; //创建窗体
  5622. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5623. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5624. })
  5625. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/doc.png)" }, "name": "协同文档", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5626. break;
  5627. case "train": //好友打开
  5628. _formdiv = new U.UF.UI.form(
  5629. "训练平台",
  5630. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5631. "id": "train",
  5632. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5633. "onresize": function () { }
  5634. }, {
  5635. closecallback: function () { }
  5636. }, { "style": { "height": "36px" } }).form; //创建窗体
  5637. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5638. break;
  5639. case "studentStudy":
  5640. _formdiv = new U.UF.UI.form(
  5641. "课程中心",
  5642. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  5643. "id": "studentStudy",
  5644. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5645. "onresize": function () { }
  5646. }, {
  5647. closecallback: function () { }
  5648. }, { "style": { "height": "36px" } }).form; //创建窗体
  5649. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5650. break;
  5651. case "mindNetwork": //好友打开
  5652. _formdiv = new U.UF.UI.form(
  5653. "思维网格",
  5654. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid + "&org=" + _org }), {
  5655. "id": "mindNetwork",
  5656. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5657. "onresize": function () { }
  5658. }, {
  5659. closecallback: function () { }
  5660. }, { "style": { "height": "36px" } }).form; //创建窗体
  5661. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5662. break;
  5663. case "studentClassRoom": //好友打开
  5664. _formdiv = new U.UF.UI.form(
  5665. "实时课堂",
  5666. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/liveRoom?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5667. "id": "studentClassRoom",
  5668. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5669. "onresize": function () { }
  5670. }, {
  5671. closecallback: function () { }
  5672. }, { "style": { "height": "36px" } }).form; //创建窗体
  5673. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5674. setTimeout(() => {
  5675. U.UF.F.windowZooming(_formdiv)
  5676. }, 0);
  5677. break;
  5678. }
  5679. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5680. //选择应用处理
  5681. switch (str) {
  5682. case "project": //好友打开
  5683. _formdiv = new U.UF.UI.form(
  5684. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5685. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;clipboard-write;clipboard-read", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5686. "id": "project",
  5687. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5688. "onresize": function () { }
  5689. }, {
  5690. closecallback: function () { }
  5691. }, { "style": { "height": "36px" } }).form; //创建窗体
  5692. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5693. break;
  5694. case "student":
  5695. _formdiv = new U.UF.UI.form(
  5696. "学生管理",
  5697. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/student?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org + "&role=" + _role }), {
  5698. "id": "student",
  5699. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5700. "onresize": function () { }
  5701. }, {
  5702. closecallback: function () { }
  5703. }, { "style": { "height": "36px" } }).form; //创建窗体
  5704. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5705. break;
  5706. case "evaluate":
  5707. _formdiv = new U.UF.UI.form(
  5708. "学生评价",
  5709. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5710. "id": "evaluate",
  5711. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5712. "onresize": function () { }
  5713. }, {
  5714. closecallback: function () { }
  5715. }, { "style": { "height": "36px" } }).form; //创建窗体
  5716. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5717. break;
  5718. case "sys":
  5719. _formdiv = new U.UF.UI.form(
  5720. "目标管理",
  5721. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/evaluation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5722. "id": "sys",
  5723. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5724. "onresize": function () { }
  5725. }, {
  5726. closecallback: function () { }
  5727. }, { "style": { "height": "36px" } }).form; //创建窗体
  5728. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5729. break;
  5730. case "courseDesign":
  5731. _formdiv = new U.UF.UI.form(
  5732. "项目设计",
  5733. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5734. "id": "courseDesign",
  5735. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5736. "onresize": function () { }
  5737. }, {
  5738. closecallback: function () { }
  5739. }, { "style": { "height": "36px" } }).form; //创建窗体
  5740. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5741. break;
  5742. case "program":
  5743. _formdiv = new U.UF.UI.form(
  5744. "编程平台",
  5745. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5746. "id": "program",
  5747. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5748. "onresize": function () { }
  5749. }, {
  5750. closecallback: function () { }
  5751. }, { "style": { "height": "36px" } }).form; //创建窗体
  5752. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5753. break;
  5754. case "class":
  5755. _formdiv = new U.UF.UI.form(
  5756. "班级管理",
  5757. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/class?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5758. "id": "class",
  5759. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5760. "onresize": function () { }
  5761. }, {
  5762. closecallback: function () { }
  5763. }, { "style": { "height": "36px" } }).form; //创建窗体
  5764. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5765. break;
  5766. case "Grade":
  5767. _formdiv = new U.UF.UI.form(
  5768. "年级管理",
  5769. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/grade?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5770. "id": "Grade",
  5771. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5772. "onresize": function () { }
  5773. }, {
  5774. closecallback: function () { }
  5775. }, { "style": { "height": "36px" } }).form; //创建窗体
  5776. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Grade.png)" }, "name": "年级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5777. break;
  5778. case "teacherOffice":
  5779. _formdiv = new U.UF.UI.form(
  5780. "教研室",
  5781. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacherOffice?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5782. "id": "teacherOffice",
  5783. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5784. "onresize": function () { }
  5785. }, {
  5786. closecallback: function () { }
  5787. }, { "style": { "height": "36px" } }).form; //创建窗体
  5788. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacherOffice.png)" }, "name": "教研室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5789. break;
  5790. case "my":
  5791. _formdiv = new U.UF.UI.form(
  5792. "我的资料",
  5793. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  5794. "id": "my",
  5795. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5796. "onresize": function () { }
  5797. }, {
  5798. closecallback: function () { }
  5799. }, { "style": { "height": "36px" } }).form; //创建窗体
  5800. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5801. break;
  5802. case "notice":
  5803. _formdiv = new U.UF.UI.form(
  5804. "通知公告",
  5805. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/notice?userid=" + _userid + "&org=" + _org }), {
  5806. "id": "notice",
  5807. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5808. "onresize": function () { }
  5809. }, {
  5810. closecallback: function () { }
  5811. }, { "style": { "height": "36px" } }).form; //创建窗体
  5812. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5813. break;
  5814. case "library":
  5815. _formdiv = new U.UF.UI.form(
  5816. "素材库",
  5817. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  5818. "id": "library",
  5819. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5820. "onresize": function () { }
  5821. }, {
  5822. closecallback: function () { }
  5823. }, { "style": { "height": "36px" } }).form; //创建窗体
  5824. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5825. break;
  5826. case "whiteboard":
  5827. _formdiv = new U.UF.UI.form(
  5828. "电子白板",
  5829. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5830. "id": "whiteboard",
  5831. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5832. "onresize": function () { }
  5833. }, {
  5834. closecallback: function () { }
  5835. }, { "style": { "height": "36px" } }).form; //创建窗体
  5836. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5837. break;
  5838. case "investigation":
  5839. _formdiv = new U.UF.UI.form(
  5840. "问卷调查",
  5841. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  5842. "id": "investigation",
  5843. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5844. "onresize": function () { }
  5845. }, {
  5846. closecallback: function () { }
  5847. }, { "style": { "height": "36px" } }).form; //创建窗体
  5848. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5849. break;
  5850. case "note":
  5851. _formdiv = new U.UF.UI.form(
  5852. "便签分类",
  5853. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/note?userid=" + _userid + "&org=" + _org }), {
  5854. "id": "note",
  5855. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5856. "onresize": function () { }
  5857. }, {
  5858. closecallback: function () { }
  5859. }, { "style": { "height": "36px" } }).form; //创建窗体
  5860. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5861. break;
  5862. // case "score":
  5863. // _formdiv = new U.UF.UI.form(
  5864. // "量规评分",
  5865. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5866. // "id": "score",
  5867. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5868. // "onresize": function() {}
  5869. // }, {
  5870. // closecallback: function() {}
  5871. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5872. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  5873. // break;
  5874. case "mind":
  5875. _formdiv = new U.UF.UI.form(
  5876. "思维导图",
  5877. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  5878. "id": "mind",
  5879. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5880. "onresize": function () { }
  5881. }, {
  5882. closecallback: function () { }
  5883. }, { "style": { "height": "36px" } }).form; //创建窗体
  5884. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5885. break;
  5886. case "doc":
  5887. // U.MD.D.I.isRoom();
  5888. _formdiv = new U.UF.UI.form(
  5889. "协同文档",
  5890. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5891. "id": "doc",
  5892. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5893. "onresize": function () { }
  5894. }, {
  5895. closecallback: function () { }
  5896. }, { "style": { "height": "36px" } }).form; //创建窗体
  5897. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5898. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5899. })
  5900. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/doc.png)" }, "name": "协同文档", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5901. break;
  5902. case "study":
  5903. _formdiv = new U.UF.UI.form(
  5904. "课程中心",
  5905. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  5906. "id": "study",
  5907. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5908. "onresize": function () { }
  5909. }, {
  5910. closecallback: function () { }
  5911. }, { "style": { "height": "36px" } }).form; //创建窗体
  5912. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5913. break;
  5914. case "mindNetwork": //好友打开
  5915. _formdiv = new U.UF.UI.form(
  5916. "思维网格",
  5917. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid + "&org=" + _org }), {
  5918. "id": "mindNetwork",
  5919. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5920. "onresize": function () { }
  5921. }, {
  5922. closecallback: function () { }
  5923. }, { "style": { "height": "36px" } }).form; //创建窗体
  5924. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5925. break;
  5926. case "train": //好友打开
  5927. _formdiv = new U.UF.UI.form(
  5928. "训练平台",
  5929. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5930. "id": "mindNetwork",
  5931. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5932. "onresize": function () { }
  5933. }, {
  5934. closecallback: function () { }
  5935. }, { "style": { "height": "36px" } }).form; //创建窗体
  5936. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5937. break;
  5938. case "teacherClassRoom": //好友打开
  5939. _formdiv = new U.UF.UI.form(
  5940. "实时课堂",
  5941. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/classRoom?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5942. "id": "teacherClassRoom",
  5943. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5944. "onresize": function () { }
  5945. }, {
  5946. closecallback: function () { }
  5947. }, { "style": { "height": "36px" } }).form; //创建窗体
  5948. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5949. setTimeout(() => {
  5950. U.UF.F.windowZooming(_formdiv)
  5951. }, 0);
  5952. break;
  5953. }
  5954. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5955. switch (str) {
  5956. case "project": //好友打开
  5957. _formdiv = new U.UF.UI.form(
  5958. "课程管理",
  5959. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;clipboard-write;clipboard-read", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5960. "id": "project",
  5961. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5962. "onresize": function () { }
  5963. }, {
  5964. closecallback: function () { }
  5965. }, { "style": { "height": "36px" } }).form; //创建窗体
  5966. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5967. break;
  5968. case "evaluate":
  5969. _formdiv = new U.UF.UI.form(
  5970. "学生评价",
  5971. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5972. "id": "evaluate",
  5973. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5974. "onresize": function () { }
  5975. }, {
  5976. closecallback: function () { }
  5977. }, { "style": { "height": "36px" } }).form; //创建窗体
  5978. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5979. break;
  5980. case "notice":
  5981. _formdiv = new U.UF.UI.form(
  5982. "通知公告",
  5983. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/notice?userid=" + _userid + "&org=" + _org }), {
  5984. "id": "notice",
  5985. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5986. "onresize": function () { }
  5987. }, {
  5988. closecallback: function () { }
  5989. }, { "style": { "height": "36px" } }).form; //创建窗体
  5990. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5991. break;
  5992. case "stuLibrary":
  5993. _formdiv = new U.UF.UI.form(
  5994. "学习资料",
  5995. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studyLibrary?userid=" + _userid + "&org=" + _org }), {
  5996. "id": "stuLibrary",
  5997. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5998. "onresize": function () { }
  5999. }, {
  6000. closecallback: function () { }
  6001. }, { "style": { "height": "36px" } }).form; //创建窗体
  6002. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/stuLibrary.png)" }, "name": "学习资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6003. break;
  6004. case "program":
  6005. _formdiv = new U.UF.UI.form(
  6006. "编程平台",
  6007. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6008. "id": "program",
  6009. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6010. "onresize": function () { }
  6011. }, {
  6012. closecallback: function () { }
  6013. }, { "style": { "height": "36px" } }).form; //创建窗体
  6014. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6015. break;
  6016. case "whiteboard":
  6017. _formdiv = new U.UF.UI.form(
  6018. "电子白板",
  6019. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6020. "id": "whiteboard",
  6021. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6022. "onresize": function () { }
  6023. }, {
  6024. closecallback: function () { }
  6025. }, { "style": { "height": "36px" } }).form; //创建窗体
  6026. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6027. break;
  6028. case "investigation":
  6029. _formdiv = new U.UF.UI.form(
  6030. "问卷调查",
  6031. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  6032. "id": "investigation",
  6033. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6034. "onresize": function () { }
  6035. }, {
  6036. closecallback: function () { }
  6037. }, { "style": { "height": "36px" } }).form; //创建窗体
  6038. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6039. break;
  6040. case "mind":
  6041. _formdiv = new U.UF.UI.form(
  6042. "思维导图",
  6043. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  6044. "id": "mind",
  6045. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6046. "onresize": function () { }
  6047. }, {
  6048. closecallback: function () { }
  6049. }, { "style": { "height": "36px" } }).form; //创建窗体
  6050. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6051. break;
  6052. case "doc":
  6053. // U.MD.D.I.isRoom();
  6054. _formdiv = new U.UF.UI.form(
  6055. "协同文档",
  6056. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6057. "id": "doc",
  6058. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6059. "onresize": function () { }
  6060. }, {
  6061. closecallback: function () { }
  6062. }, { "style": { "height": "36px" } }).form; //创建窗体
  6063. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6064. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6065. })
  6066. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/doc.png)" }, "name": "协同文档", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6067. break;
  6068. case "study":
  6069. _formdiv = new U.UF.UI.form(
  6070. "课程中心",
  6071. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  6072. "id": "study",
  6073. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6074. "onresize": function () { }
  6075. }, {
  6076. closecallback: function () { }
  6077. }, { "style": { "height": "36px" } }).form; //创建窗体
  6078. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6079. break;
  6080. case "mindNetwork": //好友打开
  6081. _formdiv = new U.UF.UI.form(
  6082. "思维网格",
  6083. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid + "&org=" + _org }), {
  6084. "id": "mindNetwork",
  6085. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6086. "onresize": function () { }
  6087. }, {
  6088. closecallback: function () { }
  6089. }, { "style": { "height": "36px" } }).form; //创建窗体
  6090. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6091. break;
  6092. case "train": //好友打开
  6093. _formdiv = new U.UF.UI.form(
  6094. "训练平台",
  6095. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6096. "id": "train",
  6097. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6098. "onresize": function () { }
  6099. }, {
  6100. closecallback: function () { }
  6101. }, { "style": { "height": "36px" } }).form; //创建窗体
  6102. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6103. break;
  6104. case "sys":
  6105. _formdiv = new U.UF.UI.form(
  6106. "目标管理",
  6107. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/evaluation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6108. "id": "sys",
  6109. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6110. "onresize": function () { }
  6111. }, {
  6112. closecallback: function () { }
  6113. }, { "style": { "height": "36px" } }).form; //创建窗体
  6114. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6115. break;
  6116. case "courseDesign":
  6117. _formdiv = new U.UF.UI.form(
  6118. "项目设计",
  6119. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6120. "id": "courseDesign",
  6121. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6122. "onresize": function () { }
  6123. }, {
  6124. closecallback: function () { }
  6125. }, { "style": { "height": "36px" } }).form; //创建窗体
  6126. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6127. break;
  6128. }
  6129. } else if (!_type) {
  6130. switch (str) {
  6131. case "my":
  6132. _formdiv = new U.UF.UI.form(
  6133. "我的资料",
  6134. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  6135. "id": "my",
  6136. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6137. "onresize": function () { }
  6138. }, {
  6139. closecallback: function () { }
  6140. }, { "style": { "height": "36px" } }).form; //创建窗体
  6141. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6142. break;
  6143. }
  6144. }
  6145. switch (str) {
  6146. // AIprogram2 AI体验 aihub.cocorobo.cn
  6147. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6148. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6149. case "formulaEdi": //公式编辑
  6150. _formdiv = new U.UF.UI.form(
  6151. "公式编辑",
  6152. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6153. "id": "formulaEdi",
  6154. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6155. "onresize": function () { }
  6156. }, {
  6157. closecallback: function () { }
  6158. }, { "style": { "height": "36px" } }).form; //创建窗体
  6159. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/formulaEdi.png)" }, "name": "公式编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6160. break;
  6161. case "molStr": //分子结构
  6162. _formdiv = new U.UF.UI.form(
  6163. "分子结构",
  6164. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6165. "id": "molStr",
  6166. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6167. "onresize": function () { }
  6168. }, {
  6169. closecallback: function () { }
  6170. }, { "style": { "height": "36px" } }).form; //创建窗体
  6171. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/molStr.png)" }, "name": "分子结构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6172. break;
  6173. case "timeAxis": //时间轴
  6174. _formdiv = new U.UF.UI.form(
  6175. "时间轴",
  6176. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6177. "id": "timeAxis",
  6178. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6179. "onresize": function () { }
  6180. }, {
  6181. closecallback: function () { }
  6182. }, { "style": { "height": "36px" } }).form; //创建窗体
  6183. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/timeAxis.png)" }, "name": "时间轴", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6184. break;
  6185. case "AIprogram2": //AI体验
  6186. _formdiv = new U.UF.UI.form(
  6187. "AI体验",
  6188. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6189. "id": "AIprogram2",
  6190. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6191. "onresize": function () { }
  6192. }, {
  6193. closecallback: function () { }
  6194. }, { "style": { "height": "36px" } }).form; //创建窗体
  6195. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram2.png)" }, "name": "AI体验", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6196. break;
  6197. case "Pythonprogram": //python编程
  6198. _formdiv = new U.UF.UI.form(
  6199. "Python编程",
  6200. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6201. "id": "Pythonprogram",
  6202. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6203. "onresize": function () { }
  6204. }, {
  6205. closecallback: function () { }
  6206. }, { "style": { "height": "36px" } }).form; //创建窗体
  6207. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Pythonprogram.png)" }, "name": "Python编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6208. break;
  6209. case "AIprogram": //ai编程
  6210. _formdiv = new U.UF.UI.form(
  6211. "AI编程平台",
  6212. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6213. "id": "AIprogram",
  6214. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6215. "onresize": function () { }
  6216. }, {
  6217. closecallback: function () { }
  6218. }, { "style": { "height": "36px" } }).form; //创建窗体
  6219. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram.png)" }, "name": "AI编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6220. break;
  6221. case "CocoPi": //CocoPi
  6222. _formdiv = new U.UF.UI.form(
  6223. "CocoPi",
  6224. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://pi.cocorobo.cn" }), {
  6225. "id": "CocoPi",
  6226. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6227. "onresize": function () { }
  6228. }, {
  6229. closecallback: function () { }
  6230. }, { "style": { "height": "36px" } }).form; //创建窗体
  6231. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/cocopi.png)" }, "name": "CocoPi", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6232. break;
  6233. case "Wood": //Wood
  6234. _formdiv = new U.UF.UI.form(
  6235. "海龟编程",
  6236. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://wood.codemao.cn/" }), {
  6237. "id": "Wood",
  6238. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6239. "onresize": function () { }
  6240. }, {
  6241. closecallback: function () { }
  6242. }, { "style": { "height": "36px" } }).form; //创建窗体
  6243. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Wood.png)" }, "name": "海龟编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6244. break;
  6245. case "car": //模拟驾驶
  6246. _formdiv = new U.UF.UI.form(
  6247. "模拟驾驶",
  6248. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://slowroads.io/" }), {
  6249. "id": "car",
  6250. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6251. "onresize": function () { }
  6252. }, {
  6253. closecallback: function () { }
  6254. }, { "style": { "height": "36px" } }).form; //创建窗体
  6255. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/car.png)" }, "name": "模拟驾驶", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6256. break;
  6257. case "lineSearch": //路径搜索
  6258. _formdiv = new U.UF.UI.form(
  6259. "路径搜索",
  6260. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://qiao.github.io/PathFinding.js/visual/" }), {
  6261. "id": "lineSearch",
  6262. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6263. "onresize": function () { }
  6264. }, {
  6265. closecallback: function () { }
  6266. }, { "style": { "height": "36px" } }).form; //创建窗体
  6267. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/lineSearch.png)" }, "name": "路径搜索", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6268. break;
  6269. case "deepLearning": //深度学习
  6270. _formdiv = new U.UF.UI.form(
  6271. "深度学习",
  6272. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-demos.cocorobo.cn/teachable-machine/public/#" }), {
  6273. "id": "deepLearning",
  6274. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6275. "onresize": function () { }
  6276. }, {
  6277. closecallback: function () { }
  6278. }, { "style": { "height": "36px" } }).form; //创建窗体
  6279. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/deepLearning.png)" }, "name": "深度学习", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6280. break;
  6281. case "allHistory": //深度学习
  6282. _formdiv = new U.UF.UI.form(
  6283. "全历史",
  6284. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.allhistory.com/" }), {
  6285. "id": "allHistory",
  6286. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6287. "onresize": function () { }
  6288. }, {
  6289. closecallback: function () { }
  6290. }, { "style": { "height": "36px" } }).form; //创建窗体
  6291. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/allHistory.png)" }, "name": "全历史", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6292. break;
  6293. case "chatPDF": //ai编程
  6294. _formdiv = new U.UF.UI.form(
  6295. "chatPDF",
  6296. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6297. "id": "chatPDF",
  6298. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6299. "onresize": function () { }
  6300. }, {
  6301. closecallback: function () { }
  6302. }, { "style": { "height": "36px" } }).form; //创建窗体
  6303. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/chatPDF.png)" }, "name": "chatPDF", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6304. break;
  6305. case "resources": //国家教育
  6306. _formdiv = new U.UF.UI.form(
  6307. "国家教育",
  6308. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6309. "id": "resources",
  6310. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6311. "onresize": function () { }
  6312. }, {
  6313. closecallback: function () { }
  6314. }, { "style": { "height": "36px" } }).form; //创建窗体
  6315. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/resources.png)" }, "name": "国家教育", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6316. break;
  6317. case "codeEdit": //源码编辑
  6318. _formdiv = new U.UF.UI.form(
  6319. "源码编辑",
  6320. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6321. "id": "codeEdit",
  6322. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6323. "onresize": function () { }
  6324. }, {
  6325. closecallback: function () { }
  6326. }, { "style": { "height": "36px" } }).form; //创建窗体
  6327. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/code.png)" }, "name": "源码编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6328. break; //
  6329. case "MindMap": //MindMap
  6330. _formdiv = new U.UF.UI.form(
  6331. "MindMap",
  6332. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6333. "id": "MindMap",
  6334. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6335. "onresize": function () { }
  6336. }, {
  6337. closecallback: function () { }
  6338. }, { "style": { "height": "36px" } }).form; //创建窗体
  6339. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/MIndMap.png)" }, "name": "MindMap", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6340. break;
  6341. case "netWorkPanel": //netWorkPanel
  6342. _formdiv = new U.UF.UI.form(
  6343. "netWorkPanel",
  6344. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6345. "id": "netWorkPanel",
  6346. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6347. "onresize": function () { }
  6348. }, {
  6349. closecallback: function () { }
  6350. }, { "style": { "height": "36px" } }).form; //创建窗体
  6351. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/netWorkPanel.png)" }, "name": "netWorkPanel", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6352. break;
  6353. case "GeoGebra": //GeoGebra
  6354. _formdiv = new U.UF.UI.form(
  6355. "GeoGebra",
  6356. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.geogebra.org/calculator" }), {
  6357. "id": "GeoGebra",
  6358. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6359. "onresize": function () { }
  6360. }, {
  6361. closecallback: function () { }
  6362. }, { "style": { "height": "36px" } }).form; //创建窗体
  6363. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/GeoGebra.png)" }, "name": "GeoGebra", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6364. break;
  6365. case "translation": //翻译
  6366. _formdiv = new U.UF.UI.form(
  6367. "翻译",
  6368. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6369. "id": "translation",
  6370. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6371. "onresize": function () { }
  6372. }, {
  6373. closecallback: function () { }
  6374. }, { "style": { "height": "36px" } }).form; //创建窗体
  6375. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/translation.png)" }, "name": "翻译", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6376. break;
  6377. case "mohe": //魔盒
  6378. _formdiv = new U.UF.UI.form(
  6379. "魔盒识字",
  6380. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6381. "id": "mohe",
  6382. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6383. "onresize": function () { }
  6384. }, {
  6385. closecallback: function () { }
  6386. }, { "style": { "height": "36px" } }).form; //创建窗体
  6387. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mohe.png)" }, "name": "魔盒识字", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6388. break;
  6389. case "24game": //24点
  6390. _formdiv = new U.UF.UI.form(
  6391. "24点",
  6392. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6393. "id": "24game",
  6394. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6395. "onresize": function () { }
  6396. }, {
  6397. closecallback: function () { }
  6398. }, { "style": { "height": "36px" } }).form; //创建窗体
  6399. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/24game.png)" }, "name": "24点", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6400. break;
  6401. case "case":
  6402. _formdiv = new U.UF.UI.form(
  6403. "课程进展",
  6404. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesign?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6405. "id": "case",
  6406. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6407. "onresize": function () { }
  6408. }, {
  6409. closecallback: function () { }
  6410. }, { "style": { "height": "36px" } }).form; //创建窗体
  6411. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6412. break;
  6413. case "snf":
  6414. _formdiv = new U.UF.UI.form(
  6415. "赛诺梵",
  6416. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//try.cynovan.com/standard/?trial=true&data=%7B%22username%22%3A%22cynovanDemo%22%2C%22password%22%3A%22cynovanDemo%22%7D&redirect_uri=http://janus.cynovan.com/#/app/workflow/menu/1/r/6343ce2ac00fa32609d1f91b" }), {
  6417. "id": "snf",
  6418. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6419. "onresize": function () { }
  6420. }, {
  6421. closecallback: function () { }
  6422. }, { "style": { "height": "36px" } }).form; //创建窗体
  6423. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/snf.png)" }, "name": "赛诺梵", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6424. break;
  6425. case "hanFamily":
  6426. _formdiv = new U.UF.UI.form(
  6427. "汉字家族",
  6428. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6429. "id": "hanFamily",
  6430. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6431. "onresize": function () { }
  6432. }, {
  6433. closecallback: function () { }
  6434. }, { "style": { "height": "36px" } }).form; //创建窗体
  6435. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanFamily.png)" }, "name": "汉字家族", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6436. break;
  6437. case "hanClassics":
  6438. _formdiv = new U.UF.UI.form(
  6439. "国学经典",
  6440. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6441. "id": "hanClassics",
  6442. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6443. "onresize": function () { }
  6444. }, {
  6445. closecallback: function () { }
  6446. }, { "style": { "height": "36px" } }).form; //创建窗体
  6447. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClassics.png)" }, "name": "国学经典", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6448. break;
  6449. case "hanTraining":
  6450. _formdiv = new U.UF.UI.form(
  6451. "笔画训练",
  6452. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6453. "id": "hanTraining",
  6454. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6455. "onresize": function () { }
  6456. }, {
  6457. closecallback: function () { }
  6458. }, { "style": { "height": "36px" } }).form; //创建窗体
  6459. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanTraining.png)" }, "name": "笔画训练", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6460. break;
  6461. case "hanClass":
  6462. _formdiv = new U.UF.UI.form(
  6463. "书法课堂",
  6464. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6465. "id": "hanClass",
  6466. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6467. "onresize": function () { }
  6468. }, {
  6469. closecallback: function () { }
  6470. }, { "style": { "height": "36px" } }).form; //创建窗体
  6471. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClass.png)" }, "name": "书法课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6472. break;
  6473. case "han":
  6474. _formdiv = new U.UF.UI.form(
  6475. "汉字宫",
  6476. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6477. "id": "han",
  6478. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6479. "onresize": function () { }
  6480. }, {
  6481. closecallback: function () { }
  6482. }, { "style": { "height": "36px" } }).form; //创建窗体
  6483. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/han.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6484. break;
  6485. case "projectGM": //课程管理
  6486. _formdiv = new U.UF.UI.form(
  6487. "课程管理",
  6488. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/courseGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6489. "id": "projectGM",
  6490. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6491. "onresize": function () { }
  6492. }, {
  6493. closecallback: function () { }
  6494. }, { "style": { "height": "36px" } }).form; //创建窗体
  6495. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/courseMange.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6496. break;
  6497. case "studyGM": //课程中心
  6498. _formdiv = new U.UF.UI.form(
  6499. "课程中心",
  6500. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/indexGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  6501. "id": "study",
  6502. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6503. "onresize": function () { }
  6504. }, {
  6505. closecallback: function () { }
  6506. }, { "style": { "height": "36px" } }).form; //创建窗体
  6507. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/learning.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6508. break;
  6509. // studentGM
  6510. case "studentGM": //学生管理
  6511. _formdiv = new U.UF.UI.form(
  6512. "学生管理",
  6513. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studentGM?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org }), {
  6514. "id": "studentGM",
  6515. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6516. "onresize": function () { }
  6517. }, {
  6518. closecallback: function () { }
  6519. }, { "style": { "height": "36px" } }).form; //创建窗体
  6520. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6521. break;
  6522. case "evaluateGM": //学生评价
  6523. _formdiv = new U.UF.UI.form(
  6524. "学生评价",
  6525. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/worksGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6526. "id": "evaluateGM",
  6527. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6528. "onresize": function () { }
  6529. }, {
  6530. closecallback: function () { }
  6531. }, { "style": { "height": "36px" } }).form; //创建窗体
  6532. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6533. break;
  6534. // classGM
  6535. case "classGM": //班级管理
  6536. _formdiv = new U.UF.UI.form(
  6537. "班级管理",
  6538. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/classGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6539. "id": "classGM",
  6540. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6541. "onresize": function () { }
  6542. }, {
  6543. closecallback: function () { }
  6544. }, { "style": { "height": "36px" } }).form; //创建窗体
  6545. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6546. break;
  6547. // dataGM
  6548. case "dataGM":
  6549. _formdiv = new U.UF.UI.form(
  6550. "我的资料",
  6551. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/dataGM?userid=" + _userid + "&org=" + _org }), {
  6552. "id": "dataGM",
  6553. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6554. "onresize": function () { }
  6555. }, {
  6556. closecallback: function () { }
  6557. }, { "style": { "height": "36px" } }).form; //创建窗体
  6558. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/data.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6559. break;
  6560. // caseGM
  6561. case "caseGM": //课程进展
  6562. _formdiv = new U.UF.UI.form(
  6563. "课程进展",
  6564. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesignGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6565. "id": "caseGM",
  6566. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6567. "onresize": function () { }
  6568. }, {
  6569. closecallback: function () { }
  6570. }, { "style": { "height": "36px" } }).form; //创建窗体
  6571. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6572. break;
  6573. // meterialGM
  6574. case "meterialGM": //素材库
  6575. _formdiv = new U.UF.UI.form(
  6576. "素材库",
  6577. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/libraryGM?userid=" + _userid + "&org=" + _org }), {
  6578. "id": "meterialGM",
  6579. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6580. "onresize": function () { }
  6581. }, {
  6582. closecallback: function () { }
  6583. }, { "style": { "height": "36px" } }).form; //创建窗体
  6584. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/material.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6585. break;
  6586. // evaluateSGM
  6587. case "evaluateSGM": //我的评价
  6588. _formdiv = new U.UF.UI.form(
  6589. "我的评价",
  6590. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/worksGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6591. "id": "evaluateSGM",
  6592. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6593. "onresize": function () { }
  6594. }, {
  6595. closecallback: function () { }
  6596. }, { "style": { "height": "36px" } }).form; //创建窗体
  6597. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6598. break;
  6599. case "jupyter": //jupyter
  6600. _formdiv = new U.UF.UI.form(
  6601. "jupyter",
  6602. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6603. "id": "jupyter",
  6604. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6605. "onresize": function () { }
  6606. }, {
  6607. closecallback: function () { }
  6608. }, { "style": { "height": "36px" } }).form; //创建窗体
  6609. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/jupyter.png)" }, "name": "jupyter", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6610. break;
  6611. case "number": //数字实验室
  6612. _formdiv = new U.UF.UI.form(
  6613. "数字实验室",
  6614. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6615. "id": "number",
  6616. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6617. "onresize": function () { }
  6618. }, {
  6619. closecallback: function () { }
  6620. }, { "style": { "height": "36px" } }).form; //创建窗体
  6621. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/number.png)" }, "name": "数字实验室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6622. break;
  6623. case "studentCourse": //项目管理 学生
  6624. _formdiv = new U.UF.UI.form(
  6625. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6626. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;clipboard-write;clipboard-read;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studentCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6627. "id": "studentCourse",
  6628. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6629. "onresize": function () { }
  6630. }, {
  6631. closecallback: function () { }
  6632. }, { "style": { "height": "36px" } }).form; //创建窗体
  6633. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6634. break;
  6635. case "studentCourseS": //项目管理 老师
  6636. _formdiv = new U.UF.UI.form(
  6637. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6638. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;clipboard-write;clipboard-read;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/scourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6639. "id": "studentCourseS",
  6640. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6641. "onresize": function () { }
  6642. }, {
  6643. closecallback: function () { }
  6644. }, { "style": { "height": "36px" } }).form; //创建窗体
  6645. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6646. break;
  6647. case "studentIndex": //项目中心
  6648. _formdiv = new U.UF.UI.form(
  6649. "项目中心",
  6650. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/studentIndex?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType + "&role=" + _role }), {
  6651. "id": "studentIndex",
  6652. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6653. "onresize": function () { }
  6654. }, {
  6655. closecallback: function () { }
  6656. }, { "style": { "height": "36px" } }).form; //创建窗体
  6657. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentIndex.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6658. break;
  6659. case "CaseDesignS":
  6660. _formdiv = new U.UF.UI.form(
  6661. "项目进展",
  6662. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesignS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6663. "id": "case",
  6664. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6665. "onresize": function () { }
  6666. }, {
  6667. closecallback: function () { }
  6668. }, { "style": { "height": "36px" } }).form; //创建窗体
  6669. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/CaseDesignS.png)" }, "name": "项目进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6670. break;
  6671. case "tcStudent": //腾讯学生管理
  6672. _formdiv = new U.UF.UI.form(
  6673. "学生管理",
  6674. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcStudent?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6675. "id": "tcStudent",
  6676. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6677. "onresize": function () { }
  6678. }, {
  6679. closecallback: function () { }
  6680. }, { "style": { "height": "36px" } }).form; //创建窗体
  6681. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6682. break;
  6683. case "tcSchool": //腾讯学校管理
  6684. _formdiv = new U.UF.UI.form(
  6685. "学校管理",
  6686. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcSchool?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6687. "id": "tcSchool",
  6688. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6689. "onresize": function () { }
  6690. }, {
  6691. closecallback: function () { }
  6692. }, { "style": { "height": "36px" } }).form; //创建窗体
  6693. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/school.png)" }, "name": "学校管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6694. break;
  6695. case "tcTeacher": //腾讯学校管理
  6696. _formdiv = new U.UF.UI.form(
  6697. "教师管理",
  6698. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcTeacher?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6699. "id": "tcTeacher",
  6700. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6701. "onresize": function () { }
  6702. }, {
  6703. closecallback: function () { }
  6704. }, { "style": { "height": "36px" } }).form; //创建窗体
  6705. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6706. break;
  6707. case "teacher":
  6708. _formdiv = new U.UF.UI.form(
  6709. "教师管理",
  6710. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacher?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6711. "id": "teacher",
  6712. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6713. "onresize": function () { }
  6714. }, {
  6715. closecallback: function () { }
  6716. }, { "style": { "height": "36px" } }).form; //创建窗体
  6717. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6718. break;
  6719. case "tcData": //腾讯我的资料
  6720. _formdiv = new U.UF.UI.form(
  6721. "我的资料",
  6722. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcData?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6723. "id": "tcData",
  6724. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6725. "onresize": function () { }
  6726. }, {
  6727. closecallback: function () { }
  6728. }, { "style": { "height": "36px" } }).form; //创建窗体
  6729. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6730. break;
  6731. case "tcNotice": //腾讯消息通知
  6732. _formdiv = new U.UF.UI.form(
  6733. "消息通知",
  6734. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcNotice?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6735. "id": "tcNotice",
  6736. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6737. "onresize": function () { }
  6738. }, {
  6739. closecallback: function () { }
  6740. }, { "style": { "height": "36px" } }).form; //创建窗体
  6741. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "消息通知", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6742. break;
  6743. case "myReport": //好友打开
  6744. _formdiv = new U.UF.UI.form(
  6745. "我的评价",
  6746. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/myReport?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&classid=" + _classId }), {
  6747. "id": "myReport",
  6748. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6749. "onresize": function () { }
  6750. }, {
  6751. closecallback: function () { }
  6752. }, { "style": { "height": "36px" } }).form; //创建窗体
  6753. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6754. break;
  6755. case "learnAna": //好友打开
  6756. _formdiv = new U.UF.UI.form(
  6757. "学习分析",
  6758. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/learnAna?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6759. "id": "learnAna",
  6760. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6761. "onresize": function () { }
  6762. }, {
  6763. closecallback: function () { }
  6764. }, { "style": { "height": "36px" } }).form; //创建窗体
  6765. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/learnAna.png)" }, "name": "学习分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6766. break;
  6767. case "AIChat": //AI共创
  6768. _formdiv = new U.UF.UI.form(
  6769. "AI共创",
  6770. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6771. "id": "AIChat",
  6772. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6773. "onresize": function () { }
  6774. }, {
  6775. istop: true,
  6776. closecallback: function () { $("#aichat_icon").remove(); },
  6777. narrowcallback: function () {
  6778. if (!$("#aichat_icon")[0]) {
  6779. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6780. }
  6781. },
  6782. }, { "style": { "height": "36px" } }).form; //创建窗体
  6783. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIChat.png)" }, "name": "AI共创", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6784. break;
  6785. case "ainew": //AI共创
  6786. _formdiv = new U.UF.UI.form(
  6787. "AI协同",
  6788. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6789. "id": "ainew",
  6790. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6791. "onresize": function () { }
  6792. }, {
  6793. closecallback: function () { }
  6794. }, { "style": { "height": "36px" } }).form; //创建窗体
  6795. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIChat.png)" }, "name": "AI协同", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6796. break;
  6797. case "gpt4": //gpt4
  6798. _formdiv = new U.UF.UI.form(
  6799. "AI助手",
  6800. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/gpt4/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6801. "id": "gpt4",
  6802. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6803. "onresize": function () { }
  6804. }, {
  6805. closecallback: function () { }
  6806. }, { "style": { "height": "36px" } }).form; //创建窗体
  6807. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gpt4.png)" }, "name": "AI助手", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6808. break;
  6809. case "aigpt": //gpt4
  6810. _formdiv = new U.UF.UI.form(
  6811. "AI助手+",
  6812. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6813. "id": "aigpt",
  6814. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6815. "onresize": function () { }
  6816. }, {
  6817. closecallback: function () {
  6818. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6819. }
  6820. }, { "style": { "height": "36px" } }).form; //创建窗体
  6821. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aigpt.png)" }, "name": "AI助手+", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6822. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6823. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6824. })
  6825. break;
  6826. case "aiKnowledge": //aiKnowledge
  6827. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  6828. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  6829. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  6830. }
  6831. _formdiv = new U.UF.UI.form(
  6832. "知识建构",
  6833. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": _url }), {
  6834. "id": "aiKnowledge",
  6835. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6836. "onresize": function () { }
  6837. }, {
  6838. closecallback: function () { }
  6839. }, { "style": { "height": "36px" } }).form; //创建窗体
  6840. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aiKnowledge.png)" }, "name": "知识建构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6841. break;
  6842. case "futureClass": //AI共创
  6843. _formdiv = new U.UF.UI.form(
  6844. "协同建构",
  6845. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/synergyCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {//https://cscl.cocorobo.cn
  6846. "id": "synergyCourse",
  6847. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6848. "onresize": function () { }
  6849. }, {
  6850. closecallback: function () {
  6851. $("iframe", _formdiv)[0].contentWindow.loginout();
  6852. }
  6853. }, { "style": { "height": "36px" } }).form; //创建窗体
  6854. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/futureClass.png)" }, "name": "协同建构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6855. break;
  6856. case "aiagent": //ai agent
  6857. _formdiv = new U.UF.UI.form(
  6858. "AI Agent",
  6859. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://metagpt.cocorobo.cn/dist/index.html" }), {
  6860. "id": "AIAgent",
  6861. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6862. "onresize": function () { }
  6863. }, {
  6864. closecallback: function () { }
  6865. }, { "style": { "height": "36px" } }).form; //创建窗体
  6866. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram2.png)" }, "name": "AI Agent", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6867. break;
  6868. case "dataBoard": //数据看板
  6869. _formdiv = new U.UF.UI.form(
  6870. "数据看板",
  6871. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/dataBoard?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6872. "id": "dataBoard",
  6873. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6874. "onresize": function () { }
  6875. }, {
  6876. closecallback: function () { }
  6877. }, { "style": { "height": "36px" } }).form; //创建窗体
  6878. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoard.png)" }, "name": "数据看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6879. break;
  6880. case "dataBoardSies": //数据融合
  6881. _formdiv = new U.UF.UI.form(
  6882. "数据融合",
  6883. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/dataBoardSies?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6884. "id": "dataBoardSies",
  6885. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6886. "onresize": function () { }
  6887. }, {
  6888. closecallback: function () { }
  6889. }, { "style": { "height": "36px" } }).form; //创建窗体
  6890. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardSies.png)" }, "name": "数据融合", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6891. break;
  6892. case "dataBoardNew": //数据看板
  6893. _formdiv = new U.UF.UI.form(
  6894. "综合看板",
  6895. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/dataBoardNew?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6896. "id": "dataBoardNew",
  6897. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6898. "onresize": function () { }
  6899. }, {
  6900. closecallback: function () { }
  6901. }, { "style": { "height": "36px" } }).form; //创建窗体
  6902. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardNew.png)" }, "name": "综合看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6903. break;
  6904. case "dataBoardTest": //数据看板
  6905. _formdiv = new U.UF.UI.form(
  6906. "评测看板",
  6907. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/dataBoardTest?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6908. "id": "dataBoardTest",
  6909. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6910. "onresize": function () { }
  6911. }, {
  6912. closecallback: function () { }
  6913. }, { "style": { "height": "36px" } }).form; //创建窗体
  6914. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardTest.png)" }, "name": "评测看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6915. break;
  6916. case "AIAnalyse": //AI共创
  6917. _formdiv = new U.UF.UI.form(
  6918. "AI分析",
  6919. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6920. "id": "AIAnalyse",
  6921. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6922. "onresize": function () { }
  6923. }, {
  6924. closecallback: function () { }
  6925. }, { "style": { "height": "36px" } }).form; //创建窗体
  6926. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIChat.png)" }, "name": "AI分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6927. break;
  6928. case "studioCourse": //AI共创
  6929. _formdiv = new U.UF.UI.form(
  6930. "工作管理",
  6931. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studioCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6932. "id": "studioCourse",
  6933. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6934. "onresize": function () { }
  6935. }, {
  6936. closecallback: function () { }
  6937. }, { "style": { "height": "36px" } }).form; //创建窗体
  6938. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioCourse.png)" }, "name": "工作管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6939. break;
  6940. case "studioIndex": //AI共创
  6941. _formdiv = new U.UF.UI.form(
  6942. "工作中心",
  6943. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/studioIndex?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType + "&role=" + _role }), {
  6944. "id": "studioIndex",
  6945. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6946. "onresize": function () { }
  6947. }, {
  6948. closecallback: function () { }
  6949. }, { "style": { "height": "36px" } }).form; //创建窗体
  6950. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioIndex.png)" }, "name": "工作中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6951. break;
  6952. case "source":
  6953. _formdiv = new U.UF.UI.form(
  6954. "教学资源",
  6955. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacherSource?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6956. "id": "source",
  6957. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6958. "onresize": function () { }
  6959. }, {
  6960. closecallback: function () { }
  6961. }, { "style": { "height": "36px" } }).form; //创建窗体
  6962. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/source.png)" }, "name": "教学资源", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6963. break;
  6964. case "testTeacher":
  6965. _formdiv = new U.UF.UI.form(
  6966. "智能表单",
  6967. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/test?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6968. "id": "testTeacher",
  6969. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6970. "onresize": function () { }
  6971. }, {
  6972. closecallback: function () { }
  6973. }, { "style": { "height": "36px" } }).form; //创建窗体
  6974. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testTeacher.png)" }, "name": "智能表单", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6975. break;
  6976. case "testStudent":
  6977. _formdiv = new U.UF.UI.form(
  6978. "教师中心",
  6979. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/testStudent?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&classid=" + _classId + "&role=" + _role }), {
  6980. "id": "testStudent",
  6981. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6982. "onresize": function () { }
  6983. }, {
  6984. closecallback: function () { }
  6985. }, { "style": { "height": "36px" } }).form; //创建窗体
  6986. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testStudent.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6987. break;
  6988. case "testTeacherSies":
  6989. _formdiv = new U.UF.UI.form(
  6990. "教师管理",
  6991. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;clipboard-write;clipboard-read", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/test?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6992. "id": "testTeacherSies",
  6993. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6994. "onresize": function () { }
  6995. }, {
  6996. closecallback: function () { }
  6997. }, { "style": { "height": "36px" } }).form; //创建窗体
  6998. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testTeacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6999. break;
  7000. case "testStudentSies":
  7001. _formdiv = new U.UF.UI.form(
  7002. "教师中心",
  7003. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/testPerson?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&classid=" + _classId + "&role=" + _role }), {
  7004. "id": "testStudentSies",
  7005. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7006. "onresize": function () { }
  7007. }, {
  7008. closecallback: function () { }
  7009. }, { "style": { "height": "36px" } }).form; //创建窗体
  7010. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testStudent.png)" }, "name": "教师中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7011. break;
  7012. case "ytpbl": //消息通知
  7013. _formdiv = new U.UF.UI.form(
  7014. "案例征集",
  7015. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://pblyt.cocorobo.cn/#/login?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7016. "id": "ytpbl",
  7017. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7018. "onresize": function () { }
  7019. }, {
  7020. closecallback: function () { }
  7021. }, { "style": { "height": "36px" } }).form; //创建窗体
  7022. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gpbl2.png)" }, "name": "案例征集", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7023. // window.open("https://gdpbl.cocorobo.cn/#/login", "案例征集", "height=" + US.height + ", width=" + US.width + ", top=100, left=100, toolbar=no, menubar=0, resizable=0, location=0, status=no");
  7024. break;
  7025. case "aiCourseResource": //人工智能窗体
  7026. _formdiv = new U.UF.UI.form(
  7027. false,
  7028. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/course_resource/index.html" + window.location.search }), {
  7029. "id": "aiCourseResource",
  7030. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7031. "onresize": function () { },
  7032. "isdrag": false,
  7033. }, {
  7034. closecallback: function () { }
  7035. }, { "style": { "height": "36px" } }).form; //创建窗体
  7036. _taskbar = ''
  7037. break;
  7038. case "szdjgCocooroboX": //图形化编程
  7039. _formdiv = new U.UF.UI.form(
  7040. "图形化编程",
  7041. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/course_resource/cocoblockly-x/index.html" }), {
  7042. "id": "szdjgCocooroboX",
  7043. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7044. "onresize": function () { }
  7045. }, {
  7046. closecallback: function () { }
  7047. }, { "style": { "height": "36px" } }).form; //创建窗体
  7048. _taskbar = ''
  7049. break;
  7050. case "szdjgPython": //python编程
  7051. _formdiv = new U.UF.UI.form(
  7052. "Python编程",
  7053. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/course_resource/cocoblockly-x/python/index.html" }), {
  7054. "id": "szdjgPython",
  7055. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7056. "onresize": function () { }
  7057. }, {
  7058. closecallback: function () { }
  7059. }, { "style": { "height": "36px" } }).form; //创建窗体
  7060. _taskbar = ''
  7061. break;
  7062. case "Record":
  7063. _formdiv = new U.UF.UI.form(
  7064. "观察记录",
  7065. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/record?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7066. "id": "Record",
  7067. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7068. "onresize": function () { }
  7069. }, {
  7070. closecallback: function () { }
  7071. }, { "style": { "height": "36px" } }).form; //创建窗体
  7072. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Record.png)" }, "name": "观察记录", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7073. break;
  7074. case "aigptCourse":
  7075. _formdiv = new U.UF.UI.form(
  7076. "AI智能体",
  7077. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role + '#/AgentVue' }), {
  7078. "id": "aigptCourse",
  7079. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7080. "onresize": function () { }
  7081. }, {
  7082. closecallback: function () { }
  7083. }, { "style": { "height": "36px" } }).form; //创建窗体
  7084. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aigptCourse.png)" }, "name": "AI智能体", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7085. break;
  7086. case "classroomObservation":
  7087. _formdiv = new U.UF.UI.form(
  7088. "课堂观察",
  7089. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/classroomObservation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7090. "id": "classroomObservation",
  7091. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7092. "onresize": function () { }
  7093. }, {
  7094. closecallback: function () { }
  7095. }, { "style": { "height": "36px" } }).form; //创建窗体
  7096. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classroomObservation.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7097. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7098. break;
  7099. case "pblCourse":
  7100. _formdiv = new U.UF.UI.form(
  7101. "学生PBL",
  7102. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/guide?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7103. "id": "pblCourse",
  7104. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7105. "onresize": function () { }
  7106. }, {
  7107. closecallback: function () { }
  7108. }, { "style": { "height": "36px" } }).form; //创建窗体
  7109. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "学生PBL", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7110. break;
  7111. case "appStore":
  7112. _formdiv = new U.UF.UI.form(
  7113. "CocoFlow",
  7114. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//beta.cloud.cocorobo.cn/aigpt/#/WorkSpace?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7115. "id": "appStore",
  7116. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7117. "onresize": function () { }
  7118. }, {
  7119. closecallback: function () { }
  7120. }, { "style": { "height": "36px" } }).form; //创建窗体
  7121. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/appStore.png)" }, "name": "CocoFlow", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7122. break;
  7123. case "sassPlatform":
  7124. _formdiv = new U.UF.UI.form(
  7125. "Sass通用后台管理",
  7126. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/sassPlatform?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7127. "id": "sassPlatform",
  7128. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7129. "onresize": function () { }
  7130. }, {
  7131. closecallback: function () { }
  7132. }, { "style": { "height": "36px" } }).form; //创建窗体
  7133. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/sassPlatForm.png)" }, "name": "sassPlatform", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7134. break;
  7135. case "EDU":
  7136. _formdiv = new U.UF.UI.form(
  7137. "EDU",
  7138. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//edu.cocorobo.cn" }), {
  7139. "id": "EDU",
  7140. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7141. "onresize": function () { }
  7142. }, {
  7143. closecallback: function () { }
  7144. }, { "style": { "height": "36px" } }).form; //创建窗体
  7145. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/EDU.png)" }, "name": "EDU", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7146. break;
  7147. case "knowledge":
  7148. _formdiv = new U.UF.UI.form(
  7149. "知识库",
  7150. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://storage.cocorobo.cn/dist/#/knowledge?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7151. "id": "knowledge",
  7152. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7153. "onresize": function () { }
  7154. }, {
  7155. closecallback: function () { }
  7156. }, { "style": { "height": "36px" } }).form; //创建窗体
  7157. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/knowledge.png)" }, "name": "knowledge", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7158. break;
  7159. case "userExamine":
  7160. _formdiv = new U.UF.UI.form(
  7161. "账号申请",
  7162. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//user.cocorobo.cn/#/examineDialog" }), {
  7163. "id": "userExamine",
  7164. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7165. "onresize": function () { }
  7166. }, {
  7167. closecallback: function () { }
  7168. }, { "style": { "height": "36px" } }).form; //创建窗体
  7169. break;
  7170. }
  7171. //U.MD.D.I.openClick(str);
  7172. //如果有任务栏信息
  7173. if (_taskbar) {
  7174. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7175. }
  7176. if(iframeBool){
  7177. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7178. let onload = U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7179. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7180. })
  7181. let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7182. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7183. };
  7184. if(!(onload || onloadListener)){
  7185. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7186. }
  7187. }
  7188. }
  7189. // U.MD.D.I.openClick = function(str){
  7190. // var click = '';
  7191. // switch(str){
  7192. // case 'friend':
  7193. // click = '我的好友';
  7194. // break;
  7195. // case 'domain':
  7196. // click = '域名管理';
  7197. // break;
  7198. // case 'disk':
  7199. // click = '我的云盘';
  7200. // break;
  7201. // case 'word':
  7202. // click = 'Word';
  7203. // break;
  7204. // case 'excel':
  7205. // click = 'Execl';
  7206. // break;
  7207. // case 'txt':
  7208. // click = '文本文件';
  7209. // break;
  7210. // case 'lookupFriend':
  7211. // click = '查找好友';
  7212. // break;
  7213. // case 'ftp':
  7214. // click = 'FTP';
  7215. // break;
  7216. // case 'group':
  7217. // click = '群组';
  7218. // break;
  7219. // case 'set':
  7220. // click = '我的设置';
  7221. // break;
  7222. // case 'systemSet':
  7223. // click = '系统设置';
  7224. // break;
  7225. // case 'boomYun':
  7226. // click = '互联办公';
  7227. // break;
  7228. // case 'xz':
  7229. // click = '云端下载';
  7230. // break;
  7231. // case 'client':
  7232. // click = '有思浏览器';
  7233. // break;
  7234. // case 'backEndProgramming':
  7235. // click = '在线后台编程';
  7236. // break;
  7237. // case 'frontEndProgramming':
  7238. // click = '在线前端编程';
  7239. // break;
  7240. // default: break;
  7241. // }
  7242. // if(U.MD.D.I.Ip && click){
  7243. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7244. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7245. // })
  7246. // }
  7247. // }
  7248. /**
  7249. *函数作用:ajax简易函数,使用post格式
  7250. *@param url {data} 后台地址
  7251. *@param data {data} 参数json
  7252. *@param fn {data} 回调函数
  7253. *
  7254. */
  7255. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7256. // var xhr = new XMLHttpRequest();
  7257. // xhr.open("GET",url,true);
  7258. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7259. // xhr.onreadystatechange = function(){
  7260. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7261. // fn.call(this,xhr.responseText);
  7262. // }
  7263. // };
  7264. // xhr.send();
  7265. // }
  7266. /*判断是否是内网IP*/
  7267. // U.MD.D.I.isInnerIPFn = function(str){
  7268. // var curPageUrl = str;
  7269. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7270. // curPageUrl =curPageUrl.replace(reg1,'');
  7271. // // console.log('curPageUrl-1 '+curPageUrl);
  7272. // var reg2 = /\:+/g;//替换冒号为一点
  7273. // curPageUrl =curPageUrl.replace(reg2,'.');
  7274. // // console.log('curPageUrl-2 '+curPageUrl);
  7275. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7276. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7277. // if(curPageUrl[2] != '16'){
  7278. // return ipAddress;
  7279. // }else{
  7280. // return false;
  7281. // }
  7282. // }
  7283. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7284. // //compatibility for firefox and chrome
  7285. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7286. // var pc = new myPeerConnection({
  7287. // iceServers: []
  7288. // }),
  7289. // noop = function() {},
  7290. // localIPs = {},
  7291. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7292. // key;
  7293. // function iterateIP(ip) {
  7294. // if (!localIPs[ip]) onNewIP(ip);
  7295. // localIPs[ip] = true;
  7296. // }
  7297. // //create a bogus data channel
  7298. // pc.createDataChannel("");
  7299. // // create offer and set local description
  7300. // pc.createOffer().then(function(sdp) {
  7301. // sdp.sdp.split('\n').forEach(function(line) {
  7302. // if (line.indexOf('candidate') < 0) return;
  7303. // line.match(ipRegex).forEach(iterateIP);
  7304. // });
  7305. // pc.setLocalDescription(sdp, noop, noop);
  7306. // }).catch(function(reason) {
  7307. // // An error occurred, so handle the failure to connect
  7308. // });
  7309. // //sten for candidate events
  7310. // pc.onicecandidate = function(ice) {
  7311. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7312. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7313. // };
  7314. // }
  7315. // U.MD.D.I.getUserIpBool = function(callback){
  7316. // U.MD.D.I.getUserIP(function(ip){
  7317. // alert("Got IP! :" + ip);
  7318. // });
  7319. //}
  7320. //#endregion
  7321. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7322. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7323. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7324. _userinfo = US.userInfo, //登录用户信息
  7325. _userid = US.userInfo.userid //登录用户id
  7326. let _iframe;
  7327. let _cid = cid,
  7328. _stage = stage,
  7329. _task = task,
  7330. _tool = tool;
  7331. var _jie = $$("div", {
  7332. "style": {
  7333. "position": "absolute",
  7334. "bottom": "50px",
  7335. "right": "50px",
  7336. "zIndex": "9999",
  7337. "backgroundColor": "#2268bc",
  7338. "color": "#fff",
  7339. "padding": "12px 20px",
  7340. "cursor": "pointer",
  7341. "borderRadius": "4px",
  7342. },
  7343. "innerHTML": "提交作业"
  7344. })
  7345. let aTool = ''
  7346. let _loading = document.createElement('div')
  7347. _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;"
  7348. // _loading.id = "";
  7349. let _lchild = document.createElement('div')
  7350. let _limg = document.createElement('img')
  7351. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7352. _limg.style = "width: 26px;margin-right: 10px;"
  7353. _lchild.appendChild(_limg)
  7354. let _lspan = document.createElement('span')
  7355. _lspan.innerHTML = "上传中..."
  7356. _lchild.appendChild(_lspan)
  7357. _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%);"
  7358. _loading.appendChild(_lchild)
  7359. var _box = $$('div', {
  7360. "style": {
  7361. "position": "relative",
  7362. "width": "100%",
  7363. "height": "100%",
  7364. },
  7365. })
  7366. _box.appendChild(_loading)
  7367. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7368. switch (str) {
  7369. case "whiteboard":
  7370. aTool = 1;
  7371. _iframe = $$("iframe", {
  7372. "frameborder": "no",
  7373. "border": "0",
  7374. "scrolling ": "no",
  7375. "style": {
  7376. "cssText": "border:0;width:100%;height:100%"
  7377. },
  7378. "src": "https://beta.iwb.cocorobo.cn/"
  7379. })
  7380. _box.appendChild(_iframe);
  7381. _box.appendChild(_jie);
  7382. _formdiv = new U.UF.UI.form(
  7383. "电子白板",
  7384. _box, {
  7385. "id": "whiteboard" + cid + stage + task + tool,
  7386. "style": {
  7387. "width": "90%",
  7388. "height": "90%",
  7389. "overflow": 'hidden'
  7390. },
  7391. "onresize": function () { }
  7392. }, {
  7393. closecallback: function () { }
  7394. }, {
  7395. "style": {
  7396. "height": "36px"
  7397. }
  7398. }).form; //创建窗体
  7399. _taskbar = {
  7400. "id": str + _formdiv.id,
  7401. "style": {
  7402. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7403. },
  7404. "name": "电子白板",
  7405. "forms": _formdiv,
  7406. "click": function () {
  7407. U.MD.D.I.openApplication(str, obj, info);
  7408. }
  7409. }
  7410. break;
  7411. case "mind":
  7412. aTool = 3;
  7413. _iframe = $$("iframe", {
  7414. "frameborder": "no",
  7415. "border": "0",
  7416. "scrolling ": "no",
  7417. "style": {
  7418. "cssText": "border:0;width:100%;height:100%"
  7419. },
  7420. "src": "/kityminder-editor/dist/index.html"
  7421. })
  7422. _box.appendChild(_iframe);
  7423. _box.appendChild(_jie);
  7424. _formdiv = new U.UF.UI.form(
  7425. "思维导图",
  7426. _box, { //"/jsmind/example/demo.html"
  7427. "id": "mind" + cid + stage + task + tool,
  7428. "style": {
  7429. "width": "90%",
  7430. "height": "90%",
  7431. "overflow": 'hidden'
  7432. },
  7433. "onresize": function () { }
  7434. }, {
  7435. closecallback: function () { }
  7436. }, {
  7437. "style": {
  7438. "height": "36px"
  7439. }
  7440. }).form; //创建窗体
  7441. _taskbar = {
  7442. "id": str + _formdiv.id,
  7443. "style": {
  7444. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7445. },
  7446. "name": "思维导图",
  7447. "forms": _formdiv,
  7448. "click": function () {
  7449. U.MD.D.I.openApplication(str, obj, info);
  7450. }
  7451. }
  7452. break;
  7453. case "MindMap":
  7454. aTool = 3;
  7455. _iframe = $$("iframe", {
  7456. "frameborder": "no",
  7457. "border": "0",
  7458. "scrolling ": "no",
  7459. "style": {
  7460. "cssText": "border:0;width:100%;height:100%"
  7461. },
  7462. "src": "//cloud.cocorobo.cn/mind/"
  7463. })
  7464. _box.appendChild(_iframe);
  7465. _box.appendChild(_jie);
  7466. _formdiv = new U.UF.UI.form(
  7467. "思维导图",
  7468. _box, { //"/jsmind/example/demo.html"
  7469. "id": "mind" + cid + stage + task + tool,
  7470. "style": {
  7471. "width": "90%",
  7472. "height": "90%",
  7473. "overflow": 'hidden'
  7474. },
  7475. "onresize": function () { }
  7476. }, {
  7477. closecallback: function () { }
  7478. }, {
  7479. "style": {
  7480. "height": "36px"
  7481. }
  7482. }).form; //创建窗体
  7483. _taskbar = {
  7484. "id": str + _formdiv.id,
  7485. "style": {
  7486. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7487. },
  7488. "name": "思维导图",
  7489. "forms": _formdiv,
  7490. "click": function () {
  7491. U.MD.D.I.openApplication(str, obj, info);
  7492. }
  7493. }
  7494. break;
  7495. case "doc":
  7496. aTool = 6;
  7497. _iframe = $$("iframe", {
  7498. "frameborder": "no",
  7499. "border": "0",
  7500. "scrolling ": "no",
  7501. "style": {
  7502. "cssText": "border:0;width:100%;height:100%"
  7503. },
  7504. "src": "/Office/Word/WordEditArea.htm"
  7505. })
  7506. _box.appendChild(_iframe);
  7507. _box.appendChild(_jie);
  7508. _formdiv = new U.UF.UI.form(
  7509. "协同文档",
  7510. _box, {
  7511. "id": "doc" + cid + stage + task + tool,
  7512. "style": {
  7513. "width": "90%",
  7514. "height": "90%",
  7515. "overflow": 'hidden'
  7516. },
  7517. "onresize": function () { }
  7518. }, {
  7519. closecallback: function () { }
  7520. }, {
  7521. "style": {
  7522. "height": "36px"
  7523. }
  7524. }).form; //创建窗体
  7525. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7526. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7527. })
  7528. _taskbar = {
  7529. "id": str + _formdiv.id,
  7530. "style": {
  7531. "backgroundImage": "url(/img/icon/doc.png)"
  7532. },
  7533. "name": "协同文档",
  7534. "forms": _formdiv,
  7535. "click": function () {
  7536. U.MD.D.I.openApplication(str, obj, info);
  7537. }
  7538. }
  7539. break;
  7540. case "mindNetwork": //好友打开
  7541. aTool = 7;
  7542. _iframe = $$("iframe", {
  7543. "webkitallowfullscreen": "",
  7544. "mozallowfullscreen": "",
  7545. "allowfullscreen": "",
  7546. "frameborder": "no",
  7547. "border": "0",
  7548. "scrolling ": "no",
  7549. "style": {
  7550. "cssText": "border:0; width:100%; height:100%;"
  7551. },
  7552. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7553. })
  7554. _box.appendChild(_iframe);
  7555. _box.appendChild(_jie);
  7556. _formdiv = new U.UF.UI.form(
  7557. "思维网格",
  7558. _box, {
  7559. "id": "mindNetwork" + cid + stage + task + tool,
  7560. "style": {
  7561. "width": "90%",
  7562. "height": "90%",
  7563. "overflow": 'hidden'
  7564. },
  7565. "onresize": function () { }
  7566. }, {
  7567. closecallback: function () { }
  7568. }, {
  7569. "style": {
  7570. "height": "36px"
  7571. }
  7572. }).form; //创建窗体
  7573. _taskbar = {
  7574. "id": str + _formdiv.id,
  7575. "style": {
  7576. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7577. },
  7578. "name": "思维网格",
  7579. "forms": _formdiv,
  7580. "click": function () {
  7581. U.MD.D.I.openApplication(str, obj, info);
  7582. }
  7583. }
  7584. break;
  7585. case "courseDesign":
  7586. _iframe = $$("iframe", {
  7587. "webkitallowfullscreen": "",
  7588. "mozallowfullscreen": "",
  7589. "allowfullscreen": "",
  7590. "frameborder": "no",
  7591. "border": "0",
  7592. "scrolling ": "no",
  7593. "style": {
  7594. "cssText": "border:0; width:100%; height:100%;"
  7595. },
  7596. "src": "/course-design-vue"
  7597. })
  7598. _box.appendChild(_iframe);
  7599. _box.appendChild(_jie);
  7600. _formdiv = new U.UF.UI.form(
  7601. "项目设计",
  7602. _box, {
  7603. "id": "courseDesign" + cid + stage + task + tool,
  7604. "style": {
  7605. "width": "90%",
  7606. "height": "90%",
  7607. "overflow": 'hidden'
  7608. },
  7609. "onresize": function () { }
  7610. }, {
  7611. closecallback: function () { }
  7612. }, {
  7613. "style": {
  7614. "height": "36px"
  7615. }
  7616. }).form; //创建窗体
  7617. _taskbar = {
  7618. "id": str + _formdiv.id,
  7619. "style": {
  7620. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7621. },
  7622. "name": "项目设计",
  7623. "forms": _formdiv,
  7624. "click": function () {
  7625. U.MD.D.I.openApplication(str, obj, info);
  7626. }
  7627. }
  7628. break;
  7629. }
  7630. const script1 = document.createElement("script");
  7631. script1.type = "text/javascript";
  7632. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7633. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7634. const script2 = document.createElement("script");
  7635. script2.type = "text/javascript";
  7636. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7637. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7638. const script3 = document.createElement("script");
  7639. script3.type = "text/javascript";
  7640. script3.charset = "UTF-8";
  7641. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7642. const script4 = document.createElement("script");
  7643. script4.type = "text/javascript";
  7644. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7645. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7646. if (_iframe) {
  7647. if (str == 'doc') {
  7648. _iframe = _formdiv.querySelector('iframe')
  7649. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7650. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7651. _iframe.contentWindow.document.body.appendChild(script1);
  7652. _iframe.contentWindow.document.body.appendChild(script2);
  7653. // _iframe.contentWindow.document.body.appendChild(script3);
  7654. _iframe.contentWindow.document.body.appendChild(script4);
  7655. })
  7656. if (onloadListener) {
  7657. _iframe.contentDocument.location.reload()
  7658. } else {
  7659. _iframe.contentDocument.location.reload()
  7660. }
  7661. } else if (str == 'courseDesign') {
  7662. U.UF.DL.iframeLoad(_iframe, function () {
  7663. // _iframe.contentWindow.U.MD.O.W.load();
  7664. // _iframe.contentWindow.document.body.appendChild(script1);
  7665. _iframe.contentWindow.document.body.appendChild(script2);
  7666. _iframe.contentWindow.document.body.appendChild(script4);
  7667. })
  7668. } else if (str == 'mind') {
  7669. _iframe = _formdiv.querySelector('iframe')
  7670. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7671. //
  7672. _iframe.contentWindow.document.body.appendChild(script1);
  7673. _iframe.contentWindow.document.body.appendChild(script2);
  7674. _iframe.contentWindow.document.body.appendChild(script4);
  7675. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7676. })
  7677. if (onloadListener) {
  7678. _iframe.contentDocument.location.reload()
  7679. } else {
  7680. _iframe.contentDocument.location.reload()
  7681. }
  7682. } else if (str == 'whiteboard') {
  7683. _iframe = _formdiv.querySelector('iframe')
  7684. let onloadListener = _iframe.onload = () => {
  7685. _iframe.contentWindow.document.body.appendChild(script1);
  7686. _iframe.contentWindow.document.body.appendChild(script2);
  7687. _iframe.contentWindow.document.body.appendChild(script4);
  7688. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7689. };
  7690. // if (onloadListener) {
  7691. // try {
  7692. // _iframe.src += "?cocorobo="+new Date().getTime()
  7693. // _iframe.contentWindow.document.location.reload()
  7694. // } catch (error) {
  7695. // }
  7696. // } else {
  7697. // _iframe.contentDocument.location.reload()
  7698. // }
  7699. } else {
  7700. _iframe.onload = () => {
  7701. _iframe.contentWindow.document.body.appendChild(script1);
  7702. _iframe.contentWindow.document.body.appendChild(script2);
  7703. // _iframe.contentWindow.document.body.appendChild(script3);
  7704. _iframe.contentWindow.document.body.appendChild(script4);
  7705. };
  7706. }
  7707. _jie.onclick = async () => {
  7708. let text = ''
  7709. if (aTool == 1) {
  7710. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7711. } else if (aTool == 6) {
  7712. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7713. } else if (aTool == 3) {
  7714. text = await U.MD.D.I.getEditorContent(_iframe);
  7715. }
  7716. _loading.style.display = 'flex'
  7717. console.log(_loading);
  7718. var _ajs = _iframe.contentWindow.document.createElement("script");
  7719. _ajs.type = "text/javascript";
  7720. _ajs.innerHTML =
  7721. // 'console.log(' + _loading + ');\n' +
  7722. 'var _js = document.createElement("script");\n' +
  7723. '_js.type="text/javascript";\n' +
  7724. '_js.charset="UTF-8";\n' +
  7725. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7726. "_js.onload = function(){\n" +
  7727. ' var a = document.getElementsByTagName("img")\n' +
  7728. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7729. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7730. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7731. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7732. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7733. "beforeUpload_shishi(file," +
  7734. "'" +
  7735. _userid +
  7736. "'" +
  7737. ", " +
  7738. "'" +
  7739. _cid +
  7740. "'" +
  7741. ", " +
  7742. "'" +
  7743. _stage +
  7744. "'" +
  7745. ", " +
  7746. "'" +
  7747. _task +
  7748. "'" +
  7749. ", " +
  7750. "'" +
  7751. _tool +
  7752. "'" +
  7753. ", " +
  7754. "'" +
  7755. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7756. "'" +
  7757. ", " +
  7758. "'" +
  7759. aTool +
  7760. "'" +
  7761. ", " +
  7762. "`" +
  7763. text +
  7764. "`" +
  7765. ")\n" +
  7766. " });\n" +
  7767. "}\n" +
  7768. "document.head.appendChild(_js);\n";
  7769. _iframe.contentWindow.document.head.appendChild(_ajs);
  7770. }
  7771. }
  7772. //U.MD.D.I.openClick(str);
  7773. //如果有任务栏信息
  7774. // if (_taskbar) {
  7775. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7776. // }
  7777. }
  7778. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7779. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7780. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7781. _userinfo = US.userInfo, //登录用户信息
  7782. _userid = US.userInfo.userid //登录用户id
  7783. let _iframe;
  7784. let _cid = cid,
  7785. _stage = stage,
  7786. _task = task,
  7787. _tool = tool;
  7788. var _jie = $$("div", {
  7789. "style": {
  7790. "position": "absolute",
  7791. "bottom": "50px",
  7792. "right": "50px",
  7793. "zIndex": "9999",
  7794. "backgroundColor": "#2268bc",
  7795. "color": "#fff",
  7796. "padding": "12px 20px",
  7797. "cursor": "pointer",
  7798. "borderRadius": "4px",
  7799. },
  7800. "innerHTML": "提交作业"
  7801. })
  7802. let aTool = ''
  7803. let _loading = document.createElement('div')
  7804. _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;"
  7805. // _loading.id = "";
  7806. let _lchild = document.createElement('div')
  7807. let _limg = document.createElement('img')
  7808. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7809. _limg.style = "width: 26px;margin-right: 10px;"
  7810. _lchild.appendChild(_limg)
  7811. let _lspan = document.createElement('span')
  7812. _lspan.innerHTML = "上传中..."
  7813. _lchild.appendChild(_lspan)
  7814. _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%);"
  7815. _loading.appendChild(_lchild)
  7816. let _box = $$('div', {
  7817. "style": {
  7818. "position": "relative",
  7819. "width": "100%",
  7820. "height": "100%",
  7821. },
  7822. })
  7823. _box.appendChild(_loading)
  7824. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7825. switch (str) {
  7826. case "whiteboard":
  7827. aTool = 1;
  7828. _iframe = $$("iframe", {
  7829. "frameborder": "no",
  7830. "border": "0",
  7831. "scrolling ": "no",
  7832. "style": {
  7833. "cssText": "border:0;width:100%;height:100%"
  7834. },
  7835. "src": "https://beta.iwb.cocorobo.cn/"
  7836. })
  7837. _box.appendChild(_iframe);
  7838. _box.appendChild(_jie);
  7839. _formdiv = new U.UF.UI.form(
  7840. "电子白板",
  7841. _box, {
  7842. "id": "whiteboard" + cid + stage + task + tool,
  7843. "style": {
  7844. "width": "90%",
  7845. "height": "90%",
  7846. "overflow": 'hidden'
  7847. },
  7848. "onresize": function () { }
  7849. }, {
  7850. closecallback: function () { }
  7851. }, {
  7852. "style": {
  7853. "height": "36px"
  7854. }
  7855. }).form; //创建窗体
  7856. _taskbar = {
  7857. "id": str + _formdiv.id,
  7858. "style": {
  7859. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7860. },
  7861. "name": "电子白板",
  7862. "forms": _formdiv,
  7863. "click": function () {
  7864. U.MD.D.I.openApplication(str, obj, info);
  7865. }
  7866. }
  7867. break;
  7868. case "mind":
  7869. aTool = 3;
  7870. _iframe = $$("iframe", {
  7871. "frameborder": "no",
  7872. "border": "0",
  7873. "scrolling ": "no",
  7874. "style": {
  7875. "cssText": "border:0;width:100%;height:100%"
  7876. },
  7877. "src": "/kityminder-editor/dist/index.html"
  7878. })
  7879. _box.appendChild(_iframe);
  7880. _box.appendChild(_jie);
  7881. _formdiv = new U.UF.UI.form(
  7882. "思维导图",
  7883. _box, { //"/jsmind/example/demo.html"
  7884. "id": "mind" + cid + stage + task + tool,
  7885. "style": {
  7886. "width": "90%",
  7887. "height": "90%",
  7888. "overflow": 'hidden'
  7889. },
  7890. "onresize": function () { }
  7891. }, {
  7892. closecallback: function () { }
  7893. }, {
  7894. "style": {
  7895. "height": "36px"
  7896. }
  7897. }).form; //创建窗体
  7898. _taskbar = {
  7899. "id": str + _formdiv.id,
  7900. "style": {
  7901. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7902. },
  7903. "name": "思维导图",
  7904. "forms": _formdiv,
  7905. "click": function () {
  7906. U.MD.D.I.openApplication(str, obj, info);
  7907. }
  7908. }
  7909. break;
  7910. case "MindMap":
  7911. aTool = 3;
  7912. _iframe = $$("iframe", {
  7913. "frameborder": "no",
  7914. "border": "0",
  7915. "scrolling ": "no",
  7916. "style": {
  7917. "cssText": "border:0;width:100%;height:100%"
  7918. },
  7919. "src": "//cloud.cocorobo.cn/mind/"
  7920. })
  7921. _box.appendChild(_iframe);
  7922. _box.appendChild(_jie);
  7923. _formdiv = new U.UF.UI.form(
  7924. "思维导图",
  7925. _box, { //"/jsmind/example/demo.html"
  7926. "id": "mind" + cid + stage + task + tool,
  7927. "style": {
  7928. "width": "90%",
  7929. "height": "90%",
  7930. "overflow": 'hidden'
  7931. },
  7932. "onresize": function () { }
  7933. }, {
  7934. closecallback: function () { }
  7935. }, {
  7936. "style": {
  7937. "height": "36px"
  7938. }
  7939. }).form; //创建窗体
  7940. _taskbar = {
  7941. "id": str + _formdiv.id,
  7942. "style": {
  7943. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7944. },
  7945. "name": "思维导图",
  7946. "forms": _formdiv,
  7947. "click": function () {
  7948. U.MD.D.I.openApplication(str, obj, info);
  7949. }
  7950. }
  7951. break;
  7952. case "doc":
  7953. aTool = 6;
  7954. _iframe = $$("iframe", {
  7955. "frameborder": "no",
  7956. "border": "0",
  7957. "scrolling ": "no",
  7958. "style": {
  7959. "cssText": "border:0;width:100%;height:100%"
  7960. },
  7961. "src": "/Office/Word/WordEditArea.htm"
  7962. })
  7963. _box.appendChild(_iframe);
  7964. _box.appendChild(_jie);
  7965. _formdiv = new U.UF.UI.form(
  7966. "协同文档",
  7967. _box, {
  7968. "id": "doc" + cid + stage + task + tool,
  7969. "style": {
  7970. "width": "90%",
  7971. "height": "90%",
  7972. "overflow": 'hidden'
  7973. },
  7974. "onresize": function () { }
  7975. }, {
  7976. closecallback: function () { }
  7977. }, {
  7978. "style": {
  7979. "height": "36px"
  7980. }
  7981. }).form; //创建窗体
  7982. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7983. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7984. })
  7985. _taskbar = {
  7986. "id": str + _formdiv.id,
  7987. "style": {
  7988. "backgroundImage": "url(/img/icon/doc.png)"
  7989. },
  7990. "name": "协同文档",
  7991. "forms": _formdiv,
  7992. "click": function () {
  7993. U.MD.D.I.openApplication(str, obj, info);
  7994. }
  7995. }
  7996. break;
  7997. case "mindNetwork": //好友打开
  7998. aTool = 7;
  7999. _iframe = $$("iframe", {
  8000. "webkitallowfullscreen": "",
  8001. "mozallowfullscreen": "",
  8002. "allowfullscreen": "",
  8003. "frameborder": "no",
  8004. "border": "0",
  8005. "scrolling ": "no",
  8006. "style": {
  8007. "cssText": "border:0; width:100%; height:100%;"
  8008. },
  8009. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8010. })
  8011. _box.appendChild(_iframe);
  8012. _box.appendChild(_jie);
  8013. _formdiv = new U.UF.UI.form(
  8014. "思维网格",
  8015. _box, {
  8016. "id": "mindNetwork" + cid + stage + task + tool,
  8017. "style": {
  8018. "width": "90%",
  8019. "height": "90%",
  8020. "overflow": 'hidden'
  8021. },
  8022. "onresize": function () { }
  8023. }, {
  8024. closecallback: function () { }
  8025. }, {
  8026. "style": {
  8027. "height": "36px"
  8028. }
  8029. }).form; //创建窗体
  8030. _taskbar = {
  8031. "id": str + _formdiv.id,
  8032. "style": {
  8033. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8034. },
  8035. "name": "思维网格",
  8036. "forms": _formdiv,
  8037. "click": function () {
  8038. U.MD.D.I.openApplication(str, obj, info);
  8039. }
  8040. }
  8041. break;
  8042. case "courseDesign":
  8043. _iframe = $$("iframe", {
  8044. "webkitallowfullscreen": "",
  8045. "mozallowfullscreen": "",
  8046. "allowfullscreen": "",
  8047. "frameborder": "no",
  8048. "border": "0",
  8049. "scrolling ": "no",
  8050. "style": {
  8051. "cssText": "border:0; width:100%; height:100%;"
  8052. },
  8053. "src": "/course-design-vue"
  8054. })
  8055. _box.appendChild(_iframe);
  8056. _box.appendChild(_jie);
  8057. _formdiv = new U.UF.UI.form(
  8058. "项目设计",
  8059. _box, {
  8060. "id": "courseDesign" + cid + stage + task + tool,
  8061. "style": {
  8062. "width": "90%",
  8063. "height": "90%",
  8064. "overflow": 'hidden'
  8065. },
  8066. "onresize": function () { }
  8067. }, {
  8068. closecallback: function () { }
  8069. }, {
  8070. "style": {
  8071. "height": "36px"
  8072. }
  8073. }).form; //创建窗体
  8074. _taskbar = {
  8075. "id": str + _formdiv.id,
  8076. "style": {
  8077. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8078. },
  8079. "name": "项目设计",
  8080. "forms": _formdiv,
  8081. "click": function () {
  8082. U.MD.D.I.openApplication(str, obj, info);
  8083. }
  8084. }
  8085. break;
  8086. }
  8087. const script1 = document.createElement("script");
  8088. script1.type = "text/javascript";
  8089. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8090. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8091. const script2 = document.createElement("script");
  8092. script2.type = "text/javascript";
  8093. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8094. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8095. const script3 = document.createElement("script");
  8096. script3.type = "text/javascript";
  8097. script3.charset = "UTF-8";
  8098. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8099. const script4 = document.createElement("script");
  8100. script4.type = "text/javascript";
  8101. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8102. script4.src = window.origin + "/js/Common/jietu2E.js";
  8103. if (_iframe) {
  8104. if (str == 'doc') {
  8105. _iframe = _formdiv.querySelector('iframe')
  8106. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8107. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8108. _iframe.contentWindow.document.body.appendChild(script1);
  8109. _iframe.contentWindow.document.body.appendChild(script2);
  8110. // _iframe.contentWindow.document.body.appendChild(script3);
  8111. _iframe.contentWindow.document.body.appendChild(script4);
  8112. })
  8113. if (onloadListener) {
  8114. _iframe.contentDocument.location.reload()
  8115. } else {
  8116. _iframe.contentDocument.location.reload()
  8117. }
  8118. } else if (str == 'courseDesign') {
  8119. U.UF.DL.iframeLoad(_iframe, function () {
  8120. // _iframe.contentWindow.U.MD.O.W.load();
  8121. // _iframe.contentWindow.document.body.appendChild(script1);
  8122. _iframe.contentWindow.document.body.appendChild(script2);
  8123. _iframe.contentWindow.document.body.appendChild(script4);
  8124. })
  8125. } else if (str == 'mind') {
  8126. _iframe = _formdiv.querySelector('iframe')
  8127. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8128. //
  8129. _iframe.contentWindow.document.body.appendChild(script1);
  8130. _iframe.contentWindow.document.body.appendChild(script2);
  8131. _iframe.contentWindow.document.body.appendChild(script4);
  8132. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8133. })
  8134. if (onloadListener) {
  8135. _iframe.contentDocument.location.reload()
  8136. } else {
  8137. _iframe.contentDocument.location.reload()
  8138. }
  8139. } else if (str == 'whiteboard') {
  8140. _iframe = _formdiv.querySelector('iframe')
  8141. let onloadListener = _iframe.onload = () => {
  8142. _iframe.contentWindow.document.body.appendChild(script1);
  8143. _iframe.contentWindow.document.body.appendChild(script2);
  8144. _iframe.contentWindow.document.body.appendChild(script4);
  8145. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8146. };
  8147. // if (onloadListener) {
  8148. // try {
  8149. // _iframe.src += "?cocorobo="+new Date().getTime()
  8150. // _iframe.contentWindow.document.location.reload()
  8151. // } catch (error) {
  8152. // }
  8153. // } else {
  8154. // _iframe.contentDocument.location.reload()
  8155. // }
  8156. } else {
  8157. _iframe.onload = () => {
  8158. _iframe.contentWindow.document.body.appendChild(script1);
  8159. _iframe.contentWindow.document.body.appendChild(script2);
  8160. // _iframe.contentWindow.document.body.appendChild(script3);
  8161. _iframe.contentWindow.document.body.appendChild(script4);
  8162. };
  8163. }
  8164. _jie.onclick = async () => {
  8165. let text = ''
  8166. if (aTool == 1) {
  8167. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8168. } else if (aTool == 6) {
  8169. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8170. } else if (aTool == 3) {
  8171. text = await U.MD.D.I.getEditorContent(_iframe);
  8172. }
  8173. _loading.style.display = 'flex'
  8174. console.log(_loading);
  8175. var _ajs = _iframe.contentWindow.document.createElement("script");
  8176. _ajs.type = "text/javascript";
  8177. _ajs.innerHTML =
  8178. // 'console.log(' + _loading + ');\n' +
  8179. 'var _js = document.createElement("script");\n' +
  8180. '_js.type="text/javascript";\n' +
  8181. '_js.charset="UTF-8";\n' +
  8182. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8183. "_js.onload = function(){\n" +
  8184. ' var a = document.getElementsByTagName("img")\n' +
  8185. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8186. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8187. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8188. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8189. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8190. "beforeUpload_shishi(file," +
  8191. "'" +
  8192. _userid +
  8193. "'" +
  8194. ", " +
  8195. "'" +
  8196. _cid +
  8197. "'" +
  8198. ", " +
  8199. "'" +
  8200. _stage +
  8201. "'" +
  8202. ", " +
  8203. "'" +
  8204. _task +
  8205. "'" +
  8206. ", " +
  8207. "'" +
  8208. _tool +
  8209. "'" +
  8210. ", " +
  8211. "'" +
  8212. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8213. "'" +
  8214. ", " +
  8215. "'" +
  8216. aTool +
  8217. "'" +
  8218. ", " +
  8219. "`" +
  8220. text +
  8221. "`" +
  8222. ")\n" +
  8223. " });\n" +
  8224. "}\n" +
  8225. "document.head.appendChild(_js);\n";
  8226. _iframe.contentWindow.document.head.appendChild(_ajs);
  8227. }
  8228. }
  8229. //U.MD.D.I.openClick(str);
  8230. //如果有任务栏信息
  8231. // if (_taskbar) {
  8232. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8233. // }
  8234. }
  8235. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8236. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8237. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8238. _userid = student.userid, //登录用户id
  8239. _username = student.student //用户名字
  8240. let _iframe;
  8241. let _cid = cid,
  8242. _stage = stage,
  8243. _task = task,
  8244. _tool = tool;
  8245. var _jie = $$("div", {
  8246. "style": {
  8247. "position": "absolute",
  8248. "bottom": "50px",
  8249. "right": "50px",
  8250. "zIndex": "9999",
  8251. "backgroundColor": "#2268bc",
  8252. "color": "#fff",
  8253. "padding": "12px 20px",
  8254. "cursor": "pointer",
  8255. "borderRadius": "4px",
  8256. },
  8257. "innerHTML": "提交作业"
  8258. })
  8259. let aTool = ''
  8260. let _loading = document.createElement('div')
  8261. _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;"
  8262. // _loading.id = "";
  8263. let _lchild = document.createElement('div')
  8264. let _limg = document.createElement('img')
  8265. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8266. _limg.style = "width: 26px;margin-right: 10px;"
  8267. _lchild.appendChild(_limg)
  8268. let _lspan = document.createElement('span')
  8269. _lspan.innerHTML = "上传中..."
  8270. _lchild.appendChild(_lspan)
  8271. _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%);"
  8272. _loading.appendChild(_lchild)
  8273. var _box = $$('div', {
  8274. "style": {
  8275. "position": "relative",
  8276. "width": "100%",
  8277. "height": "100%",
  8278. },
  8279. })
  8280. _box.appendChild(_loading)
  8281. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8282. switch (str) {
  8283. case "whiteboard":
  8284. aTool = 1;
  8285. _iframe = $$("iframe", {
  8286. "frameborder": "no",
  8287. "border": "0",
  8288. "scrolling ": "no",
  8289. "style": {
  8290. "cssText": "border:0;width:100%;height:100%"
  8291. },
  8292. "src": "https://beta.iwb.cocorobo.cn/"
  8293. })
  8294. _box.appendChild(_iframe);
  8295. _box.appendChild(_jie);
  8296. _formdiv = new U.UF.UI.form(
  8297. "电子白板-" + _username,
  8298. _box, {
  8299. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8300. "style": {
  8301. "width": "90%",
  8302. "height": "90%",
  8303. "overflow": 'hidden'
  8304. },
  8305. "onresize": function () { }
  8306. }, {
  8307. closecallback: function () { }
  8308. }, {
  8309. "style": {
  8310. "height": "36px"
  8311. }
  8312. }).form; //创建窗体
  8313. _taskbar = {
  8314. "id": str + _formdiv.id,
  8315. "style": {
  8316. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8317. },
  8318. "name": "电子白板",
  8319. "forms": _formdiv,
  8320. "click": function () {
  8321. U.MD.D.I.openApplication(str, obj, info);
  8322. }
  8323. }
  8324. break;
  8325. case "mind":
  8326. aTool = 3;
  8327. _iframe = $$("iframe", {
  8328. "frameborder": "no",
  8329. "border": "0",
  8330. "scrolling ": "no",
  8331. "style": {
  8332. "cssText": "border:0;width:100%;height:100%"
  8333. },
  8334. "src": "/kityminder-editor/dist/index.html"
  8335. })
  8336. _box.appendChild(_iframe);
  8337. _box.appendChild(_jie);
  8338. _formdiv = new U.UF.UI.form(
  8339. "思维导图-" + _username,
  8340. _box, { //"/jsmind/example/demo.html"
  8341. "id": "mind" + cid + stage + task + tool + _userid,
  8342. "style": {
  8343. "width": "90%",
  8344. "height": "90%",
  8345. "overflow": 'hidden'
  8346. },
  8347. "onresize": function () { }
  8348. }, {
  8349. closecallback: function () { }
  8350. }, {
  8351. "style": {
  8352. "height": "36px"
  8353. }
  8354. }).form; //创建窗体
  8355. _taskbar = {
  8356. "id": str + _formdiv.id,
  8357. "style": {
  8358. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8359. },
  8360. "name": "思维导图",
  8361. "forms": _formdiv,
  8362. "click": function () {
  8363. U.MD.D.I.openApplication(str, obj, info);
  8364. }
  8365. }
  8366. break;
  8367. case "MindMap":
  8368. aTool = 3;
  8369. _iframe = $$("iframe", {
  8370. "frameborder": "no",
  8371. "border": "0",
  8372. "scrolling ": "no",
  8373. "style": {
  8374. "cssText": "border:0;width:100%;height:100%"
  8375. },
  8376. "src": "//cloud.cocorobo.cn/mind/"
  8377. })
  8378. _box.appendChild(_iframe);
  8379. _box.appendChild(_jie);
  8380. _formdiv = new U.UF.UI.form(
  8381. "思维导图-" + _username,
  8382. _box, { //"/jsmind/example/demo.html"
  8383. "id": "mind" + cid + stage + task + tool + _userid,
  8384. "style": {
  8385. "width": "90%",
  8386. "height": "90%",
  8387. "overflow": 'hidden'
  8388. },
  8389. "onresize": function () { }
  8390. }, {
  8391. closecallback: function () { }
  8392. }, {
  8393. "style": {
  8394. "height": "36px"
  8395. }
  8396. }).form; //创建窗体
  8397. _taskbar = {
  8398. "id": str + _formdiv.id,
  8399. "style": {
  8400. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8401. },
  8402. "name": "思维导图",
  8403. "forms": _formdiv,
  8404. "click": function () {
  8405. U.MD.D.I.openApplication(str, obj, info);
  8406. }
  8407. }
  8408. break;
  8409. case "doc":
  8410. aTool = 6;
  8411. _iframe = $$("iframe", {
  8412. "frameborder": "no",
  8413. "border": "0",
  8414. "scrolling ": "no",
  8415. "style": {
  8416. "cssText": "border:0;width:100%;height:100%"
  8417. },
  8418. "src": "/Office/Word/WordEditArea.htm"
  8419. })
  8420. _box.appendChild(_iframe);
  8421. _box.appendChild(_jie);
  8422. _formdiv = new U.UF.UI.form(
  8423. "协同文档-" + _username,
  8424. _box, {
  8425. "id": "doc" + cid + stage + task + tool + _userid,
  8426. "style": {
  8427. "width": "90%",
  8428. "height": "90%",
  8429. "overflow": 'hidden'
  8430. },
  8431. "onresize": function () { }
  8432. }, {
  8433. closecallback: function () { }
  8434. }, {
  8435. "style": {
  8436. "height": "36px"
  8437. }
  8438. }).form; //创建窗体
  8439. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8440. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8441. })
  8442. _taskbar = {
  8443. "id": str + _formdiv.id,
  8444. "style": {
  8445. "backgroundImage": "url(/img/icon/doc.png)"
  8446. },
  8447. "name": "协同文档",
  8448. "forms": _formdiv,
  8449. "click": function () {
  8450. U.MD.D.I.openApplication(str, obj, info);
  8451. }
  8452. }
  8453. break;
  8454. case "mindNetwork": //好友打开
  8455. aTool = 7;
  8456. _iframe = $$("iframe", {
  8457. "webkitallowfullscreen": "",
  8458. "mozallowfullscreen": "",
  8459. "allowfullscreen": "",
  8460. "frameborder": "no",
  8461. "border": "0",
  8462. "scrolling ": "no",
  8463. "style": {
  8464. "cssText": "border:0; width:100%; height:100%;"
  8465. },
  8466. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8467. })
  8468. _box.appendChild(_iframe);
  8469. _box.appendChild(_jie);
  8470. _formdiv = new U.UF.UI.form(
  8471. "思维网格-" + _username,
  8472. _box, {
  8473. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8474. "style": {
  8475. "width": "90%",
  8476. "height": "90%",
  8477. "overflow": 'hidden'
  8478. },
  8479. "onresize": function () { }
  8480. }, {
  8481. closecallback: function () { }
  8482. }, {
  8483. "style": {
  8484. "height": "36px"
  8485. }
  8486. }).form; //创建窗体
  8487. _taskbar = {
  8488. "id": str + _formdiv.id,
  8489. "style": {
  8490. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8491. },
  8492. "name": "思维网格",
  8493. "forms": _formdiv,
  8494. "click": function () {
  8495. U.MD.D.I.openApplication(str, obj, info);
  8496. }
  8497. }
  8498. break;
  8499. case "courseDesign":
  8500. _iframe = $$("iframe", {
  8501. "webkitallowfullscreen": "",
  8502. "mozallowfullscreen": "",
  8503. "allowfullscreen": "",
  8504. "frameborder": "no",
  8505. "border": "0",
  8506. "scrolling ": "no",
  8507. "style": {
  8508. "cssText": "border:0; width:100%; height:100%;"
  8509. },
  8510. "src": "/course-design-vue"
  8511. })
  8512. _box.appendChild(_iframe);
  8513. _box.appendChild(_jie);
  8514. _formdiv = new U.UF.UI.form(
  8515. "项目设计-" + _username,
  8516. _box, {
  8517. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8518. "style": {
  8519. "width": "90%",
  8520. "height": "90%",
  8521. "overflow": 'hidden'
  8522. },
  8523. "onresize": function () { }
  8524. }, {
  8525. closecallback: function () { }
  8526. }, {
  8527. "style": {
  8528. "height": "36px"
  8529. }
  8530. }).form; //创建窗体
  8531. _taskbar = {
  8532. "id": str + _formdiv.id,
  8533. "style": {
  8534. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8535. },
  8536. "name": "项目设计",
  8537. "forms": _formdiv,
  8538. "click": function () {
  8539. U.MD.D.I.openApplication(str, obj, info);
  8540. }
  8541. }
  8542. break;
  8543. }
  8544. const script1 = document.createElement("script");
  8545. script1.type = "text/javascript";
  8546. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8547. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8548. const script2 = document.createElement("script");
  8549. script2.type = "text/javascript";
  8550. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8551. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8552. const script3 = document.createElement("script");
  8553. script3.type = "text/javascript";
  8554. script3.charset = "UTF-8";
  8555. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8556. const script4 = document.createElement("script");
  8557. script4.type = "text/javascript";
  8558. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8559. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8560. if (_iframe) {
  8561. if (str == 'doc') {
  8562. _iframe = _formdiv.querySelector('iframe')
  8563. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8564. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8565. _iframe.contentWindow.document.body.appendChild(script1);
  8566. _iframe.contentWindow.document.body.appendChild(script2);
  8567. // _iframe.contentWindow.document.body.appendChild(script3);
  8568. _iframe.contentWindow.document.body.appendChild(script4);
  8569. })
  8570. if (onloadListener) {
  8571. _iframe.contentDocument.location.reload()
  8572. } else {
  8573. _iframe.contentDocument.location.reload()
  8574. }
  8575. } else if (str == 'courseDesign') {
  8576. U.UF.DL.iframeLoad(_iframe, function () {
  8577. // _iframe.contentWindow.U.MD.O.W.load();
  8578. // _iframe.contentWindow.document.body.appendChild(script1);
  8579. _iframe.contentWindow.document.body.appendChild(script2);
  8580. _iframe.contentWindow.document.body.appendChild(script4);
  8581. })
  8582. } else if (str == 'mind') {
  8583. _iframe = _formdiv.querySelector('iframe')
  8584. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8585. //
  8586. _iframe.contentWindow.document.body.appendChild(script1);
  8587. _iframe.contentWindow.document.body.appendChild(script2);
  8588. _iframe.contentWindow.document.body.appendChild(script4);
  8589. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8590. })
  8591. if (onloadListener) {
  8592. _iframe.contentDocument.location.reload()
  8593. } else {
  8594. _iframe.contentDocument.location.reload()
  8595. }
  8596. } else if (str == 'whiteboard') {
  8597. _iframe = _formdiv.querySelector('iframe')
  8598. let onloadListener = _iframe.onload = () => {
  8599. _iframe.contentWindow.document.body.appendChild(script1);
  8600. _iframe.contentWindow.document.body.appendChild(script2);
  8601. _iframe.contentWindow.document.body.appendChild(script4);
  8602. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8603. };
  8604. // if (onloadListener) {
  8605. // try {
  8606. // _iframe.src += "?cocorobo="+new Date().getTime()
  8607. // _iframe.contentWindow.document.location.reload()
  8608. // } catch (error) {
  8609. // }
  8610. // } else {
  8611. // _iframe.contentDocument.location.reload()
  8612. // }
  8613. } else {
  8614. _iframe.onload = () => {
  8615. _iframe.contentWindow.document.body.appendChild(script1);
  8616. _iframe.contentWindow.document.body.appendChild(script2);
  8617. // _iframe.contentWindow.document.body.appendChild(script3);
  8618. _iframe.contentWindow.document.body.appendChild(script4);
  8619. };
  8620. }
  8621. _jie.onclick = async () => {
  8622. let text = ''
  8623. if (aTool == 1) {
  8624. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8625. } else if (aTool == 6) {
  8626. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8627. } else if (aTool == 3) {
  8628. text = await U.MD.D.I.getEditorContent(_iframe);
  8629. }
  8630. _loading.style.display = 'flex'
  8631. console.log(_loading);
  8632. var _ajs = _iframe.contentWindow.document.createElement("script");
  8633. _ajs.type = "text/javascript";
  8634. _ajs.innerHTML =
  8635. // 'console.log(' + _loading + ');\n' +
  8636. 'var _js = document.createElement("script");\n' +
  8637. '_js.type="text/javascript";\n' +
  8638. '_js.charset="UTF-8";\n' +
  8639. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8640. "_js.onload = function(){\n" +
  8641. ' var a = document.getElementsByTagName("img")\n' +
  8642. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8643. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8644. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8645. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8646. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8647. "beforeUpload_shishi(file," +
  8648. "'" +
  8649. _userid +
  8650. "'" +
  8651. ", " +
  8652. "'" +
  8653. _cid +
  8654. "'" +
  8655. ", " +
  8656. "'" +
  8657. _stage +
  8658. "'" +
  8659. ", " +
  8660. "'" +
  8661. _task +
  8662. "'" +
  8663. ", " +
  8664. "'" +
  8665. _tool +
  8666. "'" +
  8667. ", " +
  8668. "'" +
  8669. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8670. "'" +
  8671. ", " +
  8672. "'" +
  8673. aTool +
  8674. "'" +
  8675. ", " +
  8676. "`" +
  8677. text +
  8678. "`" +
  8679. ")\n" +
  8680. " });\n" +
  8681. "}\n" +
  8682. "document.head.appendChild(_js);\n";
  8683. _iframe.contentWindow.document.head.appendChild(_ajs);
  8684. }
  8685. }
  8686. }
  8687. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8688. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8689. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8690. _userid = student.userid, //登录用户id
  8691. _username = student.student //用户名字
  8692. let _iframe;
  8693. let _cid = cid,
  8694. _stage = stage,
  8695. _task = task,
  8696. _tool = tool;
  8697. var _jie = $$("div", {
  8698. "style": {
  8699. "position": "absolute",
  8700. "bottom": "50px",
  8701. "right": "50px",
  8702. "zIndex": "9999",
  8703. "backgroundColor": "#2268bc",
  8704. "color": "#fff",
  8705. "padding": "12px 20px",
  8706. "cursor": "pointer",
  8707. "borderRadius": "4px",
  8708. },
  8709. "innerHTML": "提交作业"
  8710. })
  8711. let aTool = ''
  8712. let _loading = document.createElement('div')
  8713. _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;"
  8714. // _loading.id = "";
  8715. let _lchild = document.createElement('div')
  8716. let _limg = document.createElement('img')
  8717. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8718. _limg.style = "width: 26px;margin-right: 10px;"
  8719. _lchild.appendChild(_limg)
  8720. let _lspan = document.createElement('span')
  8721. _lspan.innerHTML = "上传中..."
  8722. _lchild.appendChild(_lspan)
  8723. _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%);"
  8724. _loading.appendChild(_lchild)
  8725. var _box = $$('div', {
  8726. "style": {
  8727. "position": "relative",
  8728. "width": "100%",
  8729. "height": "100%",
  8730. },
  8731. })
  8732. _box.appendChild(_loading)
  8733. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8734. switch (str) {
  8735. case "whiteboard":
  8736. aTool = 1;
  8737. _iframe = $$("iframe", {
  8738. "frameborder": "no",
  8739. "border": "0",
  8740. "scrolling ": "no",
  8741. "style": {
  8742. "cssText": "border:0;width:100%;height:100%"
  8743. },
  8744. "src": "https://beta.iwb.cocorobo.cn/"
  8745. })
  8746. _box.appendChild(_iframe);
  8747. _box.appendChild(_jie);
  8748. _formdiv = new U.UF.UI.form(
  8749. "电子白板-" + _username,
  8750. _box, {
  8751. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8752. "style": {
  8753. "width": "90%",
  8754. "height": "90%",
  8755. "overflow": 'hidden'
  8756. },
  8757. "onresize": function () { }
  8758. }, {
  8759. closecallback: function () { }
  8760. }, {
  8761. "style": {
  8762. "height": "36px"
  8763. }
  8764. }).form; //创建窗体
  8765. _taskbar = {
  8766. "id": str + _formdiv.id,
  8767. "style": {
  8768. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8769. },
  8770. "name": "电子白板",
  8771. "forms": _formdiv,
  8772. "click": function () {
  8773. U.MD.D.I.openApplication(str, obj, info);
  8774. }
  8775. }
  8776. break;
  8777. case "mind":
  8778. aTool = 3;
  8779. _iframe = $$("iframe", {
  8780. "frameborder": "no",
  8781. "border": "0",
  8782. "scrolling ": "no",
  8783. "style": {
  8784. "cssText": "border:0;width:100%;height:100%"
  8785. },
  8786. "src": "/kityminder-editor/dist/index.html"
  8787. })
  8788. _box.appendChild(_iframe);
  8789. _box.appendChild(_jie);
  8790. _formdiv = new U.UF.UI.form(
  8791. "思维导图-" + _username,
  8792. _box, { //"/jsmind/example/demo.html"
  8793. "id": "mind" + cid + stage + task + tool + _userid,
  8794. "style": {
  8795. "width": "90%",
  8796. "height": "90%",
  8797. "overflow": 'hidden'
  8798. },
  8799. "onresize": function () { }
  8800. }, {
  8801. closecallback: function () { }
  8802. }, {
  8803. "style": {
  8804. "height": "36px"
  8805. }
  8806. }).form; //创建窗体
  8807. _taskbar = {
  8808. "id": str + _formdiv.id,
  8809. "style": {
  8810. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8811. },
  8812. "name": "思维导图",
  8813. "forms": _formdiv,
  8814. "click": function () {
  8815. U.MD.D.I.openApplication(str, obj, info);
  8816. }
  8817. }
  8818. break;
  8819. case "MindMap":
  8820. aTool = 3;
  8821. _iframe = $$("iframe", {
  8822. "frameborder": "no",
  8823. "border": "0",
  8824. "scrolling ": "no",
  8825. "style": {
  8826. "cssText": "border:0;width:100%;height:100%"
  8827. },
  8828. "src": "//cloud.cocorobo.cn/mind/"
  8829. })
  8830. _box.appendChild(_iframe);
  8831. _box.appendChild(_jie);
  8832. _formdiv = new U.UF.UI.form(
  8833. "思维导图-" + _username,
  8834. _box, { //"/jsmind/example/demo.html"
  8835. "id": "mind" + cid + stage + task + tool + _userid,
  8836. "style": {
  8837. "width": "90%",
  8838. "height": "90%",
  8839. "overflow": 'hidden'
  8840. },
  8841. "onresize": function () { }
  8842. }, {
  8843. closecallback: function () { }
  8844. }, {
  8845. "style": {
  8846. "height": "36px"
  8847. }
  8848. }).form; //创建窗体
  8849. _taskbar = {
  8850. "id": str + _formdiv.id,
  8851. "style": {
  8852. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8853. },
  8854. "name": "思维导图",
  8855. "forms": _formdiv,
  8856. "click": function () {
  8857. U.MD.D.I.openApplication(str, obj, info);
  8858. }
  8859. }
  8860. break;
  8861. case "doc":
  8862. aTool = 6;
  8863. _iframe = $$("iframe", {
  8864. "frameborder": "no",
  8865. "border": "0",
  8866. "scrolling ": "no",
  8867. "style": {
  8868. "cssText": "border:0;width:100%;height:100%"
  8869. },
  8870. "src": "/Office/Word/WordEditArea.htm"
  8871. })
  8872. _box.appendChild(_iframe);
  8873. _box.appendChild(_jie);
  8874. _formdiv = new U.UF.UI.form(
  8875. "协同文档-" + _username,
  8876. _box, {
  8877. "id": "doc" + cid + stage + task + tool + _userid,
  8878. "style": {
  8879. "width": "90%",
  8880. "height": "90%",
  8881. "overflow": 'hidden'
  8882. },
  8883. "onresize": function () { }
  8884. }, {
  8885. closecallback: function () { }
  8886. }, {
  8887. "style": {
  8888. "height": "36px"
  8889. }
  8890. }).form; //创建窗体
  8891. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8892. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8893. })
  8894. _taskbar = {
  8895. "id": str + _formdiv.id,
  8896. "style": {
  8897. "backgroundImage": "url(/img/icon/doc.png)"
  8898. },
  8899. "name": "协同文档",
  8900. "forms": _formdiv,
  8901. "click": function () {
  8902. U.MD.D.I.openApplication(str, obj, info);
  8903. }
  8904. }
  8905. break;
  8906. case "mindNetwork": //好友打开
  8907. aTool = 7;
  8908. _iframe = $$("iframe", {
  8909. "webkitallowfullscreen": "",
  8910. "mozallowfullscreen": "",
  8911. "allowfullscreen": "",
  8912. "frameborder": "no",
  8913. "border": "0",
  8914. "scrolling ": "no",
  8915. "style": {
  8916. "cssText": "border:0; width:100%; height:100%;"
  8917. },
  8918. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8919. })
  8920. _box.appendChild(_iframe);
  8921. _box.appendChild(_jie);
  8922. _formdiv = new U.UF.UI.form(
  8923. "思维网格-" + _username,
  8924. _box, {
  8925. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8926. "style": {
  8927. "width": "90%",
  8928. "height": "90%",
  8929. "overflow": 'hidden'
  8930. },
  8931. "onresize": function () { }
  8932. }, {
  8933. closecallback: function () { }
  8934. }, {
  8935. "style": {
  8936. "height": "36px"
  8937. }
  8938. }).form; //创建窗体
  8939. _taskbar = {
  8940. "id": str + _formdiv.id,
  8941. "style": {
  8942. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8943. },
  8944. "name": "思维网格",
  8945. "forms": _formdiv,
  8946. "click": function () {
  8947. U.MD.D.I.openApplication(str, obj, info);
  8948. }
  8949. }
  8950. break;
  8951. case "courseDesign":
  8952. _iframe = $$("iframe", {
  8953. "webkitallowfullscreen": "",
  8954. "mozallowfullscreen": "",
  8955. "allowfullscreen": "",
  8956. "frameborder": "no",
  8957. "border": "0",
  8958. "scrolling ": "no",
  8959. "style": {
  8960. "cssText": "border:0; width:100%; height:100%;"
  8961. },
  8962. "src": "/course-design-vue"
  8963. })
  8964. _box.appendChild(_iframe);
  8965. _box.appendChild(_jie);
  8966. _formdiv = new U.UF.UI.form(
  8967. "项目设计-" + _username,
  8968. _box, {
  8969. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8970. "style": {
  8971. "width": "90%",
  8972. "height": "90%",
  8973. "overflow": 'hidden'
  8974. },
  8975. "onresize": function () { }
  8976. }, {
  8977. closecallback: function () { }
  8978. }, {
  8979. "style": {
  8980. "height": "36px"
  8981. }
  8982. }).form; //创建窗体
  8983. _taskbar = {
  8984. "id": str + _formdiv.id,
  8985. "style": {
  8986. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8987. },
  8988. "name": "项目设计",
  8989. "forms": _formdiv,
  8990. "click": function () {
  8991. U.MD.D.I.openApplication(str, obj, info);
  8992. }
  8993. }
  8994. break;
  8995. }
  8996. const script1 = document.createElement("script");
  8997. script1.type = "text/javascript";
  8998. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8999. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9000. const script2 = document.createElement("script");
  9001. script2.type = "text/javascript";
  9002. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9003. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9004. const script3 = document.createElement("script");
  9005. script3.type = "text/javascript";
  9006. script3.charset = "UTF-8";
  9007. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9008. const script4 = document.createElement("script");
  9009. script4.type = "text/javascript";
  9010. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9011. script4.src = window.origin + "/js/Common/jietu2E.js";
  9012. if (_iframe) {
  9013. if (str == 'doc') {
  9014. _iframe = _formdiv.querySelector('iframe')
  9015. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9016. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9017. _iframe.contentWindow.document.body.appendChild(script1);
  9018. _iframe.contentWindow.document.body.appendChild(script2);
  9019. // _iframe.contentWindow.document.body.appendChild(script3);
  9020. _iframe.contentWindow.document.body.appendChild(script4);
  9021. })
  9022. if (onloadListener) {
  9023. _iframe.contentDocument.location.reload()
  9024. } else {
  9025. _iframe.contentDocument.location.reload()
  9026. }
  9027. } else if (str == 'courseDesign') {
  9028. U.UF.DL.iframeLoad(_iframe, function () {
  9029. // _iframe.contentWindow.U.MD.O.W.load();
  9030. // _iframe.contentWindow.document.body.appendChild(script1);
  9031. _iframe.contentWindow.document.body.appendChild(script2);
  9032. _iframe.contentWindow.document.body.appendChild(script4);
  9033. })
  9034. } else if (str == 'mind') {
  9035. _iframe = _formdiv.querySelector('iframe')
  9036. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9037. //
  9038. _iframe.contentWindow.document.body.appendChild(script1);
  9039. _iframe.contentWindow.document.body.appendChild(script2);
  9040. _iframe.contentWindow.document.body.appendChild(script4);
  9041. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9042. })
  9043. if (onloadListener) {
  9044. _iframe.contentDocument.location.reload()
  9045. } else {
  9046. _iframe.contentDocument.location.reload()
  9047. }
  9048. } else if (str == 'whiteboard') {
  9049. _iframe = _formdiv.querySelector('iframe')
  9050. let onloadListener = _iframe.onload = () => {
  9051. _iframe.contentWindow.document.body.appendChild(script1);
  9052. _iframe.contentWindow.document.body.appendChild(script2);
  9053. _iframe.contentWindow.document.body.appendChild(script4);
  9054. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9055. };
  9056. // if (onloadListener) {
  9057. // try {
  9058. // _iframe.src += "?cocorobo="+new Date().getTime()
  9059. // _iframe.contentWindow.document.location.reload()
  9060. // } catch (error) {
  9061. // }
  9062. // } else {
  9063. // _iframe.contentDocument.location.reload()
  9064. // }
  9065. } else {
  9066. _iframe.onload = () => {
  9067. _iframe.contentWindow.document.body.appendChild(script1);
  9068. _iframe.contentWindow.document.body.appendChild(script2);
  9069. // _iframe.contentWindow.document.body.appendChild(script3);
  9070. _iframe.contentWindow.document.body.appendChild(script4);
  9071. };
  9072. }
  9073. _jie.onclick = async () => {
  9074. let text = ''
  9075. if (aTool == 1) {
  9076. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9077. } else if (aTool == 6) {
  9078. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9079. } else if (aTool == 3) {
  9080. text = await U.MD.D.I.getEditorContent(_iframe);
  9081. }
  9082. _loading.style.display = 'flex'
  9083. console.log(_loading);
  9084. var _ajs = _iframe.contentWindow.document.createElement("script");
  9085. _ajs.type = "text/javascript";
  9086. _ajs.innerHTML =
  9087. // 'console.log(' + _loading + ');\n' +
  9088. 'var _js = document.createElement("script");\n' +
  9089. '_js.type="text/javascript";\n' +
  9090. '_js.charset="UTF-8";\n' +
  9091. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9092. "_js.onload = function(){\n" +
  9093. ' var a = document.getElementsByTagName("img")\n' +
  9094. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9095. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9096. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9097. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9098. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9099. "beforeUpload_shishi(file," +
  9100. "'" +
  9101. _userid +
  9102. "'" +
  9103. ", " +
  9104. "'" +
  9105. _cid +
  9106. "'" +
  9107. ", " +
  9108. "'" +
  9109. _stage +
  9110. "'" +
  9111. ", " +
  9112. "'" +
  9113. _task +
  9114. "'" +
  9115. ", " +
  9116. "'" +
  9117. _tool +
  9118. "'" +
  9119. ", " +
  9120. "'" +
  9121. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9122. "'" +
  9123. ", " +
  9124. "'" +
  9125. aTool +
  9126. "'" +
  9127. ", " +
  9128. "`" +
  9129. text +
  9130. "`" +
  9131. ")\n" +
  9132. " });\n" +
  9133. "}\n" +
  9134. "document.head.appendChild(_js);\n";
  9135. _iframe.contentWindow.document.head.appendChild(_ajs);
  9136. }
  9137. }
  9138. }
  9139. U.MD.D.I.getEditorContent = function (iframe) {
  9140. return new Promise((resolve, reject) => {
  9141. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9142. console.log(content);
  9143. resolve(content)
  9144. });
  9145. });
  9146. }
  9147. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9148. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9149. // if (res.value[0].length > 0) {
  9150. // // resolve(res.value[0][0].text);
  9151. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9152. // $(fileInput).val('');
  9153. // });
  9154. // }
  9155. // }, [], { "type": "GET", "withCredentials": true });
  9156. var xmlhttp;
  9157. var Mac, Sn, DeviceId
  9158. if (window.XMLHttpRequest) {
  9159. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9160. xmlhttp = new XMLHttpRequest();
  9161. } else {
  9162. // IE6, IE5 浏览器执行代码
  9163. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9164. }
  9165. xmlhttp.onreadystatechange = function () {
  9166. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9167. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9168. // resolve(res.value[0][0].text);
  9169. if (type == '2') {
  9170. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9171. } else if (type == '3') {
  9172. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9173. }
  9174. } else {
  9175. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9176. }
  9177. }
  9178. }
  9179. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9180. xmlhttp.send();
  9181. }
  9182. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9183. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9184. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9185. _userinfo = US.userInfo, //登录用户信息
  9186. _userid = US.userInfo.userid //登录用户id
  9187. let _iframe;
  9188. let _cid = cid,
  9189. _stage = stage,
  9190. _task = task,
  9191. _tool = tool;
  9192. var _jie = $$("div", {
  9193. "style": {
  9194. "position": "absolute",
  9195. "bottom": "50px",
  9196. "right": "50px",
  9197. "zIndex": "9999",
  9198. "backgroundColor": "#2268bc",
  9199. "color": "#fff",
  9200. "padding": "12px 20px",
  9201. "cursor": "pointer",
  9202. "borderRadius": "4px",
  9203. },
  9204. "innerHTML": "确认并提交"
  9205. })
  9206. let aTool = ''
  9207. let _loading = document.createElement('div')
  9208. _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;"
  9209. // _loading.id = "";
  9210. let _lchild = document.createElement('div')
  9211. let _limg = document.createElement('img')
  9212. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9213. _limg.style = "width: 26px;margin-right: 10px;"
  9214. _lchild.appendChild(_limg)
  9215. let _lspan = document.createElement('span')
  9216. _lspan.innerHTML = "上传中..."
  9217. _lchild.appendChild(_lspan)
  9218. _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%);"
  9219. _loading.appendChild(_lchild)
  9220. var _box = $$('div', {
  9221. "style": {
  9222. "position": "relative",
  9223. "width": "100%",
  9224. "height": "100%",
  9225. },
  9226. })
  9227. _box.appendChild(_loading)
  9228. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9229. switch (str) {
  9230. case "whiteboard":
  9231. aTool = 1;
  9232. _iframe = $$("iframe", {
  9233. "frameborder": "no",
  9234. "border": "0",
  9235. "scrolling ": "no",
  9236. "style": {
  9237. "cssText": "border:0;width:100%;height:100%"
  9238. },
  9239. "src": "https://beta.iwb.cocorobo.cn/"
  9240. })
  9241. _box.appendChild(_iframe);
  9242. _box.appendChild(_jie);
  9243. _formdiv = new U.UF.UI.form(
  9244. "电子白板",
  9245. _box, {
  9246. "id": "whiteboards" + cid + stage + task + tool,
  9247. "style": {
  9248. "width": "90%",
  9249. "height": "90%",
  9250. "overflow": 'hidden'
  9251. },
  9252. "onresize": function () { }
  9253. }, {
  9254. closecallback: function () { }
  9255. }, {
  9256. "style": {
  9257. "height": "36px"
  9258. }
  9259. }).form; //创建窗体
  9260. _taskbar = {
  9261. "id": str + _formdiv.id,
  9262. "style": {
  9263. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9264. },
  9265. "name": "电子白板",
  9266. "forms": _formdiv,
  9267. "click": function () {
  9268. U.MD.D.I.openApplication(str, obj, info);
  9269. }
  9270. }
  9271. break;
  9272. case "mind":
  9273. aTool = 3;
  9274. _iframe = $$("iframe", {
  9275. "frameborder": "no",
  9276. "border": "0",
  9277. "scrolling ": "no",
  9278. "style": {
  9279. "cssText": "border:0;width:100%;height:100%"
  9280. },
  9281. "src": "/kityminder-editor/dist/index.html"
  9282. });
  9283. _box.appendChild(_iframe);
  9284. _box.appendChild(_jie);
  9285. _formdiv = new U.UF.UI.form(
  9286. "思维导图",
  9287. _box, { //"/jsmind/example/demo.html"
  9288. "id": "minds" + cid + stage + task + tool,
  9289. "style": {
  9290. "width": "90%",
  9291. "height": "90%",
  9292. "overflow": 'hidden'
  9293. },
  9294. "onresize": function () { }
  9295. }, {
  9296. closecallback: function () { }
  9297. }, {
  9298. "style": {
  9299. "height": "36px"
  9300. }
  9301. }).form; //创建窗体
  9302. _taskbar = {
  9303. "id": str + _formdiv.id,
  9304. "style": {
  9305. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9306. },
  9307. "name": "思维导图",
  9308. "forms": _formdiv,
  9309. "click": function () {
  9310. U.MD.D.I.openApplication(str, obj, info);
  9311. }
  9312. }
  9313. break;
  9314. case "doc":
  9315. aTool = 6;
  9316. _iframe = $$("iframe", {
  9317. "frameborder": "no",
  9318. "border": "0",
  9319. "scrolling ": "no",
  9320. "style": {
  9321. "cssText": "border:0;width:100%;height:100%"
  9322. },
  9323. "src": "/Office/Word/WordEditArea.htm"
  9324. })
  9325. _box.appendChild(_iframe);
  9326. _box.appendChild(_jie);
  9327. _formdiv = new U.UF.UI.form(
  9328. "协同文档",
  9329. _box, {
  9330. "id": "docs" + cid + stage + task + tool,
  9331. "style": {
  9332. "width": "90%",
  9333. "height": "90%",
  9334. "overflow": 'hidden'
  9335. },
  9336. "onresize": function () { }
  9337. }, {
  9338. closecallback: function () { }
  9339. }, {
  9340. "style": {
  9341. "height": "36px"
  9342. }
  9343. }).form; //创建窗体
  9344. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9345. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9346. })
  9347. _taskbar = {
  9348. "id": str + _formdiv.id,
  9349. "style": {
  9350. "backgroundImage": "url(/img/icon/doc.png)"
  9351. },
  9352. "name": "协同文档",
  9353. "forms": _formdiv,
  9354. "click": function () {
  9355. U.MD.D.I.openApplication(str, obj, info);
  9356. }
  9357. }
  9358. break;
  9359. }
  9360. const script1 = document.createElement("script");
  9361. script1.type = "text/javascript";
  9362. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9363. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9364. const script2 = document.createElement("script");
  9365. script2.type = "text/javascript";
  9366. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9367. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9368. const script3 = document.createElement("script");
  9369. script3.type = "text/javascript";
  9370. script3.charset = "UTF-8";
  9371. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9372. const script4 = document.createElement("script");
  9373. script4.type = "text/javascript";
  9374. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9375. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9376. if (_iframe) {
  9377. if (str == 'doc') {
  9378. _iframe = _formdiv.querySelector('iframe')
  9379. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9380. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9381. _iframe.contentWindow.document.body.appendChild(script1);
  9382. _iframe.contentWindow.document.body.appendChild(script2);
  9383. // _iframe.contentWindow.document.body.appendChild(script3);
  9384. _iframe.contentWindow.document.body.appendChild(script4);
  9385. })
  9386. if (onloadListener) {
  9387. _iframe.contentDocument.location.reload()
  9388. } else {
  9389. _iframe.contentDocument.location.reload()
  9390. }
  9391. } else if (str == 'mind') {
  9392. _iframe = _formdiv.querySelector('iframe')
  9393. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9394. _iframe.contentWindow.document.body.appendChild(script1);
  9395. _iframe.contentWindow.document.body.appendChild(script2);
  9396. _iframe.contentWindow.document.body.appendChild(script4);
  9397. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9398. })
  9399. if (onloadListener) {
  9400. _iframe.contentDocument.location.reload()
  9401. } else {
  9402. _iframe.contentDocument.location.reload()
  9403. }
  9404. } else {
  9405. _iframe.onload = () => {
  9406. _iframe.contentWindow.document.body.appendChild(script1);
  9407. _iframe.contentWindow.document.body.appendChild(script2);
  9408. // _iframe.contentWindow.document.body.appendChild(script3);
  9409. _iframe.contentWindow.document.body.appendChild(script4);
  9410. };
  9411. }
  9412. _jie.onclick = async () => {
  9413. let text = ''
  9414. if (aTool == 6) {
  9415. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9416. } else if (aTool == 3) {
  9417. text = await U.MD.D.I.getEditorContent(_iframe);
  9418. }
  9419. _loading.style.display = 'flex'
  9420. console.log(_loading);
  9421. var _ajs = _iframe.contentWindow.document.createElement("script");
  9422. _ajs.type = "text/javascript";
  9423. _ajs.innerHTML =
  9424. // 'console.log(' + _loading + ');\n' +
  9425. 'var _js = document.createElement("script");\n' +
  9426. '_js.type="text/javascript";\n' +
  9427. '_js.charset="UTF-8";\n' +
  9428. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9429. "_js.onload = function(){\n" +
  9430. ' var a = document.getElementsByTagName("img")\n' +
  9431. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9432. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9433. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9434. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9435. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9436. "beforeUpload_shishi(file," +
  9437. "'" +
  9438. _userid +
  9439. "'" +
  9440. ", " +
  9441. "'" +
  9442. _cid +
  9443. "'" +
  9444. ", " +
  9445. "'" +
  9446. _stage +
  9447. "'" +
  9448. ", " +
  9449. "'" +
  9450. _task +
  9451. "'" +
  9452. ", " +
  9453. "'" +
  9454. _tool +
  9455. "'" +
  9456. ", " +
  9457. "'" +
  9458. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9459. "'" +
  9460. ", " +
  9461. "'" +
  9462. aTool +
  9463. "'" +
  9464. ", " +
  9465. "`" +
  9466. text +
  9467. "`" +
  9468. ")\n" +
  9469. " });\n" +
  9470. "}\n" +
  9471. "document.head.appendChild(_js);\n";
  9472. _iframe.contentWindow.document.head.appendChild(_ajs);
  9473. }
  9474. }
  9475. //U.MD.D.I.openClick(str);
  9476. //如果有任务栏信息
  9477. // if (_taskbar) {
  9478. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9479. // }
  9480. }
  9481. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9482. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9483. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9484. _userinfo = US.userInfo, //登录用户信息
  9485. _userid = US.userInfo.userid //登录用户id
  9486. let _iframe;
  9487. let _cid = cid,
  9488. _stage = stage,
  9489. _task = task,
  9490. _tool = tool;
  9491. var _jie = $$("div", {
  9492. "style": {
  9493. "position": "absolute",
  9494. "bottom": "50px",
  9495. "right": "50px",
  9496. "zIndex": "9999",
  9497. "backgroundColor": "#2268bc",
  9498. "color": "#fff",
  9499. "padding": "12px 20px",
  9500. "cursor": "pointer",
  9501. "borderRadius": "4px",
  9502. },
  9503. "innerHTML": "确认并提交"
  9504. })
  9505. let aTool = ''
  9506. let _loading = document.createElement('div')
  9507. _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;"
  9508. // _loading.id = "";
  9509. let _lchild = document.createElement('div')
  9510. let _limg = document.createElement('img')
  9511. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9512. _limg.style = "width: 26px;margin-right: 10px;"
  9513. _lchild.appendChild(_limg)
  9514. let _lspan = document.createElement('span')
  9515. _lspan.innerHTML = "上传中..."
  9516. _lchild.appendChild(_lspan)
  9517. _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%);"
  9518. _loading.appendChild(_lchild)
  9519. var _box = $$('div', {
  9520. "style": {
  9521. "position": "relative",
  9522. "width": "100%",
  9523. "height": "100%",
  9524. },
  9525. })
  9526. _box.appendChild(_loading)
  9527. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9528. switch (str) {
  9529. case "whiteboard":
  9530. aTool = 1;
  9531. _iframe = $$("iframe", {
  9532. "frameborder": "no",
  9533. "border": "0",
  9534. "scrolling ": "no",
  9535. "style": {
  9536. "cssText": "border:0;width:100%;height:100%"
  9537. },
  9538. "src": "https://beta.iwb.cocorobo.cn/"
  9539. })
  9540. _box.appendChild(_iframe);
  9541. _box.appendChild(_jie);
  9542. _formdiv = new U.UF.UI.form(
  9543. "电子白板",
  9544. _box, {
  9545. "id": "whiteboards" + cid + stage + task + tool,
  9546. "style": {
  9547. "width": "90%",
  9548. "height": "90%",
  9549. "overflow": 'hidden'
  9550. },
  9551. "onresize": function () { }
  9552. }, {
  9553. closecallback: function () { }
  9554. }, {
  9555. "style": {
  9556. "height": "36px"
  9557. }
  9558. }).form; //创建窗体
  9559. _taskbar = {
  9560. "id": str + _formdiv.id,
  9561. "style": {
  9562. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9563. },
  9564. "name": "电子白板",
  9565. "forms": _formdiv,
  9566. "click": function () {
  9567. U.MD.D.I.openApplication(str, obj, info);
  9568. }
  9569. }
  9570. break;
  9571. case "mind":
  9572. aTool = 3;
  9573. _iframe = $$("iframe", {
  9574. "frameborder": "no",
  9575. "border": "0",
  9576. "scrolling ": "no",
  9577. "style": {
  9578. "cssText": "border:0;width:100%;height:100%"
  9579. },
  9580. "src": "/kityminder-editor/dist/index.html"
  9581. });
  9582. _box.appendChild(_iframe);
  9583. _box.appendChild(_jie);
  9584. _formdiv = new U.UF.UI.form(
  9585. "思维导图",
  9586. _box, { //"/jsmind/example/demo.html"
  9587. "id": "minds" + cid + stage + task + tool,
  9588. "style": {
  9589. "width": "90%",
  9590. "height": "90%",
  9591. "overflow": 'hidden'
  9592. },
  9593. "onresize": function () { }
  9594. }, {
  9595. closecallback: function () { }
  9596. }, {
  9597. "style": {
  9598. "height": "36px"
  9599. }
  9600. }).form; //创建窗体
  9601. _taskbar = {
  9602. "id": str + _formdiv.id,
  9603. "style": {
  9604. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9605. },
  9606. "name": "思维导图",
  9607. "forms": _formdiv,
  9608. "click": function () {
  9609. U.MD.D.I.openApplication(str, obj, info);
  9610. }
  9611. }
  9612. break;
  9613. case "doc":
  9614. aTool = 6;
  9615. _iframe = $$("iframe", {
  9616. "frameborder": "no",
  9617. "border": "0",
  9618. "scrolling ": "no",
  9619. "style": {
  9620. "cssText": "border:0;width:100%;height:100%"
  9621. },
  9622. "src": "/Office/Word/WordEditArea.htm"
  9623. })
  9624. _box.appendChild(_iframe);
  9625. _box.appendChild(_jie);
  9626. _formdiv = new U.UF.UI.form(
  9627. "协同文档",
  9628. _box, {
  9629. "id": "docs" + cid + stage + task + tool,
  9630. "style": {
  9631. "width": "90%",
  9632. "height": "90%",
  9633. "overflow": 'hidden'
  9634. },
  9635. "onresize": function () { }
  9636. }, {
  9637. closecallback: function () { }
  9638. }, {
  9639. "style": {
  9640. "height": "36px"
  9641. }
  9642. }).form; //创建窗体
  9643. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9644. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9645. })
  9646. _taskbar = {
  9647. "id": str + _formdiv.id,
  9648. "style": {
  9649. "backgroundImage": "url(/img/icon/doc.png)"
  9650. },
  9651. "name": "协同文档",
  9652. "forms": _formdiv,
  9653. "click": function () {
  9654. U.MD.D.I.openApplication(str, obj, info);
  9655. }
  9656. }
  9657. break;
  9658. }
  9659. const script1 = document.createElement("script");
  9660. script1.type = "text/javascript";
  9661. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9662. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9663. const script2 = document.createElement("script");
  9664. script2.type = "text/javascript";
  9665. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9666. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9667. const script3 = document.createElement("script");
  9668. script3.type = "text/javascript";
  9669. script3.charset = "UTF-8";
  9670. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9671. const script4 = document.createElement("script");
  9672. script4.type = "text/javascript";
  9673. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9674. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9675. if (_iframe) {
  9676. if (str == 'doc') {
  9677. _iframe = _formdiv.querySelector('iframe')
  9678. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9679. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9680. _iframe.contentWindow.document.body.appendChild(script1);
  9681. _iframe.contentWindow.document.body.appendChild(script2);
  9682. // _iframe.contentWindow.document.body.appendChild(script3);
  9683. _iframe.contentWindow.document.body.appendChild(script4);
  9684. })
  9685. if (onloadListener) {
  9686. _iframe.contentDocument.location.reload()
  9687. } else {
  9688. _iframe.contentDocument.location.reload()
  9689. }
  9690. } else if (str == 'mind') {
  9691. _iframe = _formdiv.querySelector('iframe')
  9692. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9693. _iframe.contentWindow.document.body.appendChild(script1);
  9694. _iframe.contentWindow.document.body.appendChild(script2);
  9695. _iframe.contentWindow.document.body.appendChild(script4);
  9696. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9697. })
  9698. if (onloadListener) {
  9699. _iframe.contentDocument.location.reload()
  9700. } else {
  9701. _iframe.contentDocument.location.reload()
  9702. }
  9703. } else {
  9704. _iframe.onload = () => {
  9705. _iframe.contentWindow.document.body.appendChild(script1);
  9706. _iframe.contentWindow.document.body.appendChild(script2);
  9707. // _iframe.contentWindow.document.body.appendChild(script3);
  9708. _iframe.contentWindow.document.body.appendChild(script4);
  9709. };
  9710. }
  9711. _jie.onclick = async () => {
  9712. let text = ''
  9713. if (aTool == 6) {
  9714. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9715. } else if (aTool == 3) {
  9716. text = await U.MD.D.I.getEditorContent(_iframe);
  9717. }
  9718. _loading.style.display = 'flex'
  9719. console.log(_loading);
  9720. var _ajs = _iframe.contentWindow.document.createElement("script");
  9721. _ajs.type = "text/javascript";
  9722. _ajs.innerHTML =
  9723. // 'console.log(' + _loading + ');\n' +
  9724. 'var _js = document.createElement("script");\n' +
  9725. '_js.type="text/javascript";\n' +
  9726. '_js.charset="UTF-8";\n' +
  9727. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9728. "_js.onload = function(){\n" +
  9729. ' var a = document.getElementsByTagName("img")\n' +
  9730. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9731. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9732. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9733. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9734. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9735. "beforeUpload_shishi(file," +
  9736. "'" +
  9737. _userid +
  9738. "'" +
  9739. ", " +
  9740. "'" +
  9741. _cid +
  9742. "'" +
  9743. ", " +
  9744. "'" +
  9745. _stage +
  9746. "'" +
  9747. ", " +
  9748. "'" +
  9749. _task +
  9750. "'" +
  9751. ", " +
  9752. "'" +
  9753. _tool +
  9754. "'" +
  9755. ", " +
  9756. "'" +
  9757. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9758. "'" +
  9759. ", " +
  9760. "'" +
  9761. aTool +
  9762. "'" +
  9763. ", " +
  9764. "`" +
  9765. text +
  9766. "`" +
  9767. ")\n" +
  9768. " });\n" +
  9769. "}\n" +
  9770. "document.head.appendChild(_js);\n";
  9771. _iframe.contentWindow.document.head.appendChild(_ajs);
  9772. }
  9773. }
  9774. //U.MD.D.I.openClick(str);
  9775. //如果有任务栏信息
  9776. // if (_taskbar) {
  9777. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9778. // }
  9779. }
  9780. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9781. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9782. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9783. _userinfo = US.userInfo, //登录用户信息
  9784. _userid = US.userInfo.userid //登录用户id
  9785. let _iframe;
  9786. let _cid = cid,
  9787. _stage = stage,
  9788. _task = task,
  9789. _tool = tool;
  9790. var _jie = $$("div", {
  9791. "style": {
  9792. "position": "absolute",
  9793. "bottom": "50px",
  9794. "right": "50px",
  9795. "zIndex": "9999",
  9796. "backgroundColor": "#2268bc",
  9797. "color": "#fff",
  9798. "padding": "12px 20px",
  9799. "cursor": "pointer",
  9800. "borderRadius": "4px",
  9801. },
  9802. "innerHTML": "上传模板"
  9803. })
  9804. let aTool = ''
  9805. let _loading = document.createElement('div')
  9806. _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;"
  9807. // _loading.id = "";
  9808. let _lchild = document.createElement('div')
  9809. let _limg = document.createElement('img')
  9810. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9811. _limg.style = "width: 26px;margin-right: 10px;"
  9812. _lchild.appendChild(_limg)
  9813. let _lspan = document.createElement('span')
  9814. _lspan.innerHTML = "上传中..."
  9815. _lchild.appendChild(_lspan)
  9816. _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%);"
  9817. _loading.appendChild(_lchild)
  9818. var _box = $$('div', {
  9819. "style": {
  9820. "position": "relative",
  9821. "width": "100%",
  9822. "height": "100%",
  9823. },
  9824. })
  9825. _box.appendChild(_loading)
  9826. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9827. switch (str) {
  9828. case "whiteboard":
  9829. aTool = 1;
  9830. _iframe = $$("iframe", {
  9831. "frameborder": "no",
  9832. "border": "0",
  9833. "scrolling ": "no",
  9834. "style": {
  9835. "cssText": "border:0;width:100%;height:100%"
  9836. },
  9837. "src": "https://beta.iwb.cocorobo.cn/"
  9838. })
  9839. _box.appendChild(_iframe);
  9840. _box.appendChild(_jie);
  9841. _formdiv = new U.UF.UI.form(
  9842. "电子白板",
  9843. _box, {
  9844. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9845. "style": {
  9846. "width": "90%",
  9847. "height": "90%",
  9848. "overflow": 'hidden'
  9849. },
  9850. "onresize": function () { }
  9851. }, {
  9852. closecallback: function () { }
  9853. }, {
  9854. "style": {
  9855. "height": "36px"
  9856. }
  9857. }).form; //创建窗体
  9858. _taskbar = {
  9859. "id": str + _formdiv.id,
  9860. "style": {
  9861. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9862. },
  9863. "name": "电子白板",
  9864. "forms": _formdiv,
  9865. "click": function () {
  9866. U.MD.D.I.openApplication(str, obj, info);
  9867. }
  9868. }
  9869. break;
  9870. case "mind":
  9871. aTool = 3;
  9872. _iframe = $$("iframe", {
  9873. "frameborder": "no",
  9874. "border": "0",
  9875. "scrolling ": "no",
  9876. "style": {
  9877. "cssText": "border:0;width:100%;height:100%"
  9878. },
  9879. "src": "/kityminder-editor/dist/index.html"
  9880. });
  9881. _box.appendChild(_iframe);
  9882. _box.appendChild(_jie);
  9883. _formdiv = new U.UF.UI.form(
  9884. "思维导图",
  9885. _box, { //"/jsmind/example/demo.html"
  9886. "id": "minds_Yu" + cid + stage + task + tool,
  9887. "style": {
  9888. "width": "90%",
  9889. "height": "90%",
  9890. "overflow": 'hidden'
  9891. },
  9892. "onresize": function () { }
  9893. }, {
  9894. closecallback: function () { }
  9895. }, {
  9896. "style": {
  9897. "height": "36px"
  9898. }
  9899. }).form; //创建窗体
  9900. _taskbar = {
  9901. "id": str + _formdiv.id,
  9902. "style": {
  9903. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9904. },
  9905. "name": "思维导图",
  9906. "forms": _formdiv,
  9907. "click": function () {
  9908. U.MD.D.I.openApplication(str, obj, info);
  9909. }
  9910. }
  9911. break;
  9912. case "doc":
  9913. aTool = 6;
  9914. _iframe = $$("iframe", {
  9915. "frameborder": "no",
  9916. "border": "0",
  9917. "scrolling ": "no",
  9918. "style": {
  9919. "cssText": "border:0;width:100%;height:100%"
  9920. },
  9921. "src": "/Office/Word/WordEditArea.htm"
  9922. })
  9923. _box.appendChild(_iframe);
  9924. _box.appendChild(_jie);
  9925. _formdiv = new U.UF.UI.form(
  9926. "协同文档",
  9927. _box, {
  9928. "id": "docs_Yu" + cid + stage + task + tool,
  9929. "style": {
  9930. "width": "90%",
  9931. "height": "90%",
  9932. "overflow": 'hidden'
  9933. },
  9934. "onresize": function () { }
  9935. }, {
  9936. closecallback: function () { }
  9937. }, {
  9938. "style": {
  9939. "height": "36px"
  9940. }
  9941. }).form; //创建窗体
  9942. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9943. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9944. })
  9945. _taskbar = {
  9946. "id": str + _formdiv.id,
  9947. "style": {
  9948. "backgroundImage": "url(/img/icon/doc.png)"
  9949. },
  9950. "name": "协同文档",
  9951. "forms": _formdiv,
  9952. "click": function () {
  9953. U.MD.D.I.openApplication(str, obj, info);
  9954. }
  9955. }
  9956. break;
  9957. case "CocoPi":
  9958. aTool = 57;
  9959. _iframe = $$("iframe", {
  9960. "allowpaymentrequest": "allowpaymentrequest",
  9961. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9962. "webkitallowfullscreen": "",
  9963. "mozallowfullscreen": "",
  9964. "frameborder": "no",
  9965. "border": "0",
  9966. "scrolling ": "no",
  9967. "style": {
  9968. "cssText": "border:0;width:100%;height:100%"
  9969. },
  9970. "src": "https://pi.cocorobo.cn/"
  9971. })
  9972. _box.appendChild(_iframe);
  9973. _box.appendChild(_jie);
  9974. _formdiv = new U.UF.UI.form(
  9975. "CocoPi",
  9976. _box, {
  9977. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9978. "style": {
  9979. "width": "90%",
  9980. "height": "90%",
  9981. "overflow": 'hidden'
  9982. },
  9983. "onresize": function () { }
  9984. }, {
  9985. closecallback: function () { }
  9986. }, {
  9987. "style": {
  9988. "height": "36px"
  9989. }
  9990. }).form; //创建窗体
  9991. _taskbar = {
  9992. "id": str + _formdiv.id,
  9993. "style": {
  9994. "backgroundImage": "url(/img/icon/cocopi.png)"
  9995. },
  9996. "name": "CocoPi",
  9997. "forms": _formdiv,
  9998. "click": function () {
  9999. U.MD.D.I.openApplication(str, obj, info);
  10000. }
  10001. }
  10002. break;
  10003. }
  10004. if (_iframe) {
  10005. if (str == 'doc') {
  10006. _iframe = _formdiv.querySelector('iframe')
  10007. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10008. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10009. })
  10010. if (onloadListener) {
  10011. _iframe.contentDocument.location.reload()
  10012. } else {
  10013. _iframe.contentDocument.location.reload()
  10014. }
  10015. } else if (str == 'mind') {
  10016. _iframe = _formdiv.querySelector('iframe')
  10017. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10018. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10019. })
  10020. if (onloadListener) {
  10021. _iframe.contentDocument.location.reload()
  10022. } else {
  10023. _iframe.contentDocument.location.reload()
  10024. }
  10025. } else if (str == 'whiteboard') {
  10026. _iframe = _formdiv.querySelector('iframe')
  10027. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10028. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10029. })
  10030. // if (onloadListener) {
  10031. // try {
  10032. // _iframe.src += "?cocorobo="+new Date().getTime()
  10033. // _iframe.contentWindow.document.location.reload()
  10034. // } catch (error) {
  10035. // }
  10036. // } else {
  10037. // _iframe.contentDocument.location.reload()
  10038. // }
  10039. } else if (str == 'CocoPi') {
  10040. _iframe = _formdiv.querySelector('iframe')
  10041. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10042. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10043. })
  10044. if (onloadListener) {
  10045. _iframe.contentDocument.location.reload()
  10046. } else {
  10047. _iframe.contentDocument.location.reload()
  10048. }
  10049. } else {
  10050. _iframe.onload = () => { };
  10051. }
  10052. _jie.onclick = async () => {
  10053. let text = ''
  10054. let type = '2'
  10055. if (aTool == 1) {
  10056. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10057. type = '3'
  10058. } else if (aTool == 6) {
  10059. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10060. type = '1'
  10061. } else if (aTool == 3) {
  10062. text = await U.MD.D.I.getEditorContent(_iframe);
  10063. type = '2'
  10064. } else if (aTool == 57) {
  10065. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10066. type = '4'
  10067. }
  10068. _loading.style.display = 'flex'
  10069. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10070. }
  10071. }
  10072. //U.MD.D.I.openClick(str);
  10073. //如果有任务栏信息
  10074. // if (_taskbar) {
  10075. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10076. // }
  10077. }
  10078. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10079. var xmlhttp;
  10080. var Mac, Sn, DeviceId
  10081. if (window.XMLHttpRequest) {
  10082. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10083. xmlhttp = new XMLHttpRequest();
  10084. } else {
  10085. // IE6, IE5 浏览器执行代码
  10086. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10087. }
  10088. xmlhttp.onreadystatechange = function () {
  10089. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10090. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10091. // resolve(res.value[0][0].text);
  10092. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10093. }
  10094. }
  10095. }
  10096. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10097. xmlhttp.send();
  10098. }
  10099. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10100. var xmlhttp;
  10101. var Mac, Sn, DeviceId
  10102. if (window.XMLHttpRequest) {
  10103. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10104. xmlhttp = new XMLHttpRequest();
  10105. } else {
  10106. // IE6, IE5 浏览器执行代码
  10107. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10108. }
  10109. xmlhttp.onreadystatechange = function () {
  10110. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10111. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10112. // resolve(res.value[0][0].text);
  10113. if (type == '2') {
  10114. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10115. } else if (type == '3') {
  10116. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10117. } else if (type == '4') {
  10118. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10119. }
  10120. } else {
  10121. if (type == '2') {
  10122. iframe.contentWindow.editor.minder.importData('json', '')
  10123. } else if (type == '3') {
  10124. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10125. } else if (type == '4') {
  10126. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10127. }
  10128. }
  10129. }
  10130. }
  10131. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10132. xmlhttp.send();
  10133. }
  10134. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10135. var xmlhttp;
  10136. var Mac, Sn, DeviceId
  10137. if (window.XMLHttpRequest) {
  10138. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10139. xmlhttp = new XMLHttpRequest();
  10140. } else {
  10141. // IE6, IE5 浏览器执行代码
  10142. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10143. }
  10144. xmlhttp.onreadystatechange = function () {
  10145. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10146. if (xmlhttp.response) {
  10147. // resolve(res.value[0][0].text);
  10148. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10149. // $(fileInput).val('');
  10150. // });
  10151. span.innerHTML = '上传成功'
  10152. setTimeout(() => {
  10153. loading.style.display = 'none'
  10154. }, 1000);
  10155. }
  10156. }
  10157. }
  10158. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10159. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10160. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10161. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10162. // 设置请求头,表示请求体的编码格式
  10163. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10164. // 设置请求体,使用url-encoded格式的数据
  10165. }
  10166. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10167. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10168. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10169. _userinfo = US.userInfo, //登录用户信息
  10170. _userid = US.userInfo.userid //登录用户id
  10171. let _iframe;
  10172. let _cid = cid,
  10173. _stage = stage,
  10174. _task = task,
  10175. _tool = tool;
  10176. var _jie = $$("div", {
  10177. "style": {
  10178. "position": "absolute",
  10179. "bottom": "50px",
  10180. "right": "50px",
  10181. "zIndex": "9999",
  10182. "backgroundColor": "#2268bc",
  10183. "color": "#fff",
  10184. "padding": "12px 20px",
  10185. "cursor": "pointer",
  10186. "borderRadius": "4px",
  10187. },
  10188. "innerHTML": "提交作业"
  10189. })
  10190. let aTool = ''
  10191. let _loading = document.createElement('div')
  10192. _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;"
  10193. // _loading.id = "";
  10194. let _lchild = document.createElement('div')
  10195. let _limg = document.createElement('img')
  10196. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10197. _limg.style = "width: 26px;margin-right: 10px;"
  10198. _lchild.appendChild(_limg)
  10199. let _lspan = document.createElement('span')
  10200. _lspan.innerHTML = "上传中..."
  10201. _lchild.appendChild(_lspan)
  10202. _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%);"
  10203. _loading.appendChild(_lchild)
  10204. var _box = $$('div', {
  10205. "style": {
  10206. "position": "relative",
  10207. "width": "100%",
  10208. "height": "100%",
  10209. },
  10210. })
  10211. _box.appendChild(_loading)
  10212. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10213. switch (str) {
  10214. case "CocoPi":
  10215. aTool = 57;
  10216. _iframe = $$("iframe", {
  10217. "allowpaymentrequest": "allowpaymentrequest",
  10218. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10219. "webkitallowfullscreen": "",
  10220. "mozallowfullscreen": "",
  10221. "frameborder": "no",
  10222. "border": "0",
  10223. "scrolling ": "no",
  10224. "style": {
  10225. "cssText": "border:0;width:100%;height:100%"
  10226. },
  10227. "src": "https://pi.cocorobo.cn/"
  10228. })
  10229. _box.appendChild(_iframe);
  10230. _box.appendChild(_jie);
  10231. _formdiv = new U.UF.UI.form(
  10232. "CocoPi",
  10233. _box, {
  10234. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10235. "style": {
  10236. "width": "90%",
  10237. "height": "90%",
  10238. "overflow": 'hidden'
  10239. },
  10240. "onresize": function () { }
  10241. }, {
  10242. closecallback: function () { }
  10243. }, {
  10244. "style": {
  10245. "height": "36px"
  10246. }
  10247. }).form; //创建窗体
  10248. _taskbar = {
  10249. "id": str + _formdiv.id,
  10250. "style": {
  10251. "backgroundImage": "url(/img/icon/cocopi.png)"
  10252. },
  10253. "name": "CocoPi",
  10254. "forms": _formdiv,
  10255. "click": function () {
  10256. U.MD.D.I.openApplication(str, obj, info);
  10257. }
  10258. }
  10259. break;
  10260. }
  10261. if (_iframe) {
  10262. if (str == 'CocoPi') {
  10263. _iframe = _formdiv.querySelector('iframe')
  10264. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10265. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10266. })
  10267. if (onloadListener) {
  10268. _iframe.contentDocument.location.reload()
  10269. } else {
  10270. _iframe.contentDocument.location.reload()
  10271. }
  10272. }
  10273. _jie.onclick = async () => {
  10274. let text = ''
  10275. if (aTool == 57) {
  10276. text = _iframe.contentWindow.getLoadXmlStr()
  10277. }
  10278. _loading.style.display = 'flex'
  10279. console.log(_loading);
  10280. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10281. _loading.style.display = 'none'
  10282. let _div = document.createElement('div')
  10283. _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;"
  10284. let _inner = document.createElement('div')
  10285. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10286. _inner.innerHTML = "上传成功"
  10287. _div.appendChild(_inner)
  10288. _iframe.contentWindow.window.document.body.appendChild(_div)
  10289. _div.onclick = () => {
  10290. _iframe.contentWindow.window.document.body.removeChild(_div)
  10291. }
  10292. setTimeout(() => {
  10293. _iframe.contentWindow.window.document.body.removeChild(_div)
  10294. }, 1000);
  10295. }, [], { "type": "POST", "withCredentials": true });
  10296. }
  10297. }
  10298. }
  10299. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10300. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10301. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10302. _userid = student.userid, //登录用户id
  10303. _username = student.student //用户名字
  10304. let _iframe;
  10305. let _cid = cid,
  10306. _stage = stage,
  10307. _task = task,
  10308. _tool = tool;
  10309. var _jie = $$("div", {
  10310. "style": {
  10311. "position": "absolute",
  10312. "bottom": "50px",
  10313. "right": "50px",
  10314. "zIndex": "9999",
  10315. "backgroundColor": "#2268bc",
  10316. "color": "#fff",
  10317. "padding": "12px 20px",
  10318. "cursor": "pointer",
  10319. "borderRadius": "4px",
  10320. },
  10321. "innerHTML": "提交作业"
  10322. })
  10323. let aTool = ''
  10324. let _loading = document.createElement('div')
  10325. _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;"
  10326. // _loading.id = "";
  10327. let _lchild = document.createElement('div')
  10328. let _limg = document.createElement('img')
  10329. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10330. _limg.style = "width: 26px;margin-right: 10px;"
  10331. _lchild.appendChild(_limg)
  10332. let _lspan = document.createElement('span')
  10333. _lspan.innerHTML = "上传中..."
  10334. _lchild.appendChild(_lspan)
  10335. _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%);"
  10336. _loading.appendChild(_lchild)
  10337. var _box = $$('div', {
  10338. "style": {
  10339. "position": "relative",
  10340. "width": "100%",
  10341. "height": "100%",
  10342. },
  10343. })
  10344. _box.appendChild(_loading)
  10345. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10346. switch (str) {
  10347. case "CocoPi":
  10348. aTool = 57;
  10349. _iframe = $$("iframe", {
  10350. "allowpaymentrequest": "allowpaymentrequest",
  10351. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10352. "webkitallowfullscreen": "",
  10353. "mozallowfullscreen": "",
  10354. "frameborder": "no",
  10355. "border": "0",
  10356. "scrolling ": "no",
  10357. "style": {
  10358. "cssText": "border:0;width:100%;height:100%"
  10359. },
  10360. "src": "https://pi.cocorobo.cn/"
  10361. })
  10362. _box.appendChild(_iframe);
  10363. _box.appendChild(_jie);
  10364. _formdiv = new U.UF.UI.form(
  10365. "CocoPi-" + _username,
  10366. _box, {
  10367. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10368. "style": {
  10369. "width": "90%",
  10370. "height": "90%",
  10371. "overflow": 'hidden'
  10372. },
  10373. "onresize": function () { }
  10374. }, {
  10375. closecallback: function () { }
  10376. }, {
  10377. "style": {
  10378. "height": "36px"
  10379. }
  10380. }).form; //创建窗体
  10381. _taskbar = {
  10382. "id": str + _formdiv.id,
  10383. "style": {
  10384. "backgroundImage": "url(/img/icon/cocopi.png)"
  10385. },
  10386. "name": "CocoPi",
  10387. "forms": _formdiv,
  10388. "click": function () {
  10389. U.MD.D.I.openApplication(str, obj, info);
  10390. }
  10391. }
  10392. break;
  10393. }
  10394. if (_iframe) {
  10395. if (str == 'CocoPi') {
  10396. _iframe = _formdiv.querySelector('iframe')
  10397. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10398. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10399. })
  10400. if (onloadListener) {
  10401. _iframe.contentDocument.location.reload()
  10402. } else {
  10403. _iframe.contentDocument.location.reload()
  10404. }
  10405. }
  10406. _jie.onclick = async () => {
  10407. let text = ''
  10408. if (aTool == 57) {
  10409. text = _iframe.contentWindow.getLoadXmlStr()
  10410. }
  10411. _loading.style.display = 'flex'
  10412. console.log(_loading);
  10413. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10414. _loading.style.display = 'none'
  10415. let _div = document.createElement('div')
  10416. _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;"
  10417. let _inner = document.createElement('div')
  10418. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10419. _inner.innerHTML = "上传成功"
  10420. _div.appendChild(_inner)
  10421. _iframe.contentWindow.window.document.body.appendChild(_div)
  10422. _div.onclick = () => {
  10423. _iframe.contentWindow.window.document.body.removeChild(_div)
  10424. }
  10425. setTimeout(() => {
  10426. _iframe.contentWindow.window.document.body.removeChild(_div)
  10427. }, 1000);
  10428. }, [], { "type": "POST", "withCredentials": true });
  10429. }
  10430. }
  10431. }
  10432. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10433. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10434. if (res.value[0].length > 0) {
  10435. if (atool == 57) {
  10436. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10437. }
  10438. } else {
  10439. if (atool == 57) {
  10440. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10441. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10442. }
  10443. }
  10444. }, [], { "type": "POST", "withCredentials": true });
  10445. }