DeskTop.js 698 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071
  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. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  215. ];
  216. U.MD.D.I.szulsDeskIcon = [
  217. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  218. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  219. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  220. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  221. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  222. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  223. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  224. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  225. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  226. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  227. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  228. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  229. ];
  230. U.MD.D.I.hanDeskIcon = [
  231. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  232. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  233. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  234. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  235. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  236. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  237. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  238. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  239. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  240. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  241. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  242. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  243. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  244. ];
  245. U.MD.D.I.GMteacherDeskIcon = [
  246. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  247. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  248. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  249. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  250. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  251. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  252. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  253. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  254. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  255. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  256. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  257. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  258. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  259. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  260. ];
  261. U.MD.D.I.GMstudentDeskIcon = [
  262. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  263. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  264. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  265. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  266. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  267. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  268. ];
  269. //松山湖
  270. U.MD.D.I.SONGteacherDeskIcon = [
  271. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  272. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  273. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  274. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  275. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  276. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  277. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  278. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  279. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  280. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  281. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  282. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  283. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  284. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  285. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  286. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  287. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  288. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  289. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  290. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  291. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  292. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  293. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  294. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  295. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  296. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  297. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  298. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  299. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  300. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  301. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  302. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  303. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  304. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  305. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  306. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  307. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  308. ];
  309. U.MD.D.I.tcStudentDeskIcon = [
  310. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  311. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  312. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  313. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  314. ];
  315. U.MD.D.I.tcTeacherDeskIcon = [
  316. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  317. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  318. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  319. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  320. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  321. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  322. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  323. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  324. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  325. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  326. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  327. ];
  328. U.MD.D.I.tcOrganizerDeskIcon = [
  329. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  330. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  331. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  332. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  333. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  334. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  335. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  336. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  337. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  338. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  339. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  340. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  341. ];
  342. U.MD.D.I.szscStudentDeskIcon = [
  343. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  344. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  345. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  346. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  347. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  348. ];
  349. U.MD.D.I.szscTeacherDeskIcon = [
  350. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  351. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  352. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  353. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  354. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  355. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  356. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  357. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  358. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  359. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  360. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  361. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  362. ];
  363. U.MD.D.I.szscOrganizerDeskIcon = [
  364. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  365. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  366. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  367. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  368. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  369. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  370. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  371. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  372. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  373. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  374. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  375. ];
  376. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  377. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  378. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  379. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  380. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  381. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  382. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  383. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  384. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  385. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  386. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  387. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  388. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  389. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  390. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  391. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  392. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  393. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  394. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  395. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  396. ];
  397. U.MD.D.I.wankeAdminDeskIcon = [
  398. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  399. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  400. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  401. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  402. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  403. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  404. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  405. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  406. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  407. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  408. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  409. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  410. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  411. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  412. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  413. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  414. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  415. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  416. ];
  417. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  418. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  419. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  420. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  421. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  422. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  423. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  424. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  425. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  426. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  427. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  428. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  429. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  430. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  431. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  432. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  433. ];
  434. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  435. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  436. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  437. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  438. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  439. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  440. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  441. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  442. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  443. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  444. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  445. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  446. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  447. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  448. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  449. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  450. ];
  451. //明德教师桌面图标的全局变量
  452. U.MD.D.I.MingdeTeacherDeskIcon = [
  453. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  454. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  455. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  456. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  457. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  458. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  459. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  460. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  461. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  462. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  463. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  464. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  465. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  466. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  467. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  468. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  469. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  470. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  471. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  472. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  473. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  474. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  475. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  476. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  477. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  478. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  479. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  480. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  481. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  482. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  483. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  484. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  485. ];
  486. //97c4ee8b-d010-4042-986d-e9d3c217264f
  487. //教师桌面图标的全局变量
  488. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  489. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  490. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  491. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  492. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  493. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  494. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  495. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  496. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  497. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  498. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  499. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  500. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  501. ];
  502. //福田
  503. U.MD.D.I.futianTeacherDeskIcon = [
  504. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  505. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  506. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  507. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  508. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  509. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  510. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  511. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  512. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  513. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  514. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  515. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  516. ];
  517. //福田
  518. U.MD.D.I.futianAdminDeskIcon = [
  519. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  520. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  521. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  522. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  523. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  524. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  525. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  526. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  527. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  528. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  529. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  530. ];
  531. //lotech
  532. U.MD.D.I.lotechTeacherDeskIcon = [
  533. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  534. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  535. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  536. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  537. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  538. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  539. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  540. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  541. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  542. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  543. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  544. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  545. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  546. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  547. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  548. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  549. ];
  550. //龙华中心小学教师桌面图标的全局变量
  551. U.MD.D.I.longhuateacherDeskIcon = [
  552. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  553. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  554. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  555. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  556. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  557. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  558. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  559. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  560. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  561. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  562. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  563. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  564. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  565. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  566. ];
  567. //教科院实小教师桌面图标的全局变量
  568. U.MD.D.I.siesteacherDeskIcon = [
  569. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  570. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  571. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  572. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  573. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  574. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  575. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  576. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  577. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  578. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  579. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  580. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  581. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  582. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  583. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  584. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  585. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  587. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  588. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  589. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  590. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  591. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  592. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  593. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  594. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  595. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  596. ];
  597. //教科院实小教师桌面图标的全局变量
  598. U.MD.D.I.siesStudentDeskIcon = [
  599. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  600. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  601. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  602. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  603. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  604. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  605. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  606. ];
  607. //中山小学教师桌面图标的全局变量
  608. U.MD.D.I.guzmsteacherDeskIcon = [
  609. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  610. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  611. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  612. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  613. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  614. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  615. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  616. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  617. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  618. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  619. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  620. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  621. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  622. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  623. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  624. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  625. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  626. ];
  627. //中山小学学生桌面图标的全局变量
  628. U.MD.D.I.guzmsStudentDeskIcon = [
  629. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  630. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  631. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  632. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  633. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  634. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  635. ];
  636. //福田
  637. U.MD.D.I.gdjgTeacherDeskIcon = [
  638. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  639. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  640. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  641. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  642. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  643. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  644. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  645. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  646. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  647. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  648. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  649. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  650. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  651. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  652. ];
  653. //gdjg
  654. U.MD.D.I.gdjgAdminDeskIcon = [
  655. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  656. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  657. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  658. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  659. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  660. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  661. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  662. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  663. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  664. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  665. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  666. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  667. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  668. ];
  669. //hk
  670. U.MD.D.I.hkteacherDeskIcon = [
  671. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  672. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  673. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  674. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  675. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  676. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  677. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  678. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  679. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  680. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  681. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  682. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  683. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  684. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  685. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  686. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  687. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  688. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  689. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  690. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  691. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  692. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  693. ];
  694. //ricoh
  695. U.MD.D.I.ricohteacherDeskIcon = [
  696. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  697. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  698. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  699. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  700. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  701. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  702. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  703. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  704. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  705. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  706. ];
  707. //hk
  708. U.MD.D.I.hkStudentDeskIcon = [
  709. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  710. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  711. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  712. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  713. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  714. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  715. ];
  716. //hk
  717. U.MD.D.I.hkaceteacherDeskIcon = [
  718. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  719. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  720. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  721. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  722. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  723. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  724. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  725. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  726. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  727. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  728. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  729. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  730. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.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. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  735. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  736. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  737. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  738. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  739. ];
  740. //hk
  741. U.MD.D.I.hkaceStudentDeskIcon = [
  742. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  743. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  744. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  745. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  746. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  747. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  748. ];
  749. //香海正覺蓮社佛教正覺中學
  750. U.MD.D.I.hkZJLSteacherDeskIcon = [
  751. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  752. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  753. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  754. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  755. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  756. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  757. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  758. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  759. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  760. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  761. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  762. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  763. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  764. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  765. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  766. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  767. ];
  768. //香海正覺蓮社佛教正覺中學
  769. U.MD.D.I.hkZJLSStudentDeskIcon = [
  770. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  771. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  772. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  773. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  774. ];
  775. //云海
  776. U.MD.D.I.yunhaiTeacherDeskIcon = [
  777. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  778. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  779. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  780. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  781. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  782. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  783. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  784. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  785. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  786. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  787. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  788. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  789. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  790. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  791. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  792. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  793. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  794. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  795. ];
  796. //福田
  797. U.MD.D.I.heyuanTeacherDeskIcon = [
  798. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  799. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  800. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  801. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  802. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  803. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  804. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  805. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  806. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.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. //福田
  812. U.MD.D.I.heyuanAdminDeskIcon = [
  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": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  821. { "Name": "AI共创", "Url": "AIChat", "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. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  826. U.MD.D.I.szherTeacherDeskIcon = [
  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": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  830. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  831. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  832. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  833. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  834. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  835. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  836. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  837. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  838. ];
  839. //dsei
  840. U.MD.D.I.dseiTeacherDeskIcon = [
  841. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  842. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  843. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  844. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  845. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  846. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  847. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  848. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  849. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  850. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  851. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  852. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  853. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  854. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  855. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  856. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  857. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  858. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  859. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  860. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  861. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  862. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  863. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  864. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  865. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  866. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  867. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  868. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  869. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  870. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  871. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  872. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  873. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  874. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  875. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  876. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  877. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  878. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  879. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  880. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  881. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  882. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  883. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  884. ];
  885. //dsei
  886. U.MD.D.I.dseiAdminDeskIcon = [
  887. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  888. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  889. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  890. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  891. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  892. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  893. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  894. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  895. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  896. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  897. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  898. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  899. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  900. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  901. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  902. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  903. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  904. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  905. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  906. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  907. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  908. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  909. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  910. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  911. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  912. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  913. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  914. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  915. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  916. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  917. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  918. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  919. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  920. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  921. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  922. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  923. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  924. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  925. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  926. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  927. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  928. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  929. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  930. ];
  931. //dsei
  932. U.MD.D.I.dseiStudentDeskIcon = [
  933. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  934. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  935. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  936. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  937. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  938. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  939. ];
  940. //未来教育基地
  941. U.MD.D.I.szjkyTeacherDeskIcon = [
  942. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  943. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  944. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  945. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  946. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  947. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  948. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  949. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  950. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  951. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  952. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  953. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  954. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  955. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  956. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  957. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  958. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  959. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  960. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  961. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  962. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  963. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  964. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  965. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  966. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  967. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  968. ];
  969. //未来教育基地
  970. U.MD.D.I.szjkyAdminDeskIcon = [
  971. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  972. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  973. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  974. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  975. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  976. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  977. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  978. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  979. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  980. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  981. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  982. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  983. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  984. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  985. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  986. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  987. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  988. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  989. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  990. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  991. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  992. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  993. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  994. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  995. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  996. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  997. ];
  998. //未来教育基地
  999. U.MD.D.I.szjkyStudentDeskIcon = [
  1000. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1001. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1002. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1003. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1004. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1005. ];
  1006. //成华教育局
  1007. U.MD.D.I.chjyjTeacherDeskIcon = [
  1008. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1009. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1010. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1011. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1012. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1013. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1014. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1015. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1016. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1017. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1018. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1019. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1020. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1021. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1022. ];
  1023. //成华教育局chjyj
  1024. U.MD.D.I.chjyjAdminDeskIcon = [
  1025. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1026. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1027. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1028. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1029. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1030. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1031. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1032. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1033. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1034. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1035. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1036. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1037. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1038. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1039. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1040. ];
  1041. //成华教育局chjyj
  1042. U.MD.D.I.chjyjStudentDeskIcon = [
  1043. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1044. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1045. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1046. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1047. ];
  1048. //tpc
  1049. U.MD.D.I.tpcStudentDeskIcon = [
  1050. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1051. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1052. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1053. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1054. ];
  1055. //tpc
  1056. U.MD.D.I.tpcTeacherDeskIcon = [
  1057. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1058. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1059. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1060. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1061. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1062. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1063. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1064. ];
  1065. //tpc
  1066. U.MD.D.I.tpcAdminDeskIcon = [
  1067. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1068. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1069. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1070. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1071. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1072. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1073. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1074. ];
  1075. //THU-IOE
  1076. U.MD.D.I.thuioeTeacherDeskIcon = [
  1077. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1078. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1079. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1080. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1081. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1082. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1083. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1084. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1085. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1086. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1087. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1088. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1089. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1090. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1091. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1092. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1093. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1094. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1095. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1096. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1097. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1098. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1099. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1100. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1101. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1102. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1103. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1104. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1105. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1106. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1107. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1108. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1109. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1110. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1111. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1112. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1113. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1114. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1115. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1116. ];
  1117. //THU-IOE
  1118. U.MD.D.I.thuioeStudentDeskIcon = [
  1119. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1120. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1121. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1122. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1123. ];
  1124. //jccssyl
  1125. U.MD.D.I.jccssylTeacherDeskIcon = [
  1126. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1127. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1128. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1129. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1130. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1131. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1132. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1133. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1134. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1135. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1136. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1137. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1138. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1139. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1140. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1141. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1142. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1143. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1144. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1145. ];
  1146. //jccssyl
  1147. U.MD.D.I.jccssylStudentDeskIcon = [
  1148. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1149. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1150. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1151. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1152. ];
  1153. //cale
  1154. U.MD.D.I.caleTeacherDeskIcon = [
  1155. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1156. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1157. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1158. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1159. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1160. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1161. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1162. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1163. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1164. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1165. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1166. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1167. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1168. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1169. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1170. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1171. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1172. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1173. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1174. ];
  1175. //cale
  1176. U.MD.D.I.caleStudentDeskIcon = [
  1177. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1178. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1179. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1180. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1181. ];
  1182. //lqwmsgzs
  1183. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1184. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1185. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1186. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1187. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1188. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1189. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1190. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1191. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1192. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1193. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1194. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1195. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1196. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1197. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1198. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1199. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1200. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1201. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1202. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1203. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1204. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1205. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1206. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1207. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1208. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1209. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1210. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1211. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1212. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1213. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1214. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1215. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1216. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1217. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1218. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1219. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1220. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1221. ];
  1222. //lqwmsgzs
  1223. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1224. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1225. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1226. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1227. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1228. ];
  1229. //盐田区幼儿园
  1230. U.MD.D.I.ytyTeacherDeskIcon = [
  1231. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1232. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1233. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1234. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1235. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1236. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1237. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1238. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1239. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1240. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1242. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1243. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1244. ];
  1245. //盐田区幼儿园
  1246. U.MD.D.I.ytyStudentDeskIcon = [
  1247. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1248. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1249. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1250. ];
  1251. //scnuai
  1252. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1253. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1254. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1255. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1256. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1257. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1258. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1259. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1260. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1261. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1262. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1263. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1264. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1265. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1266. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1267. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1268. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1269. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1270. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1271. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1272. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1273. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1274. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1275. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1276. ];
  1277. //scnuai
  1278. U.MD.D.I.scnuaiAdminDeskIcon = [
  1279. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1280. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1281. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1282. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1283. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1284. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1285. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1286. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1287. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1288. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1289. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1290. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1291. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1292. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1293. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1294. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1295. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1296. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1297. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1298. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1299. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1300. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1301. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1302. ];
  1303. //scnuai
  1304. U.MD.D.I.scnuaiStudentDeskIcon = [
  1305. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1306. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1307. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1308. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1309. ];
  1310. //cocobiz
  1311. U.MD.D.I.cocobizteacherDeskIcon = [
  1312. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1313. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1314. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1315. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1316. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1317. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1318. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1319. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1320. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1321. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1322. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1323. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1324. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.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. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1329. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1330. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1331. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1332. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1333. ];
  1334. //cocobiz
  1335. U.MD.D.I.cocobizStudentDeskIcon = [
  1336. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1337. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1338. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1339. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1340. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1341. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1342. ];
  1343. //xxzjky
  1344. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1345. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1346. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1347. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1348. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1349. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1350. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1351. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1352. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1353. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1354. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1355. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1356. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1357. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.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. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1362. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1363. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1364. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1365. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1366. ];
  1367. //xxzjky
  1368. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1369. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1370. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1371. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1372. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1373. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1374. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1375. ];
  1376. //nsfx
  1377. U.MD.D.I.nsfxTeacherDeskIcon = [
  1378. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1379. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1380. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1381. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1382. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1383. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1384. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1385. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1386. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1387. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1388. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1389. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1390. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1391. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1392. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1393. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1394. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1395. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1396. ];
  1397. //nsfx
  1398. U.MD.D.I.nsfxStudentDeskIcon = [
  1399. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1400. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1401. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1402. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1403. ];
  1404. //stia
  1405. U.MD.D.I.stiaTeacherDeskIcon = [
  1406. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1407. // { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1408. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1409. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1410. // { "Name": "项目管理", "Url": "studentCourseS", "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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1413. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1414. // { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1415. // { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1416. // { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1417. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1418. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1419. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1420. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1421. ];
  1422. //stia
  1423. U.MD.D.I.stiaStudentDeskIcon = [
  1424. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1425. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1426. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1427. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1428. ];
  1429. //szdjg
  1430. U.MD.D.I.szdjgTeacherDeskIcon = [
  1431. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1432. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1433. ];
  1434. //szdjg
  1435. U.MD.D.I.szdjgStudentDeskIcon = [
  1436. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1437. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1438. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1439. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1440. ];
  1441. //010607
  1442. U.MD.D.I.x010607TeacherDeskIcon = [
  1443. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1444. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1445. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1446. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1447. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1448. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1449. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1450. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1451. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1452. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1453. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1454. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1455. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1456. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1457. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1458. ];
  1459. //010607
  1460. U.MD.D.I.x010607StudentDeskIcon = [
  1461. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1462. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1463. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1464. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1465. ];
  1466. //010608
  1467. U.MD.D.I.x010608TeacherDeskIcon = [
  1468. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1469. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1470. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1471. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1472. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1473. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1474. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1475. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1476. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1477. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1478. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1479. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1480. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1481. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1482. ];
  1483. //010608
  1484. U.MD.D.I.x010608StudentDeskIcon = [
  1485. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1486. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1487. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1488. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1489. ];
  1490. //xhly
  1491. U.MD.D.I.xhlyTeacherDeskIcon = [
  1492. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1493. ];
  1494. //010608
  1495. U.MD.D.I.xhlyStudentDeskIcon = [
  1496. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1497. ];
  1498. //北师大
  1499. U.MD.D.I.BSDNSteacherDeskIcon = [
  1500. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1501. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1502. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1503. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1504. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1505. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1506. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1507. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1508. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1509. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1510. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1511. ];
  1512. //北师大
  1513. U.MD.D.I.BSDNSstudentDeskIcon = [
  1514. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1515. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1516. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1517. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1518. ];
  1519. //CUHK_EDU
  1520. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1521. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1522. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1523. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1524. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1525. { "Name": "项目管理", "Url": "studentCourseS", "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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1528. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1529. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1530. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1531. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1532. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1533. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1534. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1535. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1536. ];
  1537. //CUHK_EDU
  1538. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1539. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1540. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1541. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1542. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1543. ];
  1544. //010503
  1545. U.MD.D.I.x010503TeacherDeskIcon = [
  1546. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1547. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1548. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1549. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1550. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1551. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1552. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1553. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1554. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1555. ];
  1556. //010503
  1557. U.MD.D.I.x010503StudentDeskIcon = [
  1558. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1559. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1560. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1561. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1562. ];
  1563. //SPROUT Lab
  1564. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1565. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1566. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1567. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1568. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1569. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1570. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1571. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1572. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1573. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1574. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1575. ];
  1576. //SPROUT Lab
  1577. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1578. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1579. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1580. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1581. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1582. ];
  1583. //010204
  1584. U.MD.D.I.x010204TeacherDeskIcon = [
  1585. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1586. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1587. ];
  1588. //010204
  1589. U.MD.D.I.x010204StudentDeskIcon = [
  1590. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1591. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1592. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1593. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1594. ];
  1595. //trail
  1596. U.MD.D.I.trailTeacherDeskIcon = [
  1597. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1598. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1599. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1600. ];
  1601. //trail
  1602. U.MD.D.I.trailStudentDeskIcon = [
  1603. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1604. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1605. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1606. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1607. ];
  1608. //010504
  1609. U.MD.D.I.x010504TeacherDeskIcon = [
  1610. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1611. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1612. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1613. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1614. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1615. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1616. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1617. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1618. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1619. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1620. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1621. ];
  1622. //010504
  1623. U.MD.D.I.x010504StudentDeskIcon = [
  1624. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1625. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1626. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1627. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1628. ];
  1629. //010505
  1630. U.MD.D.I.x010505TeacherDeskIcon = [
  1631. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1632. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1633. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1634. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1635. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1636. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1637. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1638. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1639. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1640. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1641. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1642. ];
  1643. //010505
  1644. U.MD.D.I.x010505StudentDeskIcon = [
  1645. { "Name": "项目管理", "Url": "studentCourse", "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": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1648. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1649. ];
  1650. //SCNUET
  1651. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1652. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1653. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1654. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1655. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1656. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1657. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1658. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1659. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1660. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1661. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1662. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1663. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1664. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1665. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1666. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1667. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1668. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1669. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1670. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1671. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1672. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1673. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1674. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1675. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1676. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1677. ];
  1678. //SCNUET
  1679. U.MD.D.I.SCNUETAdminDeskIcon = [
  1680. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1681. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1682. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1683. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1684. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1685. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1686. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1687. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1688. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1689. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1690. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1691. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1692. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1693. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1694. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1695. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1696. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1697. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1698. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1699. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1700. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1701. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1702. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1703. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1704. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1705. ];
  1706. //SCNUET
  1707. U.MD.D.I.SCNUETStudentDeskIcon = [
  1708. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1709. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1710. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1711. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1712. ];
  1713. //x020201
  1714. U.MD.D.I.x020201TeacherDeskIcon = [
  1715. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1716. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1717. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1718. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1719. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1720. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1721. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1722. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1723. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1724. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1725. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1726. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1727. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1728. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1729. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1730. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1731. ];
  1732. //x020201
  1733. U.MD.D.I.x020201AdminDeskIcon = [
  1734. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1735. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1736. { "Name": "项目管理", "Url": "studentCourseS", "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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1739. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1740. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1741. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1742. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1743. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1744. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1745. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1746. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1747. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1748. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1749. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1750. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1751. ];
  1752. //020201
  1753. U.MD.D.I.x020201StudentDeskIcon = [
  1754. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1755. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1756. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1757. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1758. ];
  1759. //010611
  1760. U.MD.D.I.x010611TeacherDeskIcon = [
  1761. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1762. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1763. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1764. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1765. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1766. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1767. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1768. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1769. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1770. ];
  1771. //010611
  1772. U.MD.D.I.x010611StudentDeskIcon = [
  1773. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1774. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1775. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1776. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1777. ];
  1778. //010612
  1779. U.MD.D.I.x010612TeacherDeskIcon = [
  1780. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1781. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1782. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1783. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1784. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1785. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1786. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1787. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1788. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1789. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1790. ];
  1791. //010612
  1792. U.MD.D.I.x010612StudentDeskIcon = [
  1793. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1794. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1795. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1796. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1797. ];
  1798. //tianyuan
  1799. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1800. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1801. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1802. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1803. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1804. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1805. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1806. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1807. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1808. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1809. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1810. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1811. ];
  1812. //010611
  1813. U.MD.D.I.tianyuanStudentDeskIcon = [
  1814. { "Name": "项目管理", "Url": "studentCourse", "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": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1817. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1818. ];
  1819. //320101
  1820. U.MD.D.I.x320101TeacherDeskIcon = [
  1821. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1822. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1823. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1824. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1825. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1826. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1827. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1828. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1829. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1830. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1831. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1832. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1833. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1834. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1835. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1836. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1837. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1838. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1839. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1840. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1841. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1842. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1843. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1844. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1845. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1846. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1847. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1848. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1849. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1850. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1851. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1852. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1853. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1854. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1855. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1856. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1857. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1858. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1859. ];
  1860. //320101
  1861. U.MD.D.I.x320101StudentDeskIcon = [
  1862. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1863. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1864. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1865. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1866. ];
  1867. //szsy
  1868. U.MD.D.I.szsyTeacherDeskIcon = [
  1869. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1870. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1871. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1872. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1873. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1874. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1875. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1876. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1877. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1878. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1879. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1880. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1881. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1882. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1883. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1884. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1885. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1886. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1887. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1888. ];
  1889. //szsy
  1890. U.MD.D.I.szsyStudentDeskIcon = [
  1891. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1892. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1893. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1894. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1895. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1896. ];
  1897. //010404
  1898. U.MD.D.I.x010404TeacherDeskIcon = [
  1899. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1900. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1901. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1902. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1903. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1904. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1905. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1906. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1907. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1908. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1909. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1910. ];
  1911. //010404
  1912. U.MD.D.I.x010404StudentDeskIcon = [
  1913. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1914. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1915. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1916. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1917. ];
  1918. //#region 桌面初始化a
  1919. /**
  1920. * 初始化桌面的起始函数
  1921. *
  1922. */
  1923. U.MD.D.I.init = function () {
  1924. if ($("#U_MD_D_K")[0]) {
  1925. //初始化桌面图标
  1926. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1927. // var clickUrl = ':12588/requestIp.php';
  1928. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1929. // U.MD.D.I.Ip = data;
  1930. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1931. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1932. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1933. // })
  1934. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1935. // })
  1936. }
  1937. }
  1938. /**
  1939. * 模式切换
  1940. *
  1941. */
  1942. U.MD.D.I.ModeCheck = function (type) {
  1943. if (US.Config.type == type) {
  1944. return
  1945. }
  1946. US.Config.type = type
  1947. $('.U_PBL_Check .active')[0].className = ''
  1948. if (type == 1) {
  1949. $('.U_PBL_Check div')[0].className = 'active'
  1950. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1951. } else {
  1952. $('.U_PBL_Check div')[1].className = 'active'
  1953. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1954. }
  1955. //初始化桌面图标
  1956. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1957. if (type == 2) {
  1958. U.MD.D.I.openApplication("project")
  1959. }
  1960. }
  1961. /**
  1962. * 隐藏任务栏
  1963. *
  1964. * @param {element} 桌面元素
  1965. */
  1966. U.MD.D.I.hiddenTaskbar = function (el) {
  1967. //任务栏位置变小
  1968. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1969. //桌面的位置变大
  1970. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1971. }
  1972. /**
  1973. * 隐藏任务栏
  1974. *
  1975. * @param {element} 桌面元素
  1976. */
  1977. U.MD.D.I.hiddenTaskbarout = function (el) {
  1978. //任务栏位置变小
  1979. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1980. //任务栏位置变化
  1981. U.selectEl(el).css({ "bottom": "-60px" });
  1982. //桌面的位置变大
  1983. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1984. }
  1985. }
  1986. /**
  1987. * 初始化打印桌面图标
  1988. *
  1989. * @param {element} 桌面元素
  1990. */
  1991. U.MD.D.I.initDesktopIcons = function (el, type) {
  1992. var i, //用于循环
  1993. _content, //桌面图标元素
  1994. _iconcontent, //桌面图标元素
  1995. _frag = $$("frag"), //定义一个碎片元素
  1996. _type = US.userInfo.type,
  1997. _org = US.userInfo.org,
  1998. _oid = US.userInfo.organizeid,
  1999. _role = US.userInfo.role,
  2000. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  2001. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  2002. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  2003. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  2004. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  2005. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  2006. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  2007. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  2008. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  2009. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  2010. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  2011. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  2012. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  2013. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  2014. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  2015. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  2016. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  2017. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  2018. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  2019. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  2020. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  2021. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  2022. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  2023. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  2024. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  2025. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  2026. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  2027. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  2028. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  2029. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  2030. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  2031. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  2032. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  2033. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  2034. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  2035. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  2036. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  2037. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  2038. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  2039. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  2040. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  2041. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  2042. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  2043. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  2044. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  2045. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  2046. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  2047. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  2048. _ricohTeacherDeskIconInfo = U.MD.D.I.ricohteacherDeskIcon, //hk
  2049. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  2050. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  2051. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  2052. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  2053. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  2054. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  2055. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  2056. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  2057. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  2058. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  2059. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  2060. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  2061. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  2062. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  2063. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  2064. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  2065. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  2066. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  2067. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  2068. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  2069. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  2070. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  2071. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  2072. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  2073. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  2074. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  2075. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  2076. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  2077. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2078. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2079. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2080. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2081. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2082. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2083. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2084. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2085. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2086. _x010612StudentDeskIconInfo = U.MD.D.I.x010612StudentDeskIcon, //010611
  2087. _x010612TeacherDeskIconInfo = U.MD.D.I.x010612TeacherDeskIcon, //010611
  2088. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2089. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2090. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2091. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2092. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2093. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2094. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2095. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2096. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2097. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2098. _x010505StudentDeskIconInfo = U.MD.D.I.x010505StudentDeskIcon, //010505
  2099. _x010505TeacherDeskIconInfo = U.MD.D.I.x010505TeacherDeskIcon, //010505
  2100. _x010404StudentDeskIconInfo = U.MD.D.I.x010404StudentDeskIcon, //010404
  2101. _x010404TeacherDeskIconInfo = U.MD.D.I.x010404TeacherDeskIcon, //010404
  2102. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2103. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2104. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2105. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2106. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2107. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2108. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2109. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2110. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2111. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2112. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2113. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2114. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2115. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2116. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2117. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2118. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2119. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2120. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2121. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  2122. 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','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','bc239322-ffb2-11ef-b508-005056924926','91796dfb-8791-11ef-9b30-005056b86db5','86fa8cd7-00c2-11f0-b508-005056924926','8406b214-085f-11f0-b508-005056924926'];
  2123. 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','7cc601a0-fafc-4116-a805-0adbacf7a38d'];
  2124. //清楚桌面图标
  2125. el.innerHTML = "";
  2126. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2127. _teacherDesktopIconInfo.push(
  2128. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2129. { "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)" } },
  2130. )
  2131. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2132. }
  2133. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5' || _org == '4d3812ef-fa66-11ef-b508-005056924926' || _oid == "0df61e4c-fe2d-11ef-b508-005056924926" || _org == 'eaee75a4-ff2e-11ef-b508-005056924926' || _org == 'e775a5d7-039a-11f0-b508-005056924926' || _org == '4d3812ef-fa66-11ef-b508-005056924926') {
  2134. _teacherDesktopIconInfo.push(
  2135. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2136. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2137. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2138. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2139. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2140. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2141. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2142. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2143. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2144. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2145. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2146. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2147. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2148. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2149. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2150. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2151. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2152. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2153. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2154. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2155. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2156. )
  2157. }
  2158. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2159. _teacherDesktopIconInfo.push(
  2160. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2161. )
  2162. }
  2163. if (_oid == 'b650d914-f039-11ef-b508-005056924926') {//松坪学校
  2164. _nsfxTeacherDeskIconInfo.push(
  2165. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2166. )
  2167. }
  2168. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2169. // _teacherDesktopIconInfo.push(
  2170. // )
  2171. // }
  2172. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2173. _teacherDesktopIconInfo.push(
  2174. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2175. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2176. )
  2177. }
  2178. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2179. _teacherDesktopIconInfo.push(
  2180. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2181. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2182. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2183. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2184. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2185. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2186. )
  2187. _studentDesktopIconInfo.push(
  2188. )
  2189. }
  2190. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2191. _teacherDesktopIconInfo.push(
  2192. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2193. )
  2194. _studentDesktopIconInfo.push(
  2195. )
  2196. }
  2197. //010606 组织
  2198. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2199. _teacherDesktopIconInfo.push(
  2200. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2201. )
  2202. _studentDesktopIconInfo.push(
  2203. )
  2204. }
  2205. //麒麟二中 和 民新小学
  2206. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2207. _teacherDesktopIconInfo.push(
  2208. )
  2209. }
  2210. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2211. _teacherDesktopIconInfo.push(
  2212. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2213. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2214. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2215. )
  2216. }
  2217. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2218. _hkTeacherDeskIconInfo.push(
  2219. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2220. )
  2221. }
  2222. //北师大附中(010601)
  2223. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2224. // _teacherDesktopIconInfo.push(
  2225. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2226. // )
  2227. // _studentDesktopIconInfo.push(
  2228. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2229. // )
  2230. // }
  2231. //樂善堂余近卿中學
  2232. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2233. _teacherDesktopIconInfo.push(
  2234. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2235. )
  2236. }
  2237. // Education Artificial Intelligence
  2238. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2239. _teacherDesktopIconInfo.push(
  2240. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2241. )
  2242. }
  2243. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2244. _teacherDesktopIconInfo.push(
  2245. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2246. )
  2247. }
  2248. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2249. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2250. _teacherDesktopIconInfo.push(
  2251. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2252. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2253. )
  2254. }
  2255. //麒麟二中
  2256. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2257. _studentDesktopIconInfo.push(
  2258. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2259. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2260. )
  2261. }
  2262. //万科双语
  2263. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2264. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2265. if (el.Name == '项目管理') {
  2266. el.Name = 'PBL项目'
  2267. }
  2268. return el
  2269. })
  2270. _studentDesktopIconInfo3.push(
  2271. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2272. )
  2273. }
  2274. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2275. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2276. return el.Name != '魔盒识字' && el.Name != '24点'
  2277. })
  2278. }
  2279. 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) {
  2280. _studentDesktopIconInfo.push(
  2281. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2282. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2283. )
  2284. }
  2285. //循环创建桌面图标
  2286. if (type == 1) {
  2287. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2288. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2289. _content = $$("div", {
  2290. className: "U_MD_D_KO",
  2291. "onmousedown": U.UF.C.closure(function (obj) {
  2292. //防止拖动图标即打开了桌面应用
  2293. U.MD.D.click(this, obj);
  2294. }, [_studentDesktopIconInfo[i]]),
  2295. "onclick": U.UF.C.closure(function (obj) {
  2296. //防止拖动图标即打开了桌面应用
  2297. U.MD.D.click(this, obj);
  2298. }, [_studentDesktopIconInfo[i]])
  2299. }, _frag); //
  2300. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2301. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2302. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2303. }
  2304. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2305. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2306. _content = $$("div", {
  2307. className: "U_MD_D_KO",
  2308. "onmousedown": U.UF.C.closure(function (obj) {
  2309. //防止拖动图标即打开了桌面应用
  2310. U.MD.D.click(this, obj);
  2311. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2312. "onclick": U.UF.C.closure(function (obj) {
  2313. //防止拖动图标即打开了桌面应用
  2314. U.MD.D.click(this, obj);
  2315. }, [_hkZJLSStudentDeskIconInfo[i]])
  2316. }, _frag); //
  2317. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2318. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2319. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2320. } //
  2321. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2322. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2323. _content = $$("div", {
  2324. className: "U_MD_D_KO",
  2325. "onmousedown": U.UF.C.closure(function (obj) {
  2326. //防止拖动图标即打开了桌面应用
  2327. U.MD.D.click(this, obj);
  2328. }, [_ytyStudentDeskIconInfo[i]]),
  2329. "onclick": U.UF.C.closure(function (obj) {
  2330. //防止拖动图标即打开了桌面应用
  2331. U.MD.D.click(this, obj);
  2332. }, [_ytyStudentDeskIconInfo[i]])
  2333. }, _frag); //
  2334. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2335. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2336. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2337. } //
  2338. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2339. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2340. _content = $$("div", {
  2341. className: "U_MD_D_KO",
  2342. "onmousedown": U.UF.C.closure(function (obj) {
  2343. //防止拖动图标即打开了桌面应用
  2344. U.MD.D.click(this, obj);
  2345. }, [_jccssylStudentDeskIconInfo[i]]),
  2346. "onclick": U.UF.C.closure(function (obj) {
  2347. //防止拖动图标即打开了桌面应用
  2348. U.MD.D.click(this, obj);
  2349. }, [_jccssylStudentDeskIconInfo[i]])
  2350. }, _frag); //
  2351. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2352. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2353. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2354. }
  2355. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2356. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2357. _content = $$("div", {
  2358. className: "U_MD_D_KO",
  2359. "onmousedown": U.UF.C.closure(function (obj) {
  2360. //防止拖动图标即打开了桌面应用
  2361. U.MD.D.click(this, obj);
  2362. }, [_scnuaiStudentDeskIconInfo[i]]),
  2363. "onclick": U.UF.C.closure(function (obj) {
  2364. //防止拖动图标即打开了桌面应用
  2365. U.MD.D.click(this, obj);
  2366. }, [_scnuaiStudentDeskIconInfo[i]])
  2367. }, _frag); //
  2368. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2369. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2370. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2371. }
  2372. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2373. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2374. _content = $$("div", {
  2375. className: "U_MD_D_KO",
  2376. "onmousedown": U.UF.C.closure(function (obj) {
  2377. //防止拖动图标即打开了桌面应用
  2378. U.MD.D.click(this, obj);
  2379. }, [_caleStudentDeskIconInfo[i]]),
  2380. "onclick": U.UF.C.closure(function (obj) {
  2381. //防止拖动图标即打开了桌面应用
  2382. U.MD.D.click(this, obj);
  2383. }, [_caleStudentDeskIconInfo[i]])
  2384. }, _frag); //
  2385. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2386. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2387. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2388. }
  2389. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2390. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2391. _content = $$("div", {
  2392. className: "U_MD_D_KO",
  2393. "onmousedown": U.UF.C.closure(function (obj) {
  2394. //防止拖动图标即打开了桌面应用
  2395. U.MD.D.click(this, obj);
  2396. }, [_thuioeStudentDeskIconInfo[i]]),
  2397. "onclick": U.UF.C.closure(function (obj) {
  2398. //防止拖动图标即打开了桌面应用
  2399. U.MD.D.click(this, obj);
  2400. }, [_thuioeStudentDeskIconInfo[i]])
  2401. }, _frag); //
  2402. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2403. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2404. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2405. }
  2406. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2407. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2408. _content = $$("div", {
  2409. className: "U_MD_D_KO",
  2410. "onmousedown": U.UF.C.closure(function (obj) {
  2411. //防止拖动图标即打开了桌面应用
  2412. U.MD.D.click(this, obj);
  2413. }, [_tpcStudentDeskIconInfo[i]]),
  2414. "onclick": U.UF.C.closure(function (obj) {
  2415. //防止拖动图标即打开了桌面应用
  2416. U.MD.D.click(this, obj);
  2417. }, [_tpcStudentDeskIconInfo[i]])
  2418. }, _frag); //
  2419. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2420. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2421. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2422. } //
  2423. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2424. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2425. _content = $$("div", {
  2426. className: "U_MD_D_KO",
  2427. "onmousedown": U.UF.C.closure(function (obj) {
  2428. //防止拖动图标即打开了桌面应用
  2429. U.MD.D.click(this, obj);
  2430. }, [_chjyjStudentDeskIconInfo[i]]),
  2431. "onclick": U.UF.C.closure(function (obj) {
  2432. //防止拖动图标即打开了桌面应用
  2433. U.MD.D.click(this, obj);
  2434. }, [_chjyjStudentDeskIconInfo[i]])
  2435. }, _frag); //
  2436. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2437. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2438. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2439. }
  2440. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2441. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2442. _content = $$("div", {
  2443. className: "U_MD_D_KO",
  2444. "onmousedown": U.UF.C.closure(function (obj) {
  2445. //防止拖动图标即打开了桌面应用
  2446. U.MD.D.click(this, obj);
  2447. }, [_szjkyStudentDeskIconInfo[i]]),
  2448. "onclick": U.UF.C.closure(function (obj) {
  2449. //防止拖动图标即打开了桌面应用
  2450. U.MD.D.click(this, obj);
  2451. }, [_szjkyStudentDeskIconInfo[i]])
  2452. }, _frag); //
  2453. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2454. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2455. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2456. }
  2457. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2458. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2459. _content = $$("div", {
  2460. className: "U_MD_D_KO",
  2461. "onmousedown": U.UF.C.closure(function (obj) {
  2462. //防止拖动图标即打开了桌面应用
  2463. U.MD.D.click(this, obj);
  2464. }, [_x020201StudentDeskIconInfo[i]]),
  2465. "onclick": U.UF.C.closure(function (obj) {
  2466. //防止拖动图标即打开了桌面应用
  2467. U.MD.D.click(this, obj);
  2468. }, [_x020201StudentDeskIconInfo[i]])
  2469. }, _frag); //
  2470. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2471. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2472. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2473. }
  2474. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2475. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2476. _content = $$("div", {
  2477. className: "U_MD_D_KO",
  2478. "onmousedown": U.UF.C.closure(function (obj) {
  2479. //防止拖动图标即打开了桌面应用
  2480. U.MD.D.click(this, obj);
  2481. }, [_SCNUETStudentDeskIconInfo[i]]),
  2482. "onclick": U.UF.C.closure(function (obj) {
  2483. //防止拖动图标即打开了桌面应用
  2484. U.MD.D.click(this, obj);
  2485. }, [_SCNUETStudentDeskIconInfo[i]])
  2486. }, _frag); //
  2487. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2488. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2489. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2490. }
  2491. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2492. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2493. _content = $$("div", {
  2494. className: "U_MD_D_KO",
  2495. "onmousedown": U.UF.C.closure(function (obj) {
  2496. //防止拖动图标即打开了桌面应用
  2497. U.MD.D.click(this, obj);
  2498. }, [_dseiStudentDeskIconInfo[i]]),
  2499. "onclick": U.UF.C.closure(function (obj) {
  2500. //防止拖动图标即打开了桌面应用
  2501. U.MD.D.click(this, obj);
  2502. }, [_dseiStudentDeskIconInfo[i]])
  2503. }, _frag); //
  2504. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2505. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2506. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2507. }
  2508. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2509. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2510. _content = $$("div", {
  2511. className: "U_MD_D_KO",
  2512. "onmousedown": U.UF.C.closure(function (obj) {
  2513. //防止拖动图标即打开了桌面应用
  2514. U.MD.D.click(this, obj);
  2515. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2516. "onclick": U.UF.C.closure(function (obj) {
  2517. //防止拖动图标即打开了桌面应用
  2518. U.MD.D.click(this, obj);
  2519. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2520. }, _frag); //
  2521. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2522. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2523. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2524. }
  2525. } else if (_type == 2 && (_org == "7cc601a0-fafc-4116-a805-0adbacf7a38d")) {
  2526. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2527. _content = $$("div", {
  2528. className: "U_MD_D_KO",
  2529. "onmousedown": U.UF.C.closure(function (obj) {
  2530. //防止拖动图标即打开了桌面应用
  2531. U.MD.D.click(this, obj);
  2532. }, [_nsfxStudentDeskIconInfo[i]]),
  2533. "onclick": U.UF.C.closure(function (obj) {
  2534. //防止拖动图标即打开了桌面应用
  2535. U.MD.D.click(this, obj);
  2536. }, [_nsfxStudentDeskIconInfo[i]])
  2537. }, _frag); //
  2538. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2539. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2540. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2541. }
  2542. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2543. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2544. _content = $$("div", {
  2545. className: "U_MD_D_KO",
  2546. "onmousedown": U.UF.C.closure(function (obj) {
  2547. //防止拖动图标即打开了桌面应用
  2548. U.MD.D.click(this, obj);
  2549. }, [_stiaStudentDeskIconInfo[i]]),
  2550. "onclick": U.UF.C.closure(function (obj) {
  2551. //防止拖动图标即打开了桌面应用
  2552. U.MD.D.click(this, obj);
  2553. }, [_stiaStudentDeskIconInfo[i]])
  2554. }, _frag); //
  2555. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2556. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2557. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2558. }
  2559. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2560. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2561. _content = $$("div", {
  2562. className: "U_MD_D_KO",
  2563. "onmousedown": U.UF.C.closure(function (obj) {
  2564. //防止拖动图标即打开了桌面应用
  2565. U.MD.D.click(this, obj);
  2566. }, [_szdjgStudentDeskIconInfo[i]]),
  2567. "onclick": U.UF.C.closure(function (obj) {
  2568. //防止拖动图标即打开了桌面应用
  2569. U.MD.D.click(this, obj);
  2570. }, [_szdjgStudentDeskIconInfo[i]])
  2571. }, _frag); //
  2572. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2573. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2574. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2575. }
  2576. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2577. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2578. _content = $$("div", {
  2579. className: "U_MD_D_KO",
  2580. "onmousedown": U.UF.C.closure(function (obj) {
  2581. //防止拖动图标即打开了桌面应用
  2582. U.MD.D.click(this, obj);
  2583. }, [_x010607StudentDeskIconInfo[i]]),
  2584. "onclick": U.UF.C.closure(function (obj) {
  2585. //防止拖动图标即打开了桌面应用
  2586. U.MD.D.click(this, obj);
  2587. }, [_x010607StudentDeskIconInfo[i]])
  2588. }, _frag); //
  2589. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2590. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2591. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2592. }
  2593. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2594. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2595. _content = $$("div", {
  2596. className: "U_MD_D_KO",
  2597. "onmousedown": U.UF.C.closure(function (obj) {
  2598. //防止拖动图标即打开了桌面应用
  2599. U.MD.D.click(this, obj);
  2600. }, [_xhlyStudentDeskIconInfo[i]]),
  2601. "onclick": U.UF.C.closure(function (obj) {
  2602. //防止拖动图标即打开了桌面应用
  2603. U.MD.D.click(this, obj);
  2604. }, [_xhlyStudentDeskIconInfo[i]])
  2605. }, _frag); //
  2606. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2607. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2608. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2609. }
  2610. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2611. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2612. _content = $$("div", {
  2613. className: "U_MD_D_KO",
  2614. "onmousedown": U.UF.C.closure(function (obj) {
  2615. //防止拖动图标即打开了桌面应用
  2616. U.MD.D.click(this, obj);
  2617. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2618. "onclick": U.UF.C.closure(function (obj) {
  2619. //防止拖动图标即打开了桌面应用
  2620. U.MD.D.click(this, obj);
  2621. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2622. }, _frag); //
  2623. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2624. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2625. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2626. }
  2627. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2628. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2629. _content = $$("div", {
  2630. className: "U_MD_D_KO",
  2631. "onmousedown": U.UF.C.closure(function (obj) {
  2632. //防止拖动图标即打开了桌面应用
  2633. U.MD.D.click(this, obj);
  2634. }, [_x010503StudentDeskIconInfo[i]]),
  2635. "onclick": U.UF.C.closure(function (obj) {
  2636. //防止拖动图标即打开了桌面应用
  2637. U.MD.D.click(this, obj);
  2638. }, [_x010503StudentDeskIconInfo[i]])
  2639. }, _frag); //
  2640. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2641. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2642. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2643. }
  2644. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2645. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2646. _content = $$("div", {
  2647. className: "U_MD_D_KO",
  2648. "onmousedown": U.UF.C.closure(function (obj) {
  2649. //防止拖动图标即打开了桌面应用
  2650. U.MD.D.click(this, obj);
  2651. }, [_x010504StudentDeskIconInfo[i]]),
  2652. "onclick": U.UF.C.closure(function (obj) {
  2653. //防止拖动图标即打开了桌面应用
  2654. U.MD.D.click(this, obj);
  2655. }, [_x010504StudentDeskIconInfo[i]])
  2656. }, _frag); //
  2657. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2658. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2659. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2660. }
  2661. } else if (_type == 2 && (_oid == "8406b214-085f-11f0-b508-005056924926")) {
  2662. for (i = 0; i < _x010505StudentDeskIconInfo.length; i++) {
  2663. _content = $$("div", {
  2664. className: "U_MD_D_KO",
  2665. "onmousedown": U.UF.C.closure(function (obj) {
  2666. //防止拖动图标即打开了桌面应用
  2667. U.MD.D.click(this, obj);
  2668. }, [_x010505StudentDeskIconInfo[i]]),
  2669. "onclick": U.UF.C.closure(function (obj) {
  2670. //防止拖动图标即打开了桌面应用
  2671. U.MD.D.click(this, obj);
  2672. }, [_x010505StudentDeskIconInfo[i]])
  2673. }, _frag); //
  2674. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2675. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505StudentDeskIconInfo[i].style }, _iconcontent);
  2676. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505StudentDeskIconInfo[i].Name }, _iconcontent);
  2677. }
  2678. } else if (_type == 2 && (_oid == "bc239322-ffb2-11ef-b508-005056924926")) {
  2679. for (i = 0; i < _x010404StudentDeskIconInfo.length; i++) {
  2680. _content = $$("div", {
  2681. className: "U_MD_D_KO",
  2682. "onmousedown": U.UF.C.closure(function (obj) {
  2683. //防止拖动图标即打开了桌面应用
  2684. U.MD.D.click(this, obj);
  2685. }, [_x010404StudentDeskIconInfo[i]]),
  2686. "onclick": U.UF.C.closure(function (obj) {
  2687. //防止拖动图标即打开了桌面应用
  2688. U.MD.D.click(this, obj);
  2689. }, [_x010404StudentDeskIconInfo[i]])
  2690. }, _frag); //
  2691. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2692. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404StudentDeskIconInfo[i].style }, _iconcontent);
  2693. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404StudentDeskIconInfo[i].Name }, _iconcontent);
  2694. }
  2695. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2696. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2697. _content = $$("div", {
  2698. className: "U_MD_D_KO",
  2699. "onmousedown": U.UF.C.closure(function (obj) {
  2700. //防止拖动图标即打开了桌面应用
  2701. U.MD.D.click(this, obj);
  2702. }, [_x010204StudentDeskIconInfo[i]]),
  2703. "onclick": U.UF.C.closure(function (obj) {
  2704. //防止拖动图标即打开了桌面应用
  2705. U.MD.D.click(this, obj);
  2706. }, [_x010204StudentDeskIconInfo[i]])
  2707. }, _frag); //
  2708. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2709. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2710. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2711. }
  2712. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2713. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2714. _content = $$("div", {
  2715. className: "U_MD_D_KO",
  2716. "onmousedown": U.UF.C.closure(function (obj) {
  2717. //防止拖动图标即打开了桌面应用
  2718. U.MD.D.click(this, obj);
  2719. }, [_x320101StudentDeskIconInfo[i]]),
  2720. "onclick": U.UF.C.closure(function (obj) {
  2721. //防止拖动图标即打开了桌面应用
  2722. U.MD.D.click(this, obj);
  2723. }, [_x320101StudentDeskIconInfo[i]])
  2724. }, _frag); //
  2725. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2726. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2727. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2728. }
  2729. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2730. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2731. _content = $$("div", {
  2732. className: "U_MD_D_KO",
  2733. "onmousedown": U.UF.C.closure(function (obj) {
  2734. //防止拖动图标即打开了桌面应用
  2735. U.MD.D.click(this, obj);
  2736. }, [_trailStudentDeskIconInfo[i]]),
  2737. "onclick": U.UF.C.closure(function (obj) {
  2738. //防止拖动图标即打开了桌面应用
  2739. U.MD.D.click(this, obj);
  2740. }, [_trailStudentDeskIconInfo[i]])
  2741. }, _frag); //
  2742. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2743. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2744. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2745. }
  2746. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2747. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2748. _content = $$("div", {
  2749. className: "U_MD_D_KO",
  2750. "onmousedown": U.UF.C.closure(function (obj) {
  2751. //防止拖动图标即打开了桌面应用
  2752. U.MD.D.click(this, obj);
  2753. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2754. "onclick": U.UF.C.closure(function (obj) {
  2755. //防止拖动图标即打开了桌面应用
  2756. U.MD.D.click(this, obj);
  2757. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2758. }, _frag); //
  2759. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2760. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2761. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2762. }
  2763. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2764. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2765. _content = $$("div", {
  2766. className: "U_MD_D_KO",
  2767. "onmousedown": U.UF.C.closure(function (obj) {
  2768. //防止拖动图标即打开了桌面应用
  2769. U.MD.D.click(this, obj);
  2770. }, [_szsyStudentDeskIconInfo[i]]),
  2771. "onclick": U.UF.C.closure(function (obj) {
  2772. //防止拖动图标即打开了桌面应用
  2773. U.MD.D.click(this, obj);
  2774. }, [_szsyStudentDeskIconInfo[i]])
  2775. }, _frag); //
  2776. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2777. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2778. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2779. }
  2780. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2781. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2782. _content = $$("div", {
  2783. className: "U_MD_D_KO",
  2784. "onmousedown": U.UF.C.closure(function (obj) {
  2785. //防止拖动图标即打开了桌面应用
  2786. U.MD.D.click(this, obj);
  2787. }, [_x010608StudentDeskIconInfo[i]]),
  2788. "onclick": U.UF.C.closure(function (obj) {
  2789. //防止拖动图标即打开了桌面应用
  2790. U.MD.D.click(this, obj);
  2791. }, [_x010608StudentDeskIconInfo[i]])
  2792. }, _frag); //
  2793. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2794. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2795. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2796. }
  2797. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2798. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2799. _content = $$("div", {
  2800. className: "U_MD_D_KO",
  2801. "onmousedown": U.UF.C.closure(function (obj) {
  2802. //防止拖动图标即打开了桌面应用
  2803. U.MD.D.click(this, obj);
  2804. }, [_x010611StudentDeskIconInfo[i]]),
  2805. "onclick": U.UF.C.closure(function (obj) {
  2806. //防止拖动图标即打开了桌面应用
  2807. U.MD.D.click(this, obj);
  2808. }, [_x010611StudentDeskIconInfo[i]])
  2809. }, _frag); //
  2810. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2811. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2812. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2813. }
  2814. } else if (_type == 2 && (_oid == "86fa8cd7-00c2-11f0-b508-005056924926")) {
  2815. for (i = 0; i < _x010612StudentDeskIconInfo.length; i++) {
  2816. _content = $$("div", {
  2817. className: "U_MD_D_KO",
  2818. "onmousedown": U.UF.C.closure(function (obj) {
  2819. //防止拖动图标即打开了桌面应用
  2820. U.MD.D.click(this, obj);
  2821. }, [_x010612StudentDeskIconInfo[i]]),
  2822. "onclick": U.UF.C.closure(function (obj) {
  2823. //防止拖动图标即打开了桌面应用
  2824. U.MD.D.click(this, obj);
  2825. }, [_x010612StudentDeskIconInfo[i]])
  2826. }, _frag); //
  2827. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2828. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612StudentDeskIconInfo[i].style }, _iconcontent);
  2829. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612StudentDeskIconInfo[i].Name }, _iconcontent);
  2830. }
  2831. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2832. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2833. _content = $$("div", {
  2834. className: "U_MD_D_KO",
  2835. "onmousedown": U.UF.C.closure(function (obj) {
  2836. //防止拖动图标即打开了桌面应用
  2837. U.MD.D.click(this, obj);
  2838. }, [_tianyuantudentDeskIconInfo[i]]),
  2839. "onclick": U.UF.C.closure(function (obj) {
  2840. //防止拖动图标即打开了桌面应用
  2841. U.MD.D.click(this, obj);
  2842. }, [_tianyuantudentDeskIconInfo[i]])
  2843. }, _frag); //
  2844. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2845. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2846. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2847. }
  2848. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2849. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2850. _content = $$("div", {
  2851. className: "U_MD_D_KO",
  2852. "onmousedown": U.UF.C.closure(function (obj) {
  2853. //防止拖动图标即打开了桌面应用
  2854. U.MD.D.click(this, obj);
  2855. }, [_siesStudentDeskIconInfo[i]]),
  2856. "onclick": U.UF.C.closure(function (obj) {
  2857. //防止拖动图标即打开了桌面应用
  2858. U.MD.D.click(this, obj);
  2859. }, [_siesStudentDeskIconInfo[i]])
  2860. }, _frag); //
  2861. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2862. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2863. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2864. }
  2865. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2866. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2867. _content = $$("div", {
  2868. className: "U_MD_D_KO",
  2869. "onmousedown": U.UF.C.closure(function (obj) {
  2870. //防止拖动图标即打开了桌面应用
  2871. U.MD.D.click(this, obj);
  2872. }, [_guzmsStudentDeskIconInfo[i]]),
  2873. "onclick": U.UF.C.closure(function (obj) {
  2874. //防止拖动图标即打开了桌面应用
  2875. U.MD.D.click(this, obj);
  2876. }, [_guzmsStudentDeskIconInfo[i]])
  2877. }, _frag); //
  2878. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2879. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2880. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2881. }
  2882. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2883. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2884. _content = $$("div", {
  2885. className: "U_MD_D_KO",
  2886. "onmousedown": U.UF.C.closure(function (obj) {
  2887. //防止拖动图标即打开了桌面应用
  2888. U.MD.D.click(this, obj);
  2889. }, [_hkStudentDeskIconInfo[i]]),
  2890. "onclick": U.UF.C.closure(function (obj) {
  2891. //防止拖动图标即打开了桌面应用
  2892. U.MD.D.click(this, obj);
  2893. }, [_hkStudentDeskIconInfo[i]])
  2894. }, _frag); //
  2895. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2896. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2897. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2898. }
  2899. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2900. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2901. _content = $$("div", {
  2902. className: "U_MD_D_KO",
  2903. "onmousedown": U.UF.C.closure(function (obj) {
  2904. //防止拖动图标即打开了桌面应用
  2905. U.MD.D.click(this, obj);
  2906. }, [_hkaceStudentDeskIconInfo[i]]),
  2907. "onclick": U.UF.C.closure(function (obj) {
  2908. //防止拖动图标即打开了桌面应用
  2909. U.MD.D.click(this, obj);
  2910. }, [_hkaceStudentDeskIconInfo[i]])
  2911. }, _frag); //
  2912. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2913. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2914. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2915. }
  2916. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2917. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2918. _content = $$("div", {
  2919. className: "U_MD_D_KO",
  2920. "onmousedown": U.UF.C.closure(function (obj) {
  2921. //防止拖动图标即打开了桌面应用
  2922. U.MD.D.click(this, obj);
  2923. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2924. "onclick": U.UF.C.closure(function (obj) {
  2925. //防止拖动图标即打开了桌面应用
  2926. U.MD.D.click(this, obj);
  2927. }, [_BSDNSstudentDesktopIconInfo[i]])
  2928. }, _frag); //
  2929. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2930. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2931. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2932. }
  2933. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2934. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2935. _content = $$("div", {
  2936. className: "U_MD_D_KO",
  2937. "onmousedown": U.UF.C.closure(function (obj) {
  2938. //防止拖动图标即打开了桌面应用
  2939. U.MD.D.click(this, obj);
  2940. }, [_cocobizStudentDeskIconInfo[i]]),
  2941. "onclick": U.UF.C.closure(function (obj) {
  2942. //防止拖动图标即打开了桌面应用
  2943. U.MD.D.click(this, obj);
  2944. }, [_cocobizStudentDeskIconInfo[i]])
  2945. }, _frag); //
  2946. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2947. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2948. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2949. }
  2950. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2951. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2952. _content = $$("div", {
  2953. className: "U_MD_D_KO",
  2954. "onmousedown": U.UF.C.closure(function (obj) {
  2955. //防止拖动图标即打开了桌面应用
  2956. U.MD.D.click(this, obj);
  2957. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2958. "onclick": U.UF.C.closure(function (obj) {
  2959. //防止拖动图标即打开了桌面应用
  2960. U.MD.D.click(this, obj);
  2961. }, [_xxzjkyStudentDeskIconInfo[i]])
  2962. }, _frag); //
  2963. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2964. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2965. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2966. }
  2967. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2968. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2969. _content = $$("div", {
  2970. className: "U_MD_D_KO",
  2971. "onmousedown": U.UF.C.closure(function (obj) {
  2972. //防止拖动图标即打开了桌面应用
  2973. U.MD.D.click(this, obj);
  2974. }, [_studentDesktopIconInfo[i]]),
  2975. "onclick": U.UF.C.closure(function (obj) {
  2976. //防止拖动图标即打开了桌面应用
  2977. U.MD.D.click(this, obj);
  2978. }, [_studentDesktopIconInfo[i]])
  2979. }, _frag); //
  2980. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2981. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2982. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2983. }
  2984. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2985. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2986. _content = $$("div", {
  2987. className: "U_MD_D_KO",
  2988. "onmousedown": U.UF.C.closure(function (obj) {
  2989. //防止拖动图标即打开了桌面应用
  2990. U.MD.D.click(this, obj);
  2991. }, [_tcStudentDeskIconInfo[i]]),
  2992. "onclick": U.UF.C.closure(function (obj) {
  2993. //防止拖动图标即打开了桌面应用
  2994. U.MD.D.click(this, obj);
  2995. }, [_tcStudentDeskIconInfo[i]])
  2996. }, _frag); //
  2997. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2998. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2999. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  3000. }
  3001. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  3002. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  3003. _content = $$("div", {
  3004. className: "U_MD_D_KO",
  3005. "onmousedown": U.UF.C.closure(function (obj) {
  3006. //防止拖动图标即打开了桌面应用
  3007. U.MD.D.click(this, obj);
  3008. }, [_szscStudentDeskIconInfo[i]]),
  3009. "onclick": U.UF.C.closure(function (obj) {
  3010. //防止拖动图标即打开了桌面应用
  3011. U.MD.D.click(this, obj);
  3012. }, [_szscStudentDeskIconInfo[i]])
  3013. }, _frag); //
  3014. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3015. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  3016. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  3017. }
  3018. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  3019. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  3020. _content = $$("div", {
  3021. className: "U_MD_D_KO",
  3022. "onmousedown": U.UF.C.closure(function (obj) {
  3023. //防止拖动图标即打开了桌面应用
  3024. U.MD.D.click(this, obj);
  3025. }, [_studentDesktopIconInfo3[i]]),
  3026. "onclick": U.UF.C.closure(function (obj) {
  3027. //防止拖动图标即打开了桌面应用
  3028. U.MD.D.click(this, obj);
  3029. }, [_studentDesktopIconInfo3[i]])
  3030. }, _frag); //
  3031. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3032. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  3033. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  3034. }
  3035. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  3036. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  3037. _content = $$("div", {
  3038. className: "U_MD_D_KO",
  3039. "onmousedown": U.UF.C.closure(function (obj) {
  3040. //防止拖动图标即打开了桌面应用
  3041. U.MD.D.click(this, obj);
  3042. }, [_studentDesktopIconInfo2[i]]),
  3043. "onclick": U.UF.C.closure(function (obj) {
  3044. //防止拖动图标即打开了桌面应用
  3045. U.MD.D.click(this, obj);
  3046. }, [_studentDesktopIconInfo2[i]])
  3047. }, _frag); //
  3048. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3049. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  3050. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  3051. }
  3052. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  3053. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  3054. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  3055. continue
  3056. }
  3057. _content = $$("div", {
  3058. className: "U_MD_D_KO",
  3059. "onmousedown": U.UF.C.closure(function (obj) {
  3060. //防止拖动图标即打开了桌面应用
  3061. U.MD.D.click(this, obj);
  3062. }, [_wanketeacherDesktopIconInfo[i]]),
  3063. "onclick": U.UF.C.closure(function (obj) {
  3064. //防止拖动图标即打开了桌面应用
  3065. U.MD.D.click(this, obj);
  3066. }, [_wanketeacherDesktopIconInfo[i]])
  3067. }, _frag); //
  3068. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3069. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  3070. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  3071. }
  3072. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  3073. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  3074. _content = $$("div", {
  3075. className: "U_MD_D_KO",
  3076. "onmousedown": U.UF.C.closure(function (obj) {
  3077. //防止拖动图标即打开了桌面应用
  3078. U.MD.D.click(this, obj);
  3079. }, [_wankeAdminDesktopIconInfo[i]]),
  3080. "onclick": U.UF.C.closure(function (obj) {
  3081. //防止拖动图标即打开了桌面应用
  3082. U.MD.D.click(this, obj);
  3083. }, [_wankeAdminDesktopIconInfo[i]])
  3084. }, _frag); //
  3085. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3086. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  3087. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  3088. }
  3089. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  3090. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  3091. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3092. continue
  3093. }
  3094. _content = $$("div", {
  3095. className: "U_MD_D_KO",
  3096. "onmousedown": U.UF.C.closure(function (obj) {
  3097. //防止拖动图标即打开了桌面应用
  3098. U.MD.D.click(this, obj);
  3099. }, [_scnuaiTeacherDeskIconInfo[i]]),
  3100. "onclick": U.UF.C.closure(function (obj) {
  3101. //防止拖动图标即打开了桌面应用
  3102. U.MD.D.click(this, obj);
  3103. }, [_scnuaiTeacherDeskIconInfo[i]])
  3104. }, _frag); //
  3105. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3106. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3107. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3108. }
  3109. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  3110. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  3111. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3112. continue
  3113. }
  3114. _content = $$("div", {
  3115. className: "U_MD_D_KO",
  3116. "onmousedown": U.UF.C.closure(function (obj) {
  3117. //防止拖动图标即打开了桌面应用
  3118. U.MD.D.click(this, obj);
  3119. }, [_BSDNSteacherDesktopIconInfo[i]]),
  3120. "onclick": U.UF.C.closure(function (obj) {
  3121. //防止拖动图标即打开了桌面应用
  3122. U.MD.D.click(this, obj);
  3123. }, [_BSDNSteacherDesktopIconInfo[i]])
  3124. }, _frag); //
  3125. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3126. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  3127. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  3128. }
  3129. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  3130. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  3131. _content = $$("div", {
  3132. className: "U_MD_D_KO",
  3133. "onmousedown": U.UF.C.closure(function (obj) {
  3134. //防止拖动图标即打开了桌面应用
  3135. U.MD.D.click(this, obj);
  3136. }, [_scnuaiAdminDeskIconInfo[i]]),
  3137. "onclick": U.UF.C.closure(function (obj) {
  3138. //防止拖动图标即打开了桌面应用
  3139. U.MD.D.click(this, obj);
  3140. }, [_scnuaiAdminDeskIconInfo[i]])
  3141. }, _frag); //
  3142. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3143. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3144. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3145. }
  3146. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3147. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3148. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3149. continue
  3150. }
  3151. _content = $$("div", {
  3152. className: "U_MD_D_KO",
  3153. "onmousedown": U.UF.C.closure(function (obj) {
  3154. //防止拖动图标即打开了桌面应用
  3155. U.MD.D.click(this, obj);
  3156. }, [_jccssylTeacherDeskIconInfo[i]]),
  3157. "onclick": U.UF.C.closure(function (obj) {
  3158. //防止拖动图标即打开了桌面应用
  3159. U.MD.D.click(this, obj);
  3160. }, [_jccssylTeacherDeskIconInfo[i]])
  3161. }, _frag); //
  3162. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3163. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3164. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3165. }
  3166. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3167. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3168. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3169. continue
  3170. }
  3171. _content = $$("div", {
  3172. className: "U_MD_D_KO",
  3173. "onmousedown": U.UF.C.closure(function (obj) {
  3174. //防止拖动图标即打开了桌面应用
  3175. U.MD.D.click(this, obj);
  3176. }, [_caleTeacherDeskIconInfo[i]]),
  3177. "onclick": U.UF.C.closure(function (obj) {
  3178. //防止拖动图标即打开了桌面应用
  3179. U.MD.D.click(this, obj);
  3180. }, [_caleTeacherDeskIconInfo[i]])
  3181. }, _frag); //
  3182. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3183. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3184. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3185. }
  3186. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3187. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3188. _content = $$("div", {
  3189. className: "U_MD_D_KO",
  3190. "onmousedown": U.UF.C.closure(function (obj) {
  3191. //防止拖动图标即打开了桌面应用
  3192. U.MD.D.click(this, obj);
  3193. }, [_tpcOrganizerDeskIconInfo[i]]),
  3194. "onclick": U.UF.C.closure(function (obj) {
  3195. //防止拖动图标即打开了桌面应用
  3196. U.MD.D.click(this, obj);
  3197. }, [_tpcOrganizerDeskIconInfo[i]])
  3198. }, _frag); //
  3199. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3200. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3201. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3202. }
  3203. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3204. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3205. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3206. continue
  3207. }
  3208. _content = $$("div", {
  3209. className: "U_MD_D_KO",
  3210. "onmousedown": U.UF.C.closure(function (obj) {
  3211. //防止拖动图标即打开了桌面应用
  3212. U.MD.D.click(this, obj);
  3213. }, [_tpcTeacherDeskIconInfo[i]]),
  3214. "onclick": U.UF.C.closure(function (obj) {
  3215. //防止拖动图标即打开了桌面应用
  3216. U.MD.D.click(this, obj);
  3217. }, [_tpcTeacherDeskIconInfo[i]])
  3218. }, _frag); //
  3219. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3220. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3221. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3222. }
  3223. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3224. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3225. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3226. continue
  3227. }
  3228. _content = $$("div", {
  3229. className: "U_MD_D_KO",
  3230. "onmousedown": U.UF.C.closure(function (obj) {
  3231. //防止拖动图标即打开了桌面应用
  3232. U.MD.D.click(this, obj);
  3233. }, [_teacherDesktopIconInfo2[i]]),
  3234. "onclick": U.UF.C.closure(function (obj) {
  3235. //防止拖动图标即打开了桌面应用
  3236. U.MD.D.click(this, obj);
  3237. }, [_teacherDesktopIconInfo2[i]])
  3238. }, _frag); //
  3239. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3240. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3241. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3242. }
  3243. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3244. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3245. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3246. continue
  3247. }
  3248. _content = $$("div", {
  3249. className: "U_MD_D_KO",
  3250. "onmousedown": U.UF.C.closure(function (obj) {
  3251. //防止拖动图标即打开了桌面应用
  3252. U.MD.D.click(this, obj);
  3253. }, [_thuioeTeacherDeskIconInfo[i]]),
  3254. "onclick": U.UF.C.closure(function (obj) {
  3255. //防止拖动图标即打开了桌面应用
  3256. U.MD.D.click(this, obj);
  3257. }, [_thuioeTeacherDeskIconInfo[i]])
  3258. }, _frag); //
  3259. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3260. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3261. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3262. }
  3263. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3264. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3265. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3266. continue
  3267. }
  3268. _content = $$("div", {
  3269. className: "U_MD_D_KO",
  3270. "onmousedown": U.UF.C.closure(function (obj) {
  3271. //防止拖动图标即打开了桌面应用
  3272. U.MD.D.click(this, obj);
  3273. }, [_lotechTeacherDeskIconInfo[i]]),
  3274. "onclick": U.UF.C.closure(function (obj) {
  3275. //防止拖动图标即打开了桌面应用
  3276. U.MD.D.click(this, obj);
  3277. }, [_lotechTeacherDeskIconInfo[i]])
  3278. }, _frag); //
  3279. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3280. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3281. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3282. }//
  3283. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3284. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3285. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3286. continue
  3287. }
  3288. _content = $$("div", {
  3289. className: "U_MD_D_KO",
  3290. "onmousedown": U.UF.C.closure(function (obj) {
  3291. //防止拖动图标即打开了桌面应用
  3292. U.MD.D.click(this, obj);
  3293. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3294. "onclick": U.UF.C.closure(function (obj) {
  3295. //防止拖动图标即打开了桌面应用
  3296. U.MD.D.click(this, obj);
  3297. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3298. }, _frag); //
  3299. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3300. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3301. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3302. }
  3303. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3304. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3305. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3306. continue
  3307. }
  3308. _content = $$("div", {
  3309. className: "U_MD_D_KO",
  3310. "onmousedown": U.UF.C.closure(function (obj) {
  3311. //防止拖动图标即打开了桌面应用
  3312. U.MD.D.click(this, obj);
  3313. }, [_siesTeacherDeskIconInfo[i]]),
  3314. "onclick": U.UF.C.closure(function (obj) {
  3315. //防止拖动图标即打开了桌面应用
  3316. U.MD.D.click(this, obj);
  3317. }, [_siesTeacherDeskIconInfo[i]])
  3318. }, _frag); //
  3319. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3320. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3321. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3322. }
  3323. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3324. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3325. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3326. continue
  3327. }
  3328. _content = $$("div", {
  3329. className: "U_MD_D_KO",
  3330. "onmousedown": U.UF.C.closure(function (obj) {
  3331. //防止拖动图标即打开了桌面应用
  3332. U.MD.D.click(this, obj);
  3333. }, [_guzmsTeacherDeskIconInfo[i]]),
  3334. "onclick": U.UF.C.closure(function (obj) {
  3335. //防止拖动图标即打开了桌面应用
  3336. U.MD.D.click(this, obj);
  3337. }, [_guzmsTeacherDeskIconInfo[i]])
  3338. }, _frag); //
  3339. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3340. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3341. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3342. }
  3343. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3344. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3345. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3346. continue
  3347. }
  3348. _content = $$("div", {
  3349. className: "U_MD_D_KO",
  3350. "onmousedown": U.UF.C.closure(function (obj) {
  3351. //防止拖动图标即打开了桌面应用
  3352. U.MD.D.click(this, obj);
  3353. }, [_longhuaTeacherDeskIconInfo[i]]),
  3354. "onclick": U.UF.C.closure(function (obj) {
  3355. //防止拖动图标即打开了桌面应用
  3356. U.MD.D.click(this, obj);
  3357. }, [_longhuaTeacherDeskIconInfo[i]])
  3358. }, _frag); //
  3359. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3360. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3361. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3362. }
  3363. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3364. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3365. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3366. continue
  3367. }
  3368. _content = $$("div", {
  3369. className: "U_MD_D_KO",
  3370. "onmousedown": U.UF.C.closure(function (obj) {
  3371. //防止拖动图标即打开了桌面应用
  3372. U.MD.D.click(this, obj);
  3373. }, [_ytyTeacherDeskIconInfo[i]]),
  3374. "onclick": U.UF.C.closure(function (obj) {
  3375. //防止拖动图标即打开了桌面应用
  3376. U.MD.D.click(this, obj);
  3377. }, [_ytyTeacherDeskIconInfo[i]])
  3378. }, _frag); //
  3379. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3380. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3381. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3382. }
  3383. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3384. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3385. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3386. continue
  3387. }
  3388. _content = $$("div", {
  3389. className: "U_MD_D_KO",
  3390. "onmousedown": U.UF.C.closure(function (obj) {
  3391. //防止拖动图标即打开了桌面应用
  3392. U.MD.D.click(this, obj);
  3393. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3394. "onclick": U.UF.C.closure(function (obj) {
  3395. //防止拖动图标即打开了桌面应用
  3396. U.MD.D.click(this, obj);
  3397. }, [_yunhaiTeacherDeskIconInfo[i]])
  3398. }, _frag); //
  3399. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3400. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3401. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3402. } //_hkStudentDeskIconInfo
  3403. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3404. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3405. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3406. continue
  3407. }
  3408. _content = $$("div", {
  3409. className: "U_MD_D_KO",
  3410. "onmousedown": U.UF.C.closure(function (obj) {
  3411. //防止拖动图标即打开了桌面应用
  3412. U.MD.D.click(this, obj);
  3413. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3414. "onclick": U.UF.C.closure(function (obj) {
  3415. //防止拖动图标即打开了桌面应用
  3416. U.MD.D.click(this, obj);
  3417. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3418. }, _frag); //
  3419. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3420. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3421. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3422. }
  3423. } else if ((_type == 1 || _type == 4) && (_oid == "91796dfb-8791-11ef-9b30-005056b86db5")) {
  3424. for (i = 0; i < _ricohTeacherDeskIconInfo.length; i++) {
  3425. if(_role === 0 && _ricohTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3426. continue
  3427. }
  3428. _content = $$("div", {
  3429. className: "U_MD_D_KO",
  3430. "onmousedown": U.UF.C.closure(function (obj) {
  3431. //防止拖动图标即打开了桌面应用
  3432. U.MD.D.click(this, obj);
  3433. }, [_ricohTeacherDeskIconInfo[i]]),
  3434. "onclick": U.UF.C.closure(function (obj) {
  3435. //防止拖动图标即打开了桌面应用
  3436. U.MD.D.click(this, obj);
  3437. }, [_ricohTeacherDeskIconInfo[i]])
  3438. }, _frag); //
  3439. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3440. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ricohTeacherDeskIconInfo[i].style }, _iconcontent);
  3441. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ricohTeacherDeskIconInfo[i].Name }, _iconcontent);
  3442. }
  3443. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3444. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3445. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3446. continue
  3447. }
  3448. _content = $$("div", {
  3449. className: "U_MD_D_KO",
  3450. "onmousedown": U.UF.C.closure(function (obj) {
  3451. //防止拖动图标即打开了桌面应用
  3452. U.MD.D.click(this, obj);
  3453. }, [_hkTeacherDeskIconInfo[i]]),
  3454. "onclick": U.UF.C.closure(function (obj) {
  3455. //防止拖动图标即打开了桌面应用
  3456. U.MD.D.click(this, obj);
  3457. }, [_hkTeacherDeskIconInfo[i]])
  3458. }, _frag); //
  3459. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3460. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3461. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3462. }
  3463. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3464. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3465. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3466. continue
  3467. }
  3468. _content = $$("div", {
  3469. className: "U_MD_D_KO",
  3470. "onmousedown": U.UF.C.closure(function (obj) {
  3471. //防止拖动图标即打开了桌面应用
  3472. U.MD.D.click(this, obj);
  3473. }, [_hkaceTeacherDeskIconInfo[i]]),
  3474. "onclick": U.UF.C.closure(function (obj) {
  3475. //防止拖动图标即打开了桌面应用
  3476. U.MD.D.click(this, obj);
  3477. }, [_hkaceTeacherDeskIconInfo[i]])
  3478. }, _frag); //
  3479. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3480. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3481. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3482. }
  3483. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3484. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3485. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3486. continue
  3487. }
  3488. _content = $$("div", {
  3489. className: "U_MD_D_KO",
  3490. "onmousedown": U.UF.C.closure(function (obj) {
  3491. //防止拖动图标即打开了桌面应用
  3492. U.MD.D.click(this, obj);
  3493. }, [_cocobizTeacherDeskIconInfo[i]]),
  3494. "onclick": U.UF.C.closure(function (obj) {
  3495. //防止拖动图标即打开了桌面应用
  3496. U.MD.D.click(this, obj);
  3497. }, [_cocobizTeacherDeskIconInfo[i]])
  3498. }, _frag); //
  3499. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3500. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3501. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3502. }
  3503. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3504. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3505. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3506. continue
  3507. }
  3508. _content = $$("div", {
  3509. className: "U_MD_D_KO",
  3510. "onmousedown": U.UF.C.closure(function (obj) {
  3511. //防止拖动图标即打开了桌面应用
  3512. U.MD.D.click(this, obj);
  3513. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3514. "onclick": U.UF.C.closure(function (obj) {
  3515. //防止拖动图标即打开了桌面应用
  3516. U.MD.D.click(this, obj);
  3517. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3518. }, _frag); //
  3519. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3520. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3521. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3522. }
  3523. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3524. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3525. _content = $$("div", {
  3526. className: "U_MD_D_KO",
  3527. "onmousedown": U.UF.C.closure(function (obj) {
  3528. //防止拖动图标即打开了桌面应用
  3529. U.MD.D.click(this, obj);
  3530. }, [_gdjgAdminDeskIconInfo[i]]),
  3531. "onclick": U.UF.C.closure(function (obj) {
  3532. //防止拖动图标即打开了桌面应用
  3533. U.MD.D.click(this, obj);
  3534. }, [_gdjgAdminDeskIconInfo[i]])
  3535. }, _frag); //
  3536. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3537. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3538. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3539. }
  3540. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3541. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3542. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3543. continue
  3544. }
  3545. _content = $$("div", {
  3546. className: "U_MD_D_KO",
  3547. "onmousedown": U.UF.C.closure(function (obj) {
  3548. //防止拖动图标即打开了桌面应用
  3549. U.MD.D.click(this, obj);
  3550. }, [_gdjgTeacherDeskIconInfo[i]]),
  3551. "onclick": U.UF.C.closure(function (obj) {
  3552. //防止拖动图标即打开了桌面应用
  3553. U.MD.D.click(this, obj);
  3554. }, [_gdjgTeacherDeskIconInfo[i]])
  3555. }, _frag); //
  3556. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3557. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3558. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3559. }
  3560. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3561. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3562. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3563. continue
  3564. }
  3565. _content = $$("div", {
  3566. className: "U_MD_D_KO",
  3567. "onmousedown": U.UF.C.closure(function (obj) {
  3568. //防止拖动图标即打开了桌面应用
  3569. U.MD.D.click(this, obj);
  3570. }, [_szherTeacherDeskIconInfo[i]]),
  3571. "onclick": U.UF.C.closure(function (obj) {
  3572. //防止拖动图标即打开了桌面应用
  3573. U.MD.D.click(this, obj);
  3574. }, [_szherTeacherDeskIconInfo[i]])
  3575. }, _frag); //
  3576. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3577. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3578. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3579. }
  3580. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3581. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3582. _content = $$("div", {
  3583. className: "U_MD_D_KO",
  3584. "onmousedown": U.UF.C.closure(function (obj) {
  3585. //防止拖动图标即打开了桌面应用
  3586. U.MD.D.click(this, obj);
  3587. }, [_heyuannAdminDeskIconInfo[i]]),
  3588. "onclick": U.UF.C.closure(function (obj) {
  3589. //防止拖动图标即打开了桌面应用
  3590. U.MD.D.click(this, obj);
  3591. }, [_heyuannAdminDeskIconInfo[i]])
  3592. }, _frag); //
  3593. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3594. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3595. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3596. }
  3597. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3598. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3599. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3600. continue
  3601. }
  3602. _content = $$("div", {
  3603. className: "U_MD_D_KO",
  3604. "onmousedown": U.UF.C.closure(function (obj) {
  3605. //防止拖动图标即打开了桌面应用
  3606. U.MD.D.click(this, obj);
  3607. }, [_heyuanTeacherDeskIconInfo[i]]),
  3608. "onclick": U.UF.C.closure(function (obj) {
  3609. //防止拖动图标即打开了桌面应用
  3610. U.MD.D.click(this, obj);
  3611. }, [_heyuanTeacherDeskIconInfo[i]])
  3612. }, _frag); //
  3613. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3614. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3615. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3616. } //
  3617. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3618. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3619. _content = $$("div", {
  3620. className: "U_MD_D_KO",
  3621. "onmousedown": U.UF.C.closure(function (obj) {
  3622. //防止拖动图标即打开了桌面应用
  3623. U.MD.D.click(this, obj);
  3624. }, [_dseiAdminDeskIconInfo[i]]),
  3625. "onclick": U.UF.C.closure(function (obj) {
  3626. //防止拖动图标即打开了桌面应用
  3627. U.MD.D.click(this, obj);
  3628. }, [_dseiAdminDeskIconInfo[i]])
  3629. }, _frag); //
  3630. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3631. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3632. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3633. }
  3634. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3635. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3636. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3637. continue
  3638. }
  3639. _content = $$("div", {
  3640. className: "U_MD_D_KO",
  3641. "onmousedown": U.UF.C.closure(function (obj) {
  3642. //防止拖动图标即打开了桌面应用
  3643. U.MD.D.click(this, obj);
  3644. }, [_dseiTeacherDeskIconInfo[i]]),
  3645. "onclick": U.UF.C.closure(function (obj) {
  3646. //防止拖动图标即打开了桌面应用
  3647. U.MD.D.click(this, obj);
  3648. }, [_dseiTeacherDeskIconInfo[i]])
  3649. }, _frag); //
  3650. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3651. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3652. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3653. } //
  3654. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3655. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3656. _content = $$("div", {
  3657. className: "U_MD_D_KO",
  3658. "onmousedown": U.UF.C.closure(function (obj) {
  3659. //防止拖动图标即打开了桌面应用
  3660. U.MD.D.click(this, obj);
  3661. }, [_chjyjAdminDeskIconInfo[i]]),
  3662. "onclick": U.UF.C.closure(function (obj) {
  3663. //防止拖动图标即打开了桌面应用
  3664. U.MD.D.click(this, obj);
  3665. }, [_chjyjAdminDeskIconInfo[i]])
  3666. }, _frag); //
  3667. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3668. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3669. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3670. }//
  3671. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3672. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3673. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3674. continue
  3675. }
  3676. _content = $$("div", {
  3677. className: "U_MD_D_KO",
  3678. "onmousedown": U.UF.C.closure(function (obj) {
  3679. //防止拖动图标即打开了桌面应用
  3680. U.MD.D.click(this, obj);
  3681. }, [_chjyjTeacherDeskIconInfo[i]]),
  3682. "onclick": U.UF.C.closure(function (obj) {
  3683. //防止拖动图标即打开了桌面应用
  3684. U.MD.D.click(this, obj);
  3685. }, [_chjyjTeacherDeskIconInfo[i]])
  3686. }, _frag); //
  3687. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3688. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3689. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3690. }
  3691. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3692. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3693. _content = $$("div", {
  3694. className: "U_MD_D_KO",
  3695. "onmousedown": U.UF.C.closure(function (obj) {
  3696. //防止拖动图标即打开了桌面应用
  3697. U.MD.D.click(this, obj);
  3698. }, [_szjkyAdminDeskIconInfo[i]]),
  3699. "onclick": U.UF.C.closure(function (obj) {
  3700. //防止拖动图标即打开了桌面应用
  3701. U.MD.D.click(this, obj);
  3702. }, [_szjkyAdminDeskIconInfo[i]])
  3703. }, _frag); //
  3704. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3705. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3706. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3707. }//
  3708. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3709. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3710. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3711. continue
  3712. }
  3713. _content = $$("div", {
  3714. className: "U_MD_D_KO",
  3715. "onmousedown": U.UF.C.closure(function (obj) {
  3716. //防止拖动图标即打开了桌面应用
  3717. U.MD.D.click(this, obj);
  3718. }, [_szjkyTeacherDeskIconInfo[i]]),
  3719. "onclick": U.UF.C.closure(function (obj) {
  3720. //防止拖动图标即打开了桌面应用
  3721. U.MD.D.click(this, obj);
  3722. }, [_szjkyTeacherDeskIconInfo[i]])
  3723. }, _frag); //
  3724. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3725. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3726. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3727. }
  3728. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3729. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3730. _content = $$("div", {
  3731. className: "U_MD_D_KO",
  3732. "onmousedown": U.UF.C.closure(function (obj) {
  3733. //防止拖动图标即打开了桌面应用
  3734. U.MD.D.click(this, obj);
  3735. }, [_x020201AdminDeskIconInfo[i]]),
  3736. "onclick": U.UF.C.closure(function (obj) {
  3737. //防止拖动图标即打开了桌面应用
  3738. U.MD.D.click(this, obj);
  3739. }, [_x020201AdminDeskIconInfo[i]])
  3740. }, _frag); //
  3741. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3742. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3743. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3744. }//
  3745. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3746. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3747. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3748. continue
  3749. }
  3750. _content = $$("div", {
  3751. className: "U_MD_D_KO",
  3752. "onmousedown": U.UF.C.closure(function (obj) {
  3753. //防止拖动图标即打开了桌面应用
  3754. U.MD.D.click(this, obj);
  3755. }, [_x020201TeacherDeskIconInfo[i]]),
  3756. "onclick": U.UF.C.closure(function (obj) {
  3757. //防止拖动图标即打开了桌面应用
  3758. U.MD.D.click(this, obj);
  3759. }, [_x020201TeacherDeskIconInfo[i]])
  3760. }, _frag); //
  3761. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3762. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3763. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3764. }
  3765. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3766. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3767. _content = $$("div", {
  3768. className: "U_MD_D_KO",
  3769. "onmousedown": U.UF.C.closure(function (obj) {
  3770. //防止拖动图标即打开了桌面应用
  3771. U.MD.D.click(this, obj);
  3772. }, [_SCNUETAdminDeskIconInfo[i]]),
  3773. "onclick": U.UF.C.closure(function (obj) {
  3774. //防止拖动图标即打开了桌面应用
  3775. U.MD.D.click(this, obj);
  3776. }, [_SCNUETAdminDeskIconInfo[i]])
  3777. }, _frag); //
  3778. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3779. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3780. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3781. }//
  3782. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3783. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3784. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3785. continue
  3786. }
  3787. _content = $$("div", {
  3788. className: "U_MD_D_KO",
  3789. "onmousedown": U.UF.C.closure(function (obj) {
  3790. //防止拖动图标即打开了桌面应用
  3791. U.MD.D.click(this, obj);
  3792. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3793. "onclick": U.UF.C.closure(function (obj) {
  3794. //防止拖动图标即打开了桌面应用
  3795. U.MD.D.click(this, obj);
  3796. }, [_SCNUETTeacherDeskIconInfo[i]])
  3797. }, _frag); //
  3798. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3799. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3800. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3801. }
  3802. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3803. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3804. _content = $$("div", {
  3805. className: "U_MD_D_KO",
  3806. "onmousedown": U.UF.C.closure(function (obj) {
  3807. //防止拖动图标即打开了桌面应用
  3808. U.MD.D.click(this, obj);
  3809. }, [_futianAdminDeskIconInfo[i]]),
  3810. "onclick": U.UF.C.closure(function (obj) {
  3811. //防止拖动图标即打开了桌面应用
  3812. U.MD.D.click(this, obj);
  3813. }, [_futianAdminDeskIconInfo[i]])
  3814. }, _frag); //
  3815. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3816. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3817. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3818. }
  3819. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3820. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3821. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3822. continue
  3823. }
  3824. _content = $$("div", {
  3825. className: "U_MD_D_KO",
  3826. "onmousedown": U.UF.C.closure(function (obj) {
  3827. //防止拖动图标即打开了桌面应用
  3828. U.MD.D.click(this, obj);
  3829. }, [_futianTeacherDeskIconInfo[i]]),
  3830. "onclick": U.UF.C.closure(function (obj) {
  3831. //防止拖动图标即打开了桌面应用
  3832. U.MD.D.click(this, obj);
  3833. }, [_futianTeacherDeskIconInfo[i]])
  3834. }, _frag); //
  3835. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3836. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3837. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3838. }
  3839. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3840. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3841. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3842. continue
  3843. }
  3844. _content = $$("div", {
  3845. className: "U_MD_D_KO",
  3846. "onmousedown": U.UF.C.closure(function (obj) {
  3847. //防止拖动图标即打开了桌面应用
  3848. U.MD.D.click(this, obj);
  3849. }, [_MingdeTeacherDeskIcon[i]]),
  3850. "onclick": U.UF.C.closure(function (obj) {
  3851. //防止拖动图标即打开了桌面应用
  3852. U.MD.D.click(this, obj);
  3853. }, [_MingdeTeacherDeskIcon[i]])
  3854. }, _frag); //
  3855. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3856. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3857. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3858. }
  3859. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3860. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3861. _content = $$("div", {
  3862. className: "U_MD_D_KO",
  3863. "onmousedown": U.UF.C.closure(function (obj) {
  3864. //防止拖动图标即打开了桌面应用
  3865. U.MD.D.click(this, obj);
  3866. }, [_lhsAdminDesktopIconInfo[i]]),
  3867. "onclick": U.UF.C.closure(function (obj) {
  3868. //防止拖动图标即打开了桌面应用
  3869. U.MD.D.click(this, obj);
  3870. }, [_lhsAdminDesktopIconInfo[i]])
  3871. }, _frag); //
  3872. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3873. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3874. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3875. }
  3876. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3877. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3878. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3879. continue
  3880. }
  3881. _content = $$("div", {
  3882. className: "U_MD_D_KO",
  3883. "onmousedown": U.UF.C.closure(function (obj) {
  3884. //防止拖动图标即打开了桌面应用
  3885. U.MD.D.click(this, obj);
  3886. }, [_lhsteacherDesktopIconInfo[i]]),
  3887. "onclick": U.UF.C.closure(function (obj) {
  3888. //防止拖动图标即打开了桌面应用
  3889. U.MD.D.click(this, obj);
  3890. }, [_lhsteacherDesktopIconInfo[i]])
  3891. }, _frag); //
  3892. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3893. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3894. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3895. }
  3896. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3897. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3898. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3899. continue
  3900. }
  3901. _content = $$("div", {
  3902. className: "U_MD_D_KO",
  3903. "onmousedown": U.UF.C.closure(function (obj) {
  3904. //防止拖动图标即打开了桌面应用
  3905. U.MD.D.click(this, obj);
  3906. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3907. "onclick": U.UF.C.closure(function (obj) {
  3908. //防止拖动图标即打开了桌面应用
  3909. U.MD.D.click(this, obj);
  3910. }, [_zhoujiateacherDesktopIconInfo[i]])
  3911. }, _frag); //
  3912. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3913. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3914. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3915. }
  3916. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3917. for (i = 0; i < _hanDeskIcon.length; i++) {
  3918. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3919. continue
  3920. }
  3921. _content = $$("div", {
  3922. className: "U_MD_D_KO",
  3923. "onmousedown": U.UF.C.closure(function (obj) {
  3924. //防止拖动图标即打开了桌面应用
  3925. U.MD.D.click(this, obj);
  3926. }, [_hanDeskIcon[i]]),
  3927. "onclick": U.UF.C.closure(function (obj) {
  3928. //防止拖动图标即打开了桌面应用
  3929. U.MD.D.click(this, obj);
  3930. }, [_hanDeskIcon[i]])
  3931. }, _frag); //
  3932. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3933. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3934. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3935. }
  3936. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3937. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3938. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3939. continue
  3940. }
  3941. _content = $$("div", {
  3942. className: "U_MD_D_KO",
  3943. "onmousedown": U.UF.C.closure(function (obj) {
  3944. //防止拖动图标即打开了桌面应用
  3945. U.MD.D.click(this, obj);
  3946. }, [_orgStemDeskIcon[i]]),
  3947. "onclick": U.UF.C.closure(function (obj) {
  3948. //防止拖动图标即打开了桌面应用
  3949. U.MD.D.click(this, obj);
  3950. }, [_orgStemDeskIcon[i]])
  3951. }, _frag); //
  3952. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3953. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3954. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3955. }
  3956. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3957. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3958. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3959. continue
  3960. }
  3961. _content = $$("div", {
  3962. className: "U_MD_D_KO",
  3963. "onmousedown": U.UF.C.closure(function (obj) {
  3964. //防止拖动图标即打开了桌面应用
  3965. U.MD.D.click(this, obj);
  3966. }, [_szulsDeskIcon[i]]),
  3967. "onclick": U.UF.C.closure(function (obj) {
  3968. //防止拖动图标即打开了桌面应用
  3969. U.MD.D.click(this, obj);
  3970. }, [_szulsDeskIcon[i]])
  3971. }, _frag); //
  3972. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3973. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3974. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3975. }
  3976. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3977. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3978. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3979. continue
  3980. }
  3981. _content = $$("div", {
  3982. className: "U_MD_D_KO",
  3983. "onmousedown": U.UF.C.closure(function (obj) {
  3984. //防止拖动图标即打开了桌面应用
  3985. U.MD.D.click(this, obj);
  3986. }, [_orgDesktopIconInfo[i]]),
  3987. "onclick": U.UF.C.closure(function (obj) {
  3988. //防止拖动图标即打开了桌面应用
  3989. U.MD.D.click(this, obj);
  3990. }, [_orgDesktopIconInfo[i]])
  3991. }, _frag); //
  3992. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3993. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3994. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3995. }
  3996. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3997. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3998. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3999. continue
  4000. }
  4001. _content = $$("div", {
  4002. className: "U_MD_D_KO",
  4003. "onmousedown": U.UF.C.closure(function (obj) {
  4004. //防止拖动图标即打开了桌面应用
  4005. U.MD.D.click(this, obj);
  4006. }, [_schoolDesktopIconInfo[i]]),
  4007. "onclick": U.UF.C.closure(function (obj) {
  4008. //防止拖动图标即打开了桌面应用
  4009. U.MD.D.click(this, obj);
  4010. }, [_schoolDesktopIconInfo[i]])
  4011. }, _frag); //
  4012. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4013. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  4014. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  4015. }
  4016. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4017. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  4018. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4019. continue
  4020. }
  4021. _content = $$("div", {
  4022. className: "U_MD_D_KO",
  4023. "onmousedown": U.UF.C.closure(function (obj) {
  4024. //防止拖动图标即打开了桌面应用
  4025. U.MD.D.click(this, obj);
  4026. }, [_GMteacherDesktopIconInfo[i]]),
  4027. "onclick": U.UF.C.closure(function (obj) {
  4028. //防止拖动图标即打开了桌面应用
  4029. U.MD.D.click(this, obj);
  4030. }, [_GMteacherDesktopIconInfo[i]])
  4031. }, _frag); //
  4032. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4033. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  4034. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  4035. }
  4036. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  4037. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  4038. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4039. continue
  4040. }
  4041. _content = $$("div", {
  4042. className: "U_MD_D_KO",
  4043. "onmousedown": U.UF.C.closure(function (obj) {
  4044. //防止拖动图标即打开了桌面应用
  4045. U.MD.D.click(this, obj);
  4046. }, [_SONGteacherDesktopIconInfo[i]]),
  4047. "onclick": U.UF.C.closure(function (obj) {
  4048. //防止拖动图标即打开了桌面应用
  4049. U.MD.D.click(this, obj);
  4050. }, [_SONGteacherDesktopIconInfo[i]])
  4051. }, _frag); //
  4052. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4053. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  4054. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  4055. }
  4056. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4057. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  4058. _content = $$("div", {
  4059. className: "U_MD_D_KO",
  4060. "onmousedown": U.UF.C.closure(function (obj) {
  4061. //防止拖动图标即打开了桌面应用
  4062. U.MD.D.click(this, obj);
  4063. }, [_GMstudentDesktopIconInfo[i]]),
  4064. "onclick": U.UF.C.closure(function (obj) {
  4065. //防止拖动图标即打开了桌面应用
  4066. U.MD.D.click(this, obj);
  4067. }, [_GMstudentDesktopIconInfo[i]])
  4068. }, _frag); //
  4069. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4070. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  4071. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  4072. }
  4073. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  4074. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  4075. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4076. continue
  4077. }
  4078. _content = $$("div", {
  4079. className: "U_MD_D_KO",
  4080. "onmousedown": U.UF.C.closure(function (obj) {
  4081. //防止拖动图标即打开了桌面应用
  4082. U.MD.D.click(this, obj);
  4083. }, [_tcTeacherDeskIconInfo[i]]),
  4084. "onclick": U.UF.C.closure(function (obj) {
  4085. //防止拖动图标即打开了桌面应用
  4086. U.MD.D.click(this, obj);
  4087. }, [_tcTeacherDeskIconInfo[i]])
  4088. }, _frag); //
  4089. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4090. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  4091. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  4092. }
  4093. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  4094. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  4095. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4096. continue
  4097. }
  4098. _content = $$("div", {
  4099. className: "U_MD_D_KO",
  4100. "onmousedown": U.UF.C.closure(function (obj) {
  4101. //防止拖动图标即打开了桌面应用
  4102. U.MD.D.click(this, obj);
  4103. }, [_tcOrganizerDeskIconInfo[i]]),
  4104. "onclick": U.UF.C.closure(function (obj) {
  4105. //防止拖动图标即打开了桌面应用
  4106. U.MD.D.click(this, obj);
  4107. }, [_tcOrganizerDeskIconInfo[i]])
  4108. }, _frag); //
  4109. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4110. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  4111. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4112. }
  4113. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  4114. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  4115. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4116. continue
  4117. }
  4118. _content = $$("div", {
  4119. className: "U_MD_D_KO",
  4120. "onmousedown": U.UF.C.closure(function (obj) {
  4121. //防止拖动图标即打开了桌面应用
  4122. U.MD.D.click(this, obj);
  4123. }, [_szscTeacherDeskIconInfo[i]]),
  4124. "onclick": U.UF.C.closure(function (obj) {
  4125. //防止拖动图标即打开了桌面应用
  4126. U.MD.D.click(this, obj);
  4127. }, [_szscTeacherDeskIconInfo[i]])
  4128. }, _frag); //
  4129. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4130. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  4131. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  4132. }
  4133. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  4134. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  4135. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4136. continue
  4137. }
  4138. _content = $$("div", {
  4139. className: "U_MD_D_KO",
  4140. "onmousedown": U.UF.C.closure(function (obj) {
  4141. //防止拖动图标即打开了桌面应用
  4142. U.MD.D.click(this, obj);
  4143. }, [_szscOrganizerDeskIconInfo[i]]),
  4144. "onclick": U.UF.C.closure(function (obj) {
  4145. //防止拖动图标即打开了桌面应用
  4146. U.MD.D.click(this, obj);
  4147. }, [_szscOrganizerDeskIconInfo[i]])
  4148. }, _frag); //
  4149. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4150. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  4151. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4152. }
  4153. } else if ((_type == 1 || _type == 4) && _org == "7cc601a0-fafc-4116-a805-0adbacf7a38d") {
  4154. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  4155. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4156. continue
  4157. }
  4158. _content = $$("div", {
  4159. className: "U_MD_D_KO",
  4160. "onmousedown": U.UF.C.closure(function (obj) {
  4161. //防止拖动图标即打开了桌面应用
  4162. U.MD.D.click(this, obj);
  4163. }, [_nsfxTeacherDeskIconInfo[i]]),
  4164. "onclick": U.UF.C.closure(function (obj) {
  4165. //防止拖动图标即打开了桌面应用
  4166. U.MD.D.click(this, obj);
  4167. }, [_nsfxTeacherDeskIconInfo[i]])
  4168. }, _frag); //
  4169. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4170. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4171. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4172. }
  4173. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4174. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4175. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4176. continue
  4177. }
  4178. _content = $$("div", {
  4179. className: "U_MD_D_KO",
  4180. "onmousedown": U.UF.C.closure(function (obj) {
  4181. //防止拖动图标即打开了桌面应用
  4182. U.MD.D.click(this, obj);
  4183. }, [_stiaTeacherDeskIconInfo[i]]),
  4184. "onclick": U.UF.C.closure(function (obj) {
  4185. //防止拖动图标即打开了桌面应用
  4186. U.MD.D.click(this, obj);
  4187. }, [_stiaTeacherDeskIconInfo[i]])
  4188. }, _frag); //
  4189. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4190. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4191. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4192. }
  4193. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4194. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4195. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4196. continue
  4197. }
  4198. _content = $$("div", {
  4199. className: "U_MD_D_KO",
  4200. "onmousedown": U.UF.C.closure(function (obj) {
  4201. //防止拖动图标即打开了桌面应用
  4202. U.MD.D.click(this, obj);
  4203. }, [_szdjgTeacherDeskIconInfo[i]]),
  4204. "onclick": U.UF.C.closure(function (obj) {
  4205. //防止拖动图标即打开了桌面应用
  4206. U.MD.D.click(this, obj);
  4207. }, [_szdjgTeacherDeskIconInfo[i]])
  4208. }, _frag); //
  4209. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4210. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4211. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4212. }
  4213. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4214. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4215. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4216. continue
  4217. }
  4218. _content = $$("div", {
  4219. className: "U_MD_D_KO",
  4220. "onmousedown": U.UF.C.closure(function (obj) {
  4221. //防止拖动图标即打开了桌面应用
  4222. U.MD.D.click(this, obj);
  4223. }, [_x010607TeacherDeskIconInfo[i]]),
  4224. "onclick": U.UF.C.closure(function (obj) {
  4225. //防止拖动图标即打开了桌面应用
  4226. U.MD.D.click(this, obj);
  4227. }, [_x010607TeacherDeskIconInfo[i]])
  4228. }, _frag); //
  4229. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4230. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4231. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4232. }
  4233. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4234. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4235. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4236. continue
  4237. }
  4238. _content = $$("div", {
  4239. className: "U_MD_D_KO",
  4240. "onmousedown": U.UF.C.closure(function (obj) {
  4241. //防止拖动图标即打开了桌面应用
  4242. U.MD.D.click(this, obj);
  4243. }, [_xhlyTeacherDeskIconInfo[i]]),
  4244. "onclick": U.UF.C.closure(function (obj) {
  4245. //防止拖动图标即打开了桌面应用
  4246. U.MD.D.click(this, obj);
  4247. }, [_xhlyTeacherDeskIconInfo[i]])
  4248. }, _frag); //
  4249. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4250. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4251. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4252. }
  4253. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4254. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4255. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4256. continue
  4257. }
  4258. _content = $$("div", {
  4259. className: "U_MD_D_KO",
  4260. "onmousedown": U.UF.C.closure(function (obj) {
  4261. //防止拖动图标即打开了桌面应用
  4262. U.MD.D.click(this, obj);
  4263. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4264. "onclick": U.UF.C.closure(function (obj) {
  4265. //防止拖动图标即打开了桌面应用
  4266. U.MD.D.click(this, obj);
  4267. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4268. }, _frag); //
  4269. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4270. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4271. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4272. }
  4273. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4274. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4275. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4276. continue
  4277. }
  4278. _content = $$("div", {
  4279. className: "U_MD_D_KO",
  4280. "onmousedown": U.UF.C.closure(function (obj) {
  4281. //防止拖动图标即打开了桌面应用
  4282. U.MD.D.click(this, obj);
  4283. }, [_x010503TeacherDeskIconInfo[i]]),
  4284. "onclick": U.UF.C.closure(function (obj) {
  4285. //防止拖动图标即打开了桌面应用
  4286. U.MD.D.click(this, obj);
  4287. }, [_x010503TeacherDeskIconInfo[i]])
  4288. }, _frag); //
  4289. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4290. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4291. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4292. }
  4293. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4294. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4295. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4296. continue
  4297. }
  4298. _content = $$("div", {
  4299. className: "U_MD_D_KO",
  4300. "onmousedown": U.UF.C.closure(function (obj) {
  4301. //防止拖动图标即打开了桌面应用
  4302. U.MD.D.click(this, obj);
  4303. }, [_x010504TeacherDeskIconInfo[i]]),
  4304. "onclick": U.UF.C.closure(function (obj) {
  4305. //防止拖动图标即打开了桌面应用
  4306. U.MD.D.click(this, obj);
  4307. }, [_x010504TeacherDeskIconInfo[i]])
  4308. }, _frag); //
  4309. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4310. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4311. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4312. }
  4313. } else if ((_type == 1 || _type == 4) && _oid == "8406b214-085f-11f0-b508-005056924926") {
  4314. for (i = 0; i < _x010505TeacherDeskIconInfo.length; i++) {
  4315. if(_role === 0 && _x010505TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4316. continue
  4317. }
  4318. _content = $$("div", {
  4319. className: "U_MD_D_KO",
  4320. "onmousedown": U.UF.C.closure(function (obj) {
  4321. //防止拖动图标即打开了桌面应用
  4322. U.MD.D.click(this, obj);
  4323. }, [_x010505TeacherDeskIconInfo[i]]),
  4324. "onclick": U.UF.C.closure(function (obj) {
  4325. //防止拖动图标即打开了桌面应用
  4326. U.MD.D.click(this, obj);
  4327. }, [_x010505TeacherDeskIconInfo[i]])
  4328. }, _frag); //
  4329. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4330. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505TeacherDeskIconInfo[i].style }, _iconcontent);
  4331. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505TeacherDeskIconInfo[i].Name }, _iconcontent);
  4332. }
  4333. } else if ((_type == 1 || _type == 4) && _oid == "bc239322-ffb2-11ef-b508-005056924926") {
  4334. for (i = 0; i < _x010404TeacherDeskIconInfo.length; i++) {
  4335. if(_role === 0 && _x010404TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4336. continue
  4337. }
  4338. _content = $$("div", {
  4339. className: "U_MD_D_KO",
  4340. "onmousedown": U.UF.C.closure(function (obj) {
  4341. //防止拖动图标即打开了桌面应用
  4342. U.MD.D.click(this, obj);
  4343. }, [_x010404TeacherDeskIconInfo[i]]),
  4344. "onclick": U.UF.C.closure(function (obj) {
  4345. //防止拖动图标即打开了桌面应用
  4346. U.MD.D.click(this, obj);
  4347. }, [_x010404TeacherDeskIconInfo[i]])
  4348. }, _frag); //
  4349. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4350. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404TeacherDeskIconInfo[i].style }, _iconcontent);
  4351. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404TeacherDeskIconInfo[i].Name }, _iconcontent);
  4352. }
  4353. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4354. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4355. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4356. continue
  4357. }
  4358. _content = $$("div", {
  4359. className: "U_MD_D_KO",
  4360. "onmousedown": U.UF.C.closure(function (obj) {
  4361. //防止拖动图标即打开了桌面应用
  4362. U.MD.D.click(this, obj);
  4363. }, [_x010204TeacherDeskIconInfo[i]]),
  4364. "onclick": U.UF.C.closure(function (obj) {
  4365. //防止拖动图标即打开了桌面应用
  4366. U.MD.D.click(this, obj);
  4367. }, [_x010204TeacherDeskIconInfo[i]])
  4368. }, _frag); //
  4369. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4370. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4371. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4372. }
  4373. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4374. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4375. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4376. continue
  4377. }
  4378. _content = $$("div", {
  4379. className: "U_MD_D_KO",
  4380. "onmousedown": U.UF.C.closure(function (obj) {
  4381. //防止拖动图标即打开了桌面应用
  4382. U.MD.D.click(this, obj);
  4383. }, [_x320101TeacherDeskIconInfo[i]]),
  4384. "onclick": U.UF.C.closure(function (obj) {
  4385. //防止拖动图标即打开了桌面应用
  4386. U.MD.D.click(this, obj);
  4387. }, [_x320101TeacherDeskIconInfo[i]])
  4388. }, _frag); //
  4389. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4390. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4391. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4392. }
  4393. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4394. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4395. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4396. continue
  4397. }
  4398. _content = $$("div", {
  4399. className: "U_MD_D_KO",
  4400. "onmousedown": U.UF.C.closure(function (obj) {
  4401. //防止拖动图标即打开了桌面应用
  4402. U.MD.D.click(this, obj);
  4403. }, [_trailTeacherDeskIconInfo[i]]),
  4404. "onclick": U.UF.C.closure(function (obj) {
  4405. //防止拖动图标即打开了桌面应用
  4406. U.MD.D.click(this, obj);
  4407. }, [_trailTeacherDeskIconInfo[i]])
  4408. }, _frag); //
  4409. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4410. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4411. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4412. }
  4413. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4414. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4415. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4416. continue
  4417. }
  4418. _content = $$("div", {
  4419. className: "U_MD_D_KO",
  4420. "onmousedown": U.UF.C.closure(function (obj) {
  4421. //防止拖动图标即打开了桌面应用
  4422. U.MD.D.click(this, obj);
  4423. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4424. "onclick": U.UF.C.closure(function (obj) {
  4425. //防止拖动图标即打开了桌面应用
  4426. U.MD.D.click(this, obj);
  4427. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4428. }, _frag); //
  4429. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4430. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4431. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4432. }
  4433. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4434. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4435. if(_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4436. continue
  4437. }
  4438. _content = $$("div", {
  4439. className: "U_MD_D_KO",
  4440. "onmousedown": U.UF.C.closure(function (obj) {
  4441. //防止拖动图标即打开了桌面应用
  4442. U.MD.D.click(this, obj);
  4443. }, [_szsyTeacherDeskIconInfo[i]]),
  4444. "onclick": U.UF.C.closure(function (obj) {
  4445. //防止拖动图标即打开了桌面应用
  4446. U.MD.D.click(this, obj);
  4447. }, [_szsyTeacherDeskIconInfo[i]])
  4448. }, _frag); //
  4449. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4450. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4451. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4452. }
  4453. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4454. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4455. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4456. continue
  4457. }
  4458. _content = $$("div", {
  4459. className: "U_MD_D_KO",
  4460. "onmousedown": U.UF.C.closure(function (obj) {
  4461. //防止拖动图标即打开了桌面应用
  4462. U.MD.D.click(this, obj);
  4463. }, [_x010608TeacherDeskIconInfo[i]]),
  4464. "onclick": U.UF.C.closure(function (obj) {
  4465. //防止拖动图标即打开了桌面应用
  4466. U.MD.D.click(this, obj);
  4467. }, [_x010608TeacherDeskIconInfo[i]])
  4468. }, _frag); //
  4469. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4470. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4471. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4472. }
  4473. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4474. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4475. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4476. continue
  4477. }
  4478. _content = $$("div", {
  4479. className: "U_MD_D_KO",
  4480. "onmousedown": U.UF.C.closure(function (obj) {
  4481. //防止拖动图标即打开了桌面应用
  4482. U.MD.D.click(this, obj);
  4483. }, [_x010611TeacherDeskIconInfo[i]]),
  4484. "onclick": U.UF.C.closure(function (obj) {
  4485. //防止拖动图标即打开了桌面应用
  4486. U.MD.D.click(this, obj);
  4487. }, [_x010611TeacherDeskIconInfo[i]])
  4488. }, _frag); //
  4489. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4490. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4491. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4492. }
  4493. } else if ((_type == 1 || _type == 4) && _oid == "86fa8cd7-00c2-11f0-b508-005056924926") {
  4494. for (i = 0; i < _x010612TeacherDeskIconInfo.length; i++) {
  4495. if(_role === 0 && _x010612TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4496. continue
  4497. }
  4498. _content = $$("div", {
  4499. className: "U_MD_D_KO",
  4500. "onmousedown": U.UF.C.closure(function (obj) {
  4501. //防止拖动图标即打开了桌面应用
  4502. U.MD.D.click(this, obj);
  4503. }, [_x010612TeacherDeskIconInfo[i]]),
  4504. "onclick": U.UF.C.closure(function (obj) {
  4505. //防止拖动图标即打开了桌面应用
  4506. U.MD.D.click(this, obj);
  4507. }, [_x010612TeacherDeskIconInfo[i]])
  4508. }, _frag); //
  4509. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4510. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612TeacherDeskIconInfo[i].style }, _iconcontent);
  4511. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612TeacherDeskIconInfo[i].Name }, _iconcontent);
  4512. }
  4513. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4514. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4515. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4516. continue
  4517. }
  4518. _content = $$("div", {
  4519. className: "U_MD_D_KO",
  4520. "onmousedown": U.UF.C.closure(function (obj) {
  4521. //防止拖动图标即打开了桌面应用
  4522. U.MD.D.click(this, obj);
  4523. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4524. "onclick": U.UF.C.closure(function (obj) {
  4525. //防止拖动图标即打开了桌面应用
  4526. U.MD.D.click(this, obj);
  4527. }, [_tianyuanTeacherDeskIconInfo[i]])
  4528. }, _frag); //
  4529. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4530. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4531. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4532. }
  4533. } else {
  4534. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4535. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4536. continue
  4537. }
  4538. _content = $$("div", {
  4539. className: "U_MD_D_KO",
  4540. "onmousedown": U.UF.C.closure(function (obj) {
  4541. //防止拖动图标即打开了桌面应用
  4542. U.MD.D.click(this, obj);
  4543. }, [_teacherDesktopIconInfo[i]]),
  4544. "onclick": U.UF.C.closure(function (obj) {
  4545. //防止拖动图标即打开了桌面应用
  4546. U.MD.D.click(this, obj);
  4547. }, [_teacherDesktopIconInfo[i]])
  4548. }, _frag); //
  4549. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4550. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4551. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4552. }
  4553. }
  4554. } else {
  4555. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4556. _content = $$("div", {
  4557. className: "U_MD_D_KO",
  4558. style: { 'width': '124px', 'height': '145px' },
  4559. "onmousedown": U.UF.C.closure(function (obj) {
  4560. //防止拖动图标即打开了桌面应用
  4561. U.MD.D.click(this, obj);
  4562. }, [_easyDesktopIconInfo[i]]),
  4563. "onclick": U.UF.C.closure(function (obj) {
  4564. //防止拖动图标即打开了桌面应用
  4565. U.MD.D.click(this, obj);
  4566. }, [_easyDesktopIconInfo[i]])
  4567. }, _frag); //
  4568. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4569. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4570. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4571. }
  4572. }
  4573. if (type == 1) {
  4574. //加载好后给图标定位
  4575. U.MD.D.iconPostion($(_frag).Child());
  4576. } else {
  4577. //加载好后给图标定位
  4578. U.MD.D.iconPostion2($(_frag).Child());
  4579. }
  4580. //把图标加载到页面
  4581. el.appendChild(_frag);
  4582. }
  4583. /**
  4584. * 显示任务栏
  4585. *
  4586. * @param {element} 桌面元素
  4587. */
  4588. U.MD.D.I.displayTaskbar = function (el) {
  4589. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4590. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4591. //任务栏位置变化
  4592. U.selectEl(el).css({ "bottom": "0px" });
  4593. //桌面位置变话
  4594. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4595. }
  4596. }
  4597. //#region 桌面图标拖动逻辑
  4598. /**
  4599. * 桌面排列图标
  4600. *
  4601. * @param {element} 桌面元素
  4602. * @param {object} 上下相距的距离
  4603. * @param {object} 左右相距的距离
  4604. * @return {object} 命名空间
  4605. */
  4606. U.MD.D.iconPostion = function (childs, top, left) {
  4607. var i; //用于循环处理
  4608. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4609. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4610. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4611. for (i = 0; i < childs.length; i++) {
  4612. //如果竖排top超过了范围处理
  4613. if (top + 95 > US.height - 10) {
  4614. //left超过了页面范围处理,则向上重叠打印处理
  4615. if ((left + 180) > US.width) {
  4616. top -= 110;
  4617. left -= 90;
  4618. }
  4619. //没有超过范围,那么left+90添加到下一个竖排打印
  4620. else {
  4621. left += 90;
  4622. top = 15;
  4623. };
  4624. }
  4625. //给图标的位置赋值
  4626. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4627. if (i < childs.length - 1) {
  4628. //页面图标每次向下加95
  4629. top += 95;
  4630. }
  4631. }
  4632. //返回最后调用的图标的位置
  4633. return [top, left];
  4634. }
  4635. /**
  4636. * 桌面排列图标
  4637. *
  4638. * @param {element} 桌面元素
  4639. * @param {object} 上下相距的距离
  4640. * @param {object} 左右相距的距离
  4641. * @return {object} 命名空间
  4642. */
  4643. U.MD.D.iconPostion2 = function (childs, top, left) {
  4644. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4645. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4646. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4647. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4648. for (i = 0; i < childs.length; i++) {
  4649. //如果竖排top超过了范围处理
  4650. if (left + 150 > US.width - 10) {
  4651. //left超过了页面范围处理,则向上重叠打印处理
  4652. if ((top + 180) > US.Height) {
  4653. top -= 150;
  4654. left -= 150;
  4655. }
  4656. //没有超过范围,那么left+90添加到下一个竖排打印
  4657. else {
  4658. top += 150;
  4659. left = ol;
  4660. };
  4661. }
  4662. //给图标的位置赋值
  4663. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4664. if (i < childs.length - 1) {
  4665. //页面图标每次向下加95
  4666. left += 150;
  4667. }
  4668. }
  4669. //返回最后调用的图标的位置
  4670. return [top, left];
  4671. }
  4672. /**
  4673. * 桌面点击事件逻辑
  4674. *
  4675. * @param {element} 桌面元素
  4676. * @param {object} 上下相距的距离
  4677. * @param {object} 左右相距的距离
  4678. * @return {object} 命名空间
  4679. */
  4680. U.MD.D.click = function (el, obj) {
  4681. var _buttonnumber = event.button; //点击的按钮的事件值
  4682. var _userinfo = US.userInfo;
  4683. U.UF.EV.stopBubble(); //阻止向上冒泡
  4684. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4685. if (_buttonnumber < 2) {
  4686. //如果是click事件的处理
  4687. if (event.type == "click") {
  4688. //如果元素在mousemove事件中没有移动则出发click事件
  4689. if (!U.MD.D.I.IsDrag) {
  4690. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4691. U.alert("请先登录您的账号!");
  4692. setTimeout(() => {
  4693. U.MD.U.L.login();
  4694. }, 2000);
  4695. } else {
  4696. //打开应用处理
  4697. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4698. }
  4699. }
  4700. }
  4701. //如果是mouse事件的处理
  4702. else {
  4703. if (US.Config.type == '1') {
  4704. //拖动处理,添加拖动和拖动结束事件
  4705. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4706. }
  4707. }
  4708. U.MD.D.I.IsDrag = false;
  4709. }
  4710. }
  4711. /**
  4712. * 拖动的处理
  4713. *
  4714. */
  4715. U.MD.D.iconMove = function () {
  4716. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4717. U.MD.D.I.IsDrag = true;
  4718. }
  4719. /**
  4720. * 拖动结束后,这里是定位处理,以网状的形式定位
  4721. *
  4722. * @param {element} 拖动的元素
  4723. * @return {object} 命名空间
  4724. */
  4725. U.MD.D.iconUp = function (el) {
  4726. var _top = 15,
  4727. _left = 20,
  4728. _margin,
  4729. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4730. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4731. if (_positioninfo["OT"] > 15) {
  4732. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4733. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4734. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4735. }
  4736. if (_positioninfo["OL"] > 20) {
  4737. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4738. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4739. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4740. }
  4741. //while循环判断么一个重叠的元素
  4742. do {
  4743. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4744. _top = _positioninfo[0] + 95; //得到定位后的top
  4745. _left = _positioninfo[1]; //得到定位后的left
  4746. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4747. }
  4748. /**
  4749. * 判断拖动后图标是否重叠
  4750. *
  4751. * @param {element} 拖动的元素
  4752. * @param {element} 桌面所有的元素
  4753. * @param {array} 拖动元素的位置
  4754. ----------[0] 上 top
  4755. ----------[1] 左 left
  4756. * @return {object} 命名空间
  4757. */
  4758. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4759. //循环所有的图标
  4760. for (var i = 0; i < childs.length; i++) {
  4761. //判断有没有和该图标诶子重叠的元素
  4762. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4763. return childs[i]; //如果有返回
  4764. }
  4765. }
  4766. }
  4767. //#endregion
  4768. //#endregion
  4769. //#region 桌面应用
  4770. /**
  4771. * 打开应用
  4772. *
  4773. * @param {string} 类型
  4774. -----------------Disk 网盘系统
  4775. -----------------PDisk 学习系统网盘
  4776. -----------------Poto 图片
  4777. -----------------Video 视频
  4778. -----------------Music 音乐
  4779. -----------------Word word
  4780. -----------------Excel excel
  4781. -----------------Txt 记事本
  4782. -----------------PB 学习系统
  4783. -----------------Blog 朋友圈系统
  4784. -----------------FTP ftp系统
  4785. -----------------Group 好友群
  4786. -----------------SY 首页系统
  4787. -----------------Set 个人设置
  4788. -----------------XSet 系统设置
  4789. -----------------App 我们所有的app
  4790. -----------------BC c.1473.cn 平台
  4791. -----------------CWeb d.1473.cn 变成平台
  4792. -----------------其他的外联系统 我们统一用iframe打开
  4793. * @param {array} 类型
  4794. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4795. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4796. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4797. 如果第一个参数为其他,则无第二个参数
  4798. * @returns {array}
  4799. */
  4800. window.addEventListener('message', function (e) { // 监听 message 事件
  4801. // alert(e.data.type);
  4802. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4803. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4804. //3是展示全部阶段 2学生 1老师 4专家
  4805. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4806. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4807. //3是展示全部阶段 2学生 1老师 4专家
  4808. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4809. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4810. //3是展示全部阶段 2学生 1老师 4专家
  4811. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4812. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4813. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4814. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4815. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4816. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4817. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4818. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4819. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4820. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4821. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4822. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4823. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4824. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4825. //3是展示全部阶段 2学生 1老师 4专家
  4826. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4827. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4828. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4829. U.MD.D.I.selectUser();
  4830. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4831. var _formel = document.getElementById("study");
  4832. U.UF.F.windowZooming(_formel);
  4833. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4834. var _formel = document.getElementById("studyDetail");
  4835. U.UF.F.windowZooming(_formel);
  4836. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4837. var _formel = document.getElementById("studyDetail");
  4838. U.UF.F.windowZooming(_formel);
  4839. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4840. var _formel = document.getElementById("studentStudy");
  4841. U.UF.F.windowZooming(_formel);
  4842. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4843. // var _formel = document.getElementById("study");
  4844. //如果最大化了,那么就把他缩小
  4845. // if (_formel.ismaximize) {
  4846. // return;
  4847. // }
  4848. // U.UF.F.windowZooming(_formel);
  4849. // U.UF.F.topWindow(_formel);
  4850. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4851. // var _formel = document.getElementById("studyDetail");
  4852. //如果最大化了,那么就把他缩小
  4853. // if (_formel.ismaximize) {
  4854. // return;
  4855. // }
  4856. // U.UF.F.windowZooming(_formel);
  4857. // U.UF.F.topWindow(_formel);
  4858. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4859. // var _formel = document.getElementById("studentStudy");
  4860. // if (_formel.ismaximize) {
  4861. // return;
  4862. // }
  4863. // U.UF.F.windowZooming(_formel);
  4864. // U.UF.F.topWindow(_formel);
  4865. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4866. var _formel = document.getElementById("study");
  4867. // if (_formel.ismaximize) {
  4868. // return;
  4869. // }
  4870. // U.UF.F.windowZooming(_formel);
  4871. U.UF.F.topWindow(_formel);
  4872. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4873. var _formel = document.getElementById("studentIndex");
  4874. U.UF.F.windowZooming(_formel);
  4875. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4876. var _formel = document.getElementById("studyDetailS");
  4877. U.UF.F.windowZooming(_formel);
  4878. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4879. var _formel = document.getElementById("studioIndex");
  4880. U.UF.F.windowZooming(_formel);
  4881. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4882. var _formel = document.getElementById("studyDetailStudio");
  4883. U.UF.F.windowZooming(_formel);
  4884. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4885. var _formel = document.getElementById("studyDetailStudio");
  4886. U.UF.F.windowZooming(_formel);
  4887. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4888. var _formel = document.getElementById("studyDetailNT");
  4889. U.UF.F.windowZooming(_formel);
  4890. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4891. var _formel = document.getElementById("studyDetailS");
  4892. U.UF.F.windowZooming(_formel);
  4893. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4894. var _formel = document.getElementById("studyDetailS");
  4895. U.UF.F.topWindow(_formel);
  4896. } else if (e.data.tools && e.data.tools == "1") {
  4897. // U.MD.D.I.openApplication("whiteboard")
  4898. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4899. } else if (e.data.tools && e.data.tools == "2") {
  4900. U.MD.D.I.openApplication("note")
  4901. } else if (e.data.tools && e.data.tools == "3") {
  4902. // U.MD.D.I.openApplication("mind")
  4903. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4904. } else if (e.data.tools && e.data.tools == "4") {
  4905. U.MD.D.I.openApplication("investigation")
  4906. } else if (e.data.tools && e.data.tools == "6") {
  4907. // U.MD.D.I.openApplication("doc")
  4908. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4909. } else if (e.data.tools && e.data.tools == "7") {
  4910. // U.MD.D.I.openApplication("mindNetwork")
  4911. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4912. } else if (e.data.tools && e.data.tools == "8") {
  4913. U.MD.D.I.openApplication("library")
  4914. } else if (e.data.tools && e.data.tools == "17") {
  4915. U.MD.D.I.openApplication("stuLibrary")
  4916. } else if (e.data.tools && e.data.tools == "18") {
  4917. U.MD.D.I.openApplication("train")
  4918. } else if (e.data.tools && e.data.tools == "21") {
  4919. U.MD.D.I.openApplication("program")
  4920. } else if (e.data.tools && e.data.tools == "22") {
  4921. U.MD.D.I.openApplication("AIprogram2")
  4922. } else if (e.data.tools && e.data.tools == "23") {
  4923. U.MD.D.I.openApplication("Pythonprogram")
  4924. } else if (e.data.tools && e.data.tools == "24") {
  4925. U.MD.D.I.openApplication("AIprogram")
  4926. } else if (e.data.tools && e.data.tools == "25") {
  4927. U.MD.D.I.openApplication("sys")
  4928. } else if (e.data.tools && e.data.tools == "26") {
  4929. // U.MD.D.I.openApplication("courseDesign")
  4930. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4931. } else if (e.data.tools && e.data.tools == "31") {
  4932. U.MD.D.I.openApplication("netWorkPanel")
  4933. } else if (e.data.tools && e.data.tools == "32") {
  4934. U.MD.D.I.openApplication("codeEdit")
  4935. } else if (e.data.tools && e.data.tools == "57") {
  4936. U.MD.D.I.openApplication("CocoPi")
  4937. } else if (e.data.tools && e.data.tools == "63") {
  4938. U.MD.D.I.openApplication("Wood")
  4939. } else if (e.data.tools && e.data.tools == "58") {
  4940. U.MD.D.I.openApplication("car")
  4941. } else if (e.data.tools && e.data.tools == "59") {
  4942. U.MD.D.I.openApplication("lineSearch")
  4943. } else if (e.data.tools && e.data.tools == "60") {
  4944. U.MD.D.I.openApplication("deepLearning")
  4945. } else if (e.data.tools && e.data.tools == "61") {
  4946. U.MD.D.I.openApplication("allHistory")
  4947. } else if (e.data.tools && e.data.tools == "28") {
  4948. U.MD.D.I.openApplication("translation")
  4949. } else if (e.data.tools && e.data.tools == "37") {
  4950. U.MD.D.I.openApplication("mohe")
  4951. } else if (e.data.tools && e.data.tools == "38") {
  4952. U.MD.D.I.openApplication("24game")
  4953. } else if (e.data.tools && e.data.tools == "39") {
  4954. U.MD.D.I.openApplication("GeoGebra")
  4955. } else if (e.data.tools && e.data.tools == "43") {
  4956. U.MD.D.I.openApplication("studentEvaluate")
  4957. } else if (e.data.tools && e.data.tools == "44") {
  4958. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4959. } else if (e.data.tools && e.data.tools == "46") {
  4960. U.MD.D.I.openApplication("project")
  4961. } else if (e.data.tools && e.data.tools == "71") {
  4962. U.MD.D.I.openApplication("aigptCourse")
  4963. } else if (e.data.tools && e.data.tools == "72") {
  4964. U.MD.D.I.openInApplication("gptConfig", e.data.data)
  4965. } else if (e.data.tools && e.data.tools == "1s") {
  4966. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4967. } else if (e.data.tools && e.data.tools == "3s") {
  4968. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4969. } else if (e.data.tools && e.data.tools == "6s") {
  4970. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4971. } else if (e.data.tools && e.data.tools == "1studio") {
  4972. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4973. } else if (e.data.tools && e.data.tools == "3studio") {
  4974. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4975. } else if (e.data.tools && e.data.tools == "6studio") {
  4976. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4977. } else if (e.data.tools && e.data.tools == "3y") {
  4978. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4979. } else if (e.data.tools && e.data.tools == "1y") {
  4980. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4981. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4982. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4983. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4984. U.MD.D.I.openApplication("AIAnalyse")
  4985. } else if (e.data.tools && e.data.tools == "1teacher") {
  4986. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4987. } else if (e.data.tools && e.data.tools == "3teacher") {
  4988. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4989. } else if (e.data.tools && e.data.tools == "7teacher") {
  4990. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4991. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4992. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4993. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4994. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4995. } else if (e.data.tools && e.data.tools == "1E") {
  4996. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4997. } else if (e.data.tools && e.data.tools == "3E") {
  4998. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4999. } else if (e.data.tools && e.data.tools == "57y") {
  5000. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5001. } else if (e.data.tools && e.data.tools == "57u") {
  5002. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5003. } else if (e.data.tools && e.data.tools == "57teacher") {
  5004. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5005. } else if (e.data.tools && e.data.tools == "64") {
  5006. U.MD.D.I.openApplication("AIChat")
  5007. } else if (e.data.tools && e.data.tools == "66") {
  5008. U.MD.D.I.openApplication("formulaEdi")
  5009. } else if (e.data.tools && e.data.tools == "67") {
  5010. U.MD.D.I.openApplication("molStr")
  5011. } else if (e.data.tools && e.data.tools == "68") {
  5012. U.MD.D.I.openApplication("timeAxis")
  5013. } else if (e.data.tools && e.data.tools == "openCourse") {
  5014. let _data = {
  5015. typea: e.data.typea || '',
  5016. typeb: e.data.typeb || '',
  5017. typed: e.data.typed || '',
  5018. }
  5019. U.MD.D.I.openInApplication("index", _data)
  5020. } else if (e.data.tools && e.data.tools == "openDataClass") {
  5021. let _data = {
  5022. classid: e.data.classid || '',
  5023. }
  5024. U.MD.D.I.openInApplication("dataClass", _data)
  5025. } else if (e.data.tools && e.data.tools == "opencCscl") {
  5026. let _data = {
  5027. cid: e.data.cid || '',
  5028. gid: e.data.gid || '',
  5029. }
  5030. U.MD.D.I.openInApplication("opencCscl", _data)
  5031. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  5032. U.MD.D.I.openApplication("dataBoardTest")
  5033. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  5034. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  5035. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  5036. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  5037. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  5038. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  5039. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  5040. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  5041. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  5042. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  5043. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  5044. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  5045. }else if (e.data.tools && e.data.tools == "loginSz") {
  5046. U.MD.D.I.openInApplication("loginSz")
  5047. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  5048. if($('#classroom_observation_board')[0]){
  5049. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  5050. }
  5051. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  5052. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  5053. if($('#classroom_observation_ob_comment')[0]){
  5054. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  5055. }
  5056. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  5057. }else if (e.data.tools && e.data.tools == "logout"){
  5058. U.MD.U.LO.logoutSystem()
  5059. }else if (e.data.tools && e.data.tools == "getLogin"){
  5060. let _iframe = $('#UI_Login')[0];
  5061. if (_iframe) {
  5062. var userInfo = US.userInfo;
  5063. var type = 2
  5064. if(userInfo && userInfo.userid){
  5065. type = 1
  5066. }
  5067. _contentWindow = _iframe.contentWindow;
  5068. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  5069. }
  5070. }
  5071. });
  5072. U.MD.D.I.selectUser = function () {
  5073. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  5074. if (res.value[0].length > 0) {
  5075. US.userInfo = res.value[0][0];
  5076. $(".userName")[0].innerHTML = US.userInfo.username;
  5077. }
  5078. }, [], { "type": "GET", "withCredentials": true });
  5079. }
  5080. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  5081. var _userinfo = US.userInfo, //登录用户信息
  5082. _userid = US.userInfo.userid, //登录用户id
  5083. _oid = _userinfo.organizeid,
  5084. _type = US.userInfo.type,
  5085. _org = US.userInfo.org,
  5086. _role = US.userInfo.role,
  5087. _classId = US.userInfo.classid;
  5088. if (_type == 4) {
  5089. tType = 4
  5090. }
  5091. switch (str) {
  5092. case "studyDetailNT": //无终端模式
  5093. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5094. setTimeout(() => {
  5095. U.MD.U.L.login();
  5096. }, 2000);
  5097. } else {
  5098. _formdiv = new U.UF.UI.form(
  5099. "课程详情",
  5100. $$("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 }), {
  5101. "id": "studyDetailNT",
  5102. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5103. "onresize": function () { }
  5104. }, {
  5105. closecallback: function () { }
  5106. }, { "style": { "height": "36px" } }).form; //创建窗体
  5107. _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); } }
  5108. break;
  5109. }
  5110. case "studyDetail":
  5111. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5112. setTimeout(() => {
  5113. U.MD.U.L.login();
  5114. }, 2000);
  5115. } else {
  5116. _formdiv = new U.UF.UI.form(
  5117. "课程详情",
  5118. $$("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 }), {
  5119. "id": "studyDetail",
  5120. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5121. "onresize": function () { }
  5122. }, {
  5123. closecallback: function () { }
  5124. }, { "style": { "height": "36px" } }).form; //创建窗体
  5125. _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); } }
  5126. break;
  5127. }
  5128. case "studyDetailTrain":
  5129. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5130. setTimeout(() => {
  5131. U.MD.U.L.login();
  5132. }, 2000);
  5133. } else {
  5134. _formdiv = new U.UF.UI.form(
  5135. "培训详情",
  5136. $$("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 }), {
  5137. "id": "studyDetailTrain",
  5138. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5139. "onresize": function () { }
  5140. }, {
  5141. closecallback: function () { }
  5142. }, { "style": { "height": "36px" } }).form; //创建窗体
  5143. _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); } }
  5144. break;
  5145. }
  5146. case "studyDetailS":
  5147. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5148. setTimeout(() => {
  5149. U.MD.U.L.login();
  5150. }, 2000);
  5151. } else {
  5152. _formdiv = new U.UF.UI.form(
  5153. "项目详情",
  5154. $$("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 }), {
  5155. "id": "studyDetailS",
  5156. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5157. "onresize": function () { }
  5158. }, {
  5159. closecallback: function () { }
  5160. }, { "style": { "height": "36px" } }).form; //创建窗体
  5161. _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); } }
  5162. break;
  5163. }
  5164. case "studyDetailStudio":
  5165. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5166. setTimeout(() => {
  5167. U.MD.U.L.login();
  5168. }, 2000);
  5169. } else {
  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-student-table/dist/#/courseDetailStudio?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  5173. "id": "studyDetailStudio",
  5174. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5175. "onresize": function () { }
  5176. }, {
  5177. closecallback: function () { }
  5178. }, { "style": { "height": "36px" } }).form; //创建窗体
  5179. _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); } }
  5180. break;
  5181. }
  5182. case "studyDetailS5":
  5183. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5184. setTimeout(() => {
  5185. U.MD.U.L.login();
  5186. }, 2000);
  5187. } else {
  5188. _formdiv = new U.UF.UI.form(
  5189. "项目详情",
  5190. $$("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 }), {
  5191. "id": "studyDetailS",
  5192. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5193. "onresize": function () { }
  5194. }, {
  5195. closecallback: function () { }
  5196. }, { "style": { "height": "36px" } }).form; //创建窗体
  5197. _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); } }
  5198. break;
  5199. }
  5200. case "studyDetailGM":
  5201. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5202. setTimeout(() => {
  5203. U.MD.U.L.login();
  5204. }, 2000);
  5205. } else {
  5206. _formdiv = new U.UF.UI.form(
  5207. "课程详情",
  5208. $$("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 }), {
  5209. "id": "studyDetail",
  5210. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5211. "onresize": function () { }
  5212. }, {
  5213. closecallback: function () { }
  5214. }, { "style": { "height": "36px" } }).form; //创建窗体
  5215. _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); } }
  5216. break;
  5217. }
  5218. case "hanUrl":
  5219. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5220. setTimeout(() => {
  5221. U.MD.U.L.login();
  5222. }, 2000);
  5223. } else {
  5224. _formdiv = new U.UF.UI.form(
  5225. "汉字宫",
  5226. $$("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" }), {
  5227. "id": "hanUrl",
  5228. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5229. "onresize": function () { }
  5230. }, {
  5231. closecallback: function () { }
  5232. }, { "style": { "height": "36px" } }).form; //创建窗体
  5233. _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); } }
  5234. break;
  5235. }
  5236. case "index":
  5237. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5238. setTimeout(() => {
  5239. U.MD.U.L.login();
  5240. }, 2000);
  5241. } else {
  5242. _formdiv = new U.UF.UI.form(
  5243. "课程中心",
  5244. $$("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 }), {
  5245. "id": "study",
  5246. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5247. "onresize": function () { }
  5248. }, {
  5249. closecallback: function () { }
  5250. }, { "style": { "height": "36px" } }).form; //创建窗体
  5251. _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); } }
  5252. break;
  5253. }
  5254. case "dataClass":
  5255. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5256. setTimeout(() => {
  5257. U.MD.U.L.login();
  5258. }, 2000);
  5259. } else {
  5260. _formdiv = new U.UF.UI.form(
  5261. "数据报告",
  5262. $$("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 }), {
  5263. "id": "dataClass",
  5264. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5265. "onresize": function () { }
  5266. }, {
  5267. closecallback: function () { }
  5268. }, { "style": { "height": "36px" } }).form; //创建窗体
  5269. _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); } }
  5270. break;
  5271. }
  5272. case "opencCscl":
  5273. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5274. setTimeout(() => {
  5275. U.MD.U.L.login();
  5276. }, 2000);
  5277. } else {
  5278. _formdiv = new U.UF.UI.form(
  5279. "协同建构",
  5280. $$("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 }), {
  5281. "id": "futureClass",
  5282. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5283. "onresize": function () { }
  5284. }, {
  5285. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5286. }, { "style": { "height": "36px" } }).form; //创建窗体
  5287. _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); } }
  5288. break;
  5289. }
  5290. case "openCourseUpdate":
  5291. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5292. setTimeout(() => {
  5293. U.MD.U.L.login();
  5294. }, 2000);
  5295. } else {
  5296. _formdiv = new U.UF.UI.form(
  5297. "课程管理",
  5298. $$("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 }), {
  5299. "id": "openCourseUpdate",
  5300. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5301. "onresize": function () { }
  5302. }, {
  5303. closecallback: function () { }
  5304. }, { "style": { "height": "36px" } }).form; //创建窗体
  5305. break;
  5306. }
  5307. case "openNewCourseUpdate":
  5308. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5309. setTimeout(() => {
  5310. U.MD.U.L.login();
  5311. }, 2000);
  5312. } else {
  5313. _formdiv = new U.UF.UI.form(
  5314. "课程管理",
  5315. $$("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 }), {
  5316. "id": "openCourseUpdate",
  5317. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5318. "onresize": function () { }
  5319. }, {
  5320. closecallback: function () { }
  5321. }, { "style": { "height": "36px" } }).form; //创建窗体
  5322. break;
  5323. }
  5324. case "openCourseEUpdate":
  5325. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5326. setTimeout(() => {
  5327. U.MD.U.L.login();
  5328. }, 2000);
  5329. } else {
  5330. _formdiv = new U.UF.UI.form(
  5331. "课程管理",
  5332. $$("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 }), {
  5333. "id": "openCourseUpdate",
  5334. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5335. "onresize": function () { }
  5336. }, {
  5337. closecallback: function () { }
  5338. }, { "style": { "height": "36px" } }).form; //创建窗体
  5339. break;
  5340. }
  5341. case "openCourseAiUpdate":
  5342. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5343. setTimeout(() => {
  5344. U.MD.U.L.login();
  5345. }, 2000);
  5346. } else {
  5347. _formdiv = new U.UF.UI.form(
  5348. "课程管理",
  5349. $$("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 }), {
  5350. "id": "openCourseUpdate",
  5351. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5352. "onresize": function () { }
  5353. }, {
  5354. closecallback: function () { }
  5355. }, { "style": { "height": "36px" } }).form; //创建窗体
  5356. break;
  5357. }
  5358. case "openCourseAiUpdate2":
  5359. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5360. setTimeout(() => {
  5361. U.MD.U.L.login();
  5362. }, 2000);
  5363. } else {
  5364. _formdiv = new U.UF.UI.form(
  5365. "课程管理",
  5366. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/addCourseEAi?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5367. "id": "openCourseUpdate",
  5368. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5369. "onresize": function () { }
  5370. }, {
  5371. closecallback: function () { }
  5372. }, { "style": { "height": "36px" } }).form; //创建窗体
  5373. break;
  5374. }
  5375. case "openCourseNewUpdate":
  5376. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5377. setTimeout(() => {
  5378. U.MD.U.L.login();
  5379. }, 2000);
  5380. } else {
  5381. _formdiv = new U.UF.UI.form(
  5382. "课程管理",
  5383. $$("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 }), {
  5384. "id": "openCourseUpdate",
  5385. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5386. "onresize": function () { }
  5387. }, {
  5388. closecallback: function () { }
  5389. }, { "style": { "height": "36px" } }).form; //创建窗体
  5390. break;
  5391. }
  5392. case "inviteLoginSz":
  5393. _formdiv = new U.UF.UI.form(
  5394. "随机码登录",
  5395. $$("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 }), {
  5396. "id": "loginSz",
  5397. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5398. "onresize": function () { }
  5399. }, {
  5400. closecallback: function () { }
  5401. }, { "style": { "height": "36px" } }).form; //创建窗体
  5402. break;
  5403. case "loginSz":
  5404. _formdiv = new U.UF.UI.form(
  5405. "教师登录",
  5406. $$("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" }), {
  5407. "id": "loginSz",
  5408. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5409. "onresize": function () { }
  5410. }, {
  5411. closecallback: function () { }
  5412. }, { "style": { "height": "36px" } }).form; //创建窗体
  5413. break;
  5414. case "teacher":
  5415. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5416. setTimeout(() => {
  5417. U.MD.U.L.login();
  5418. }, 2000);
  5419. } else {
  5420. _formdiv = new U.UF.UI.form(
  5421. "教师管理",
  5422. $$("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 }), {
  5423. "id": "teacher",
  5424. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5425. "onresize": function () { }
  5426. }, {
  5427. closecallback: function () { }
  5428. }, { "style": { "height": "36px" } }).form; //创建窗体
  5429. break;
  5430. }
  5431. case "dataBoardSZArea":
  5432. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5433. setTimeout(() => {
  5434. U.MD.U.L.login();
  5435. }, 2000);
  5436. } else {
  5437. _formdiv = new U.UF.UI.form(
  5438. "综合数据看板",
  5439. $$("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 }), {
  5440. "id": "dataBoardSZArea",
  5441. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5442. "onresize": function () { }
  5443. }, {
  5444. closecallback: function () { }
  5445. }, { "style": { "height": "36px" } }).form; //创建窗体
  5446. break;
  5447. }
  5448. case "dataBoardSZCity":
  5449. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5450. setTimeout(() => {
  5451. U.MD.U.L.login();
  5452. }, 2000);
  5453. } else {
  5454. _formdiv = new U.UF.UI.form(
  5455. "综合数据看板",
  5456. $$("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 }), {
  5457. "id": "dataBoardSZCity",
  5458. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5459. "onresize": function () { }
  5460. }, {
  5461. closecallback: function () { }
  5462. }, { "style": { "height": "36px" } }).form; //创建窗体
  5463. break;
  5464. }
  5465. case "classroom_observation_board":
  5466. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5467. setTimeout(() => {
  5468. U.MD.U.L.login();
  5469. }, 2000);
  5470. } else {
  5471. _formdiv = new U.UF.UI.form(
  5472. "课堂观察",
  5473. $$("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/#/classroom_observation_board?tid="+data }), {
  5474. "id": "classroom_observation_board",
  5475. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5476. "onresize": function () { }
  5477. }, {
  5478. closecallback: function () { }
  5479. }, { "style": { "height": "36px" } }).form; //创建窗体
  5480. break;
  5481. }
  5482. case "classroom_observation_ob_comment":
  5483. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5484. setTimeout(() => {
  5485. U.MD.U.L.login();
  5486. }, 2000);
  5487. } else {
  5488. _formdiv = new U.UF.UI.form(
  5489. "课堂审核",
  5490. $$("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/#/classroom_observation_ob_comment?tid="+data }), {
  5491. "id": "classroom_observation_ob_comment",
  5492. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5493. "onresize": function () { }
  5494. }, {
  5495. closecallback: function () { }
  5496. }, { "style": { "height": "36px" } }).form; //创建窗体
  5497. break;
  5498. }
  5499. case "gptConfig":
  5500. _formdiv = new U.UF.UI.form(
  5501. data.name ? data.name : "应用中心",
  5502. $$("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": data.url }), {
  5503. "id": "gptConfig" + data.id,
  5504. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5505. "onresize": function () { }
  5506. }, {
  5507. closecallback: function () { }
  5508. }, { "style": { "height": "36px" } }).form; //创建窗体
  5509. break;
  5510. }
  5511. }
  5512. U.MD.D.I.openApplication = function (str, obj, info) {
  5513. obj = obj || {};
  5514. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5515. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5516. _userinfo = US.userInfo, //登录用户信息
  5517. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5518. _oid = obj.organizeid || _userinfo.organizeid,
  5519. _type = US.userInfo.type,
  5520. _org = US.userInfo.org,
  5521. _role = US.userInfo.role,
  5522. _classId = US.userInfo.classid,
  5523. _TscreenType = 1
  5524. _screenType = 2,
  5525. _SscreenType = 3;
  5526. let iframeBool = true
  5527. if(U.UF.UI.form.allForm[str]){
  5528. iframeBool = false
  5529. }
  5530. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5531. return;
  5532. }
  5533. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5534. switch (str) {
  5535. case "studnetProject": //好友打开
  5536. _formdiv = new U.UF.UI.form(
  5537. "我的项目",
  5538. $$("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 }), {
  5539. "id": "studnetProject",
  5540. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5541. "onresize": function () { }
  5542. }, {
  5543. closecallback: function () { }
  5544. }, { "style": { "height": "36px" } }).form; //创建窗体
  5545. _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); } }
  5546. break;
  5547. case "studentEvaluate": //好友打开
  5548. _formdiv = new U.UF.UI.form(
  5549. "我的评价",
  5550. $$("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 }), {
  5551. "id": "studentEvaluate",
  5552. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5553. "onresize": function () { }
  5554. }, {
  5555. closecallback: function () { }
  5556. }, { "style": { "height": "36px" } }).form; //创建窗体
  5557. _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); } }
  5558. break;
  5559. case "my":
  5560. _formdiv = new U.UF.UI.form(
  5561. "我的资料",
  5562. $$("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 }), {
  5563. "id": "my",
  5564. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5565. "onresize": function () { }
  5566. }, {
  5567. closecallback: function () { }
  5568. }, { "style": { "height": "36px" } }).form; //创建窗体
  5569. _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); } }
  5570. break;
  5571. case "program":
  5572. _formdiv = new U.UF.UI.form(
  5573. "编程平台",
  5574. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5575. "id": "program",
  5576. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5577. "onresize": function () { }
  5578. }, {
  5579. closecallback: function () { }
  5580. }, { "style": { "height": "36px" } }).form; //创建窗体
  5581. _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); } }
  5582. break;
  5583. case "library":
  5584. _formdiv = new U.UF.UI.form(
  5585. "素材库",
  5586. $$("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 }), {
  5587. "id": "library",
  5588. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5589. "onresize": function () { }
  5590. }, {
  5591. closecallback: function () { }
  5592. }, { "style": { "height": "36px" } }).form; //创建窗体
  5593. _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); } }
  5594. break;
  5595. case "whiteboard":
  5596. _formdiv = new U.UF.UI.form(
  5597. "电子白板",
  5598. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5599. "id": "whiteboard",
  5600. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5601. "onresize": function () { }
  5602. }, {
  5603. closecallback: function () { }
  5604. }, { "style": { "height": "36px" } }).form; //创建窗体
  5605. _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); } }
  5606. break;
  5607. case "investigation":
  5608. _formdiv = new U.UF.UI.form(
  5609. "问卷调查",
  5610. $$("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 }), {
  5611. "id": "investigation",
  5612. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5613. "onresize": function () { }
  5614. }, {
  5615. closecallback: function () { }
  5616. }, { "style": { "height": "36px" } }).form; //创建窗体
  5617. _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); } }
  5618. break;
  5619. case "note":
  5620. _formdiv = new U.UF.UI.form(
  5621. "便签分类",
  5622. $$("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 }), {
  5623. "id": "note",
  5624. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5625. "onresize": function () { }
  5626. }, {
  5627. closecallback: function () { }
  5628. }, { "style": { "height": "36px" } }).form; //创建窗体
  5629. _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); } }
  5630. break;
  5631. // case "score":
  5632. // _formdiv = new U.UF.UI.form(
  5633. // "量规评分",
  5634. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5635. // "id": "score",
  5636. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5637. // "onresize": function() {}
  5638. // }, {
  5639. // closecallback: function() {}
  5640. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5641. // _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); } }
  5642. // break;
  5643. case "mind":
  5644. _formdiv = new U.UF.UI.form(
  5645. "思维导图",
  5646. $$("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"
  5647. "id": "mind",
  5648. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5649. "onresize": function () { }
  5650. }, {
  5651. closecallback: function () { }
  5652. }, { "style": { "height": "36px" } }).form; //创建窗体
  5653. _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); } }
  5654. break;
  5655. case "doc":
  5656. // U.MD.D.I.isRoom();
  5657. _formdiv = new U.UF.UI.form(
  5658. "协同文档",
  5659. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5660. "id": "doc",
  5661. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5662. "onresize": function () { }
  5663. }, {
  5664. closecallback: function () { }
  5665. }, { "style": { "height": "36px" } }).form; //创建窗体
  5666. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5667. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5668. // })
  5669. _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); } }
  5670. break;
  5671. case "studentStudy":
  5672. _formdiv = new U.UF.UI.form(
  5673. "课程中心",
  5674. $$("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
  5675. "id": "studentStudy",
  5676. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5677. "onresize": function () { }
  5678. }, {
  5679. closecallback: function () { }
  5680. }, { "style": { "height": "36px" } }).form; //创建窗体
  5681. _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); } }
  5682. break;
  5683. case "train": //好友打开
  5684. _formdiv = new U.UF.UI.form(
  5685. "训练平台",
  5686. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5687. "id": "train",
  5688. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5689. "onresize": function () { }
  5690. }, {
  5691. closecallback: function () { }
  5692. }, { "style": { "height": "36px" } }).form; //创建窗体
  5693. _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); } }
  5694. break;
  5695. case "mindNetwork": //好友打开
  5696. _formdiv = new U.UF.UI.form(
  5697. "思维网格",
  5698. $$("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 }), {
  5699. "id": "mindNetwork",
  5700. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5701. "onresize": function () { }
  5702. }, {
  5703. closecallback: function () { }
  5704. }, { "style": { "height": "36px" } }).form; //创建窗体
  5705. _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); } }
  5706. break;
  5707. case "studentClassRoom": //好友打开
  5708. _formdiv = new U.UF.UI.form(
  5709. "实时课堂",
  5710. $$("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 }), {
  5711. "id": "studentClassRoom",
  5712. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5713. "onresize": function () { }
  5714. }, {
  5715. closecallback: function () { }
  5716. }, { "style": { "height": "36px" } }).form; //创建窗体
  5717. _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); } }
  5718. setTimeout(() => {
  5719. U.UF.F.windowZooming(_formdiv)
  5720. }, 0);
  5721. break;
  5722. }
  5723. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5724. switch (str) {
  5725. case "studnetProject": //好友打开
  5726. _formdiv = new U.UF.UI.form(
  5727. "我的项目",
  5728. $$("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 }), {
  5729. "id": "studnetProject",
  5730. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5731. "onresize": function () { }
  5732. }, {
  5733. closecallback: function () { }
  5734. }, { "style": { "height": "36px" } }).form; //创建窗体
  5735. _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); } }
  5736. break;
  5737. case "studentEvaluate": //好友打开
  5738. _formdiv = new U.UF.UI.form(
  5739. "我的评价",
  5740. $$("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 }), {
  5741. "id": "studentEvaluate",
  5742. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5743. "onresize": function () { }
  5744. }, {
  5745. closecallback: function () { }
  5746. }, { "style": { "height": "36px" } }).form; //创建窗体
  5747. _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); } }
  5748. break;
  5749. case "my":
  5750. _formdiv = new U.UF.UI.form(
  5751. "我的资料",
  5752. $$("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 }), {
  5753. "id": "my",
  5754. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5755. "onresize": function () { }
  5756. }, {
  5757. closecallback: function () { }
  5758. }, { "style": { "height": "36px" } }).form; //创建窗体
  5759. _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); } }
  5760. break;
  5761. case "program":
  5762. _formdiv = new U.UF.UI.form(
  5763. "编程平台",
  5764. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5765. "id": "program",
  5766. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5767. "onresize": function () { }
  5768. }, {
  5769. closecallback: function () { }
  5770. }, { "style": { "height": "36px" } }).form; //创建窗体
  5771. _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); } }
  5772. break;
  5773. case "library":
  5774. _formdiv = new U.UF.UI.form(
  5775. "素材库",
  5776. $$("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 }), {
  5777. "id": "library",
  5778. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5779. "onresize": function () { }
  5780. }, {
  5781. closecallback: function () { }
  5782. }, { "style": { "height": "36px" } }).form; //创建窗体
  5783. _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); } }
  5784. break;
  5785. case "whiteboard":
  5786. _formdiv = new U.UF.UI.form(
  5787. "电子白板",
  5788. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5789. "id": "whiteboard",
  5790. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5791. "onresize": function () { }
  5792. }, {
  5793. closecallback: function () { }
  5794. }, { "style": { "height": "36px" } }).form; //创建窗体
  5795. _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); } }
  5796. break;
  5797. case "investigation":
  5798. _formdiv = new U.UF.UI.form(
  5799. "问卷调查",
  5800. $$("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 }), {
  5801. "id": "investigation",
  5802. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5803. "onresize": function () { }
  5804. }, {
  5805. closecallback: function () { }
  5806. }, { "style": { "height": "36px" } }).form; //创建窗体
  5807. _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); } }
  5808. break;
  5809. case "note":
  5810. _formdiv = new U.UF.UI.form(
  5811. "便签分类",
  5812. $$("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 }), {
  5813. "id": "note",
  5814. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5815. "onresize": function () { }
  5816. }, {
  5817. closecallback: function () { }
  5818. }, { "style": { "height": "36px" } }).form; //创建窗体
  5819. _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); } }
  5820. break;
  5821. // case "score":
  5822. // _formdiv = new U.UF.UI.form(
  5823. // "量规评分",
  5824. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5825. // "id": "score",
  5826. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5827. // "onresize": function() {}
  5828. // }, {
  5829. // closecallback: function() {}
  5830. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5831. // _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); } }
  5832. // break;
  5833. case "mind":
  5834. _formdiv = new U.UF.UI.form(
  5835. "思维导图",
  5836. $$("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"
  5837. "id": "mind",
  5838. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5839. "onresize": function () { }
  5840. }, {
  5841. closecallback: function () { }
  5842. }, { "style": { "height": "36px" } }).form; //创建窗体
  5843. _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); } }
  5844. break;
  5845. case "doc":
  5846. // U.MD.D.I.isRoom();
  5847. _formdiv = new U.UF.UI.form(
  5848. "协同文档",
  5849. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5850. "id": "doc",
  5851. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5852. "onresize": function () { }
  5853. }, {
  5854. closecallback: function () { }
  5855. }, { "style": { "height": "36px" } }).form; //创建窗体
  5856. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5857. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5858. })
  5859. _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); } }
  5860. break;
  5861. case "train": //好友打开
  5862. _formdiv = new U.UF.UI.form(
  5863. "训练平台",
  5864. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5865. "id": "train",
  5866. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5867. "onresize": function () { }
  5868. }, {
  5869. closecallback: function () { }
  5870. }, { "style": { "height": "36px" } }).form; //创建窗体
  5871. _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); } }
  5872. break;
  5873. case "studentStudy":
  5874. _formdiv = new U.UF.UI.form(
  5875. "课程中心",
  5876. $$("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
  5877. "id": "studentStudy",
  5878. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5879. "onresize": function () { }
  5880. }, {
  5881. closecallback: function () { }
  5882. }, { "style": { "height": "36px" } }).form; //创建窗体
  5883. _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); } }
  5884. break;
  5885. case "mindNetwork": //好友打开
  5886. _formdiv = new U.UF.UI.form(
  5887. "思维网格",
  5888. $$("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 }), {
  5889. "id": "mindNetwork",
  5890. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5891. "onresize": function () { }
  5892. }, {
  5893. closecallback: function () { }
  5894. }, { "style": { "height": "36px" } }).form; //创建窗体
  5895. _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); } }
  5896. break;
  5897. case "studentClassRoom": //好友打开
  5898. _formdiv = new U.UF.UI.form(
  5899. "实时课堂",
  5900. $$("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 }), {
  5901. "id": "studentClassRoom",
  5902. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5903. "onresize": function () { }
  5904. }, {
  5905. closecallback: function () { }
  5906. }, { "style": { "height": "36px" } }).form; //创建窗体
  5907. _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); } }
  5908. setTimeout(() => {
  5909. U.UF.F.windowZooming(_formdiv)
  5910. }, 0);
  5911. break;
  5912. }
  5913. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5914. //选择应用处理
  5915. switch (str) {
  5916. case "project": //好友打开
  5917. _formdiv = new U.UF.UI.form(
  5918. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5919. $$("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 }), {
  5920. "id": "project",
  5921. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5922. "onresize": function () { }
  5923. }, {
  5924. closecallback: function () { }
  5925. }, { "style": { "height": "36px" } }).form; //创建窗体
  5926. _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); } }
  5927. break;
  5928. case "student":
  5929. _formdiv = new U.UF.UI.form(
  5930. "学生管理",
  5931. $$("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 }), {
  5932. "id": "student",
  5933. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5934. "onresize": function () { }
  5935. }, {
  5936. closecallback: function () { }
  5937. }, { "style": { "height": "36px" } }).form; //创建窗体
  5938. _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); } }
  5939. break;
  5940. case "evaluate":
  5941. _formdiv = new U.UF.UI.form(
  5942. "学生评价",
  5943. $$("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 }), {
  5944. "id": "evaluate",
  5945. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5946. "onresize": function () { }
  5947. }, {
  5948. closecallback: function () { }
  5949. }, { "style": { "height": "36px" } }).form; //创建窗体
  5950. _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); } }
  5951. break;
  5952. case "sys":
  5953. _formdiv = new U.UF.UI.form(
  5954. "目标管理",
  5955. $$("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 }), {
  5956. "id": "sys",
  5957. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5958. "onresize": function () { }
  5959. }, {
  5960. closecallback: function () { }
  5961. }, { "style": { "height": "36px" } }).form; //创建窗体
  5962. _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); } }
  5963. break;
  5964. case "courseDesign":
  5965. _formdiv = new U.UF.UI.form(
  5966. "项目设计",
  5967. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5968. "id": "courseDesign",
  5969. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5970. "onresize": function () { }
  5971. }, {
  5972. closecallback: function () { }
  5973. }, { "style": { "height": "36px" } }).form; //创建窗体
  5974. _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); } }
  5975. break;
  5976. case "program":
  5977. _formdiv = new U.UF.UI.form(
  5978. "编程平台",
  5979. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5980. "id": "program",
  5981. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5982. "onresize": function () { }
  5983. }, {
  5984. closecallback: function () { }
  5985. }, { "style": { "height": "36px" } }).form; //创建窗体
  5986. _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); } }
  5987. break;
  5988. case "class":
  5989. _formdiv = new U.UF.UI.form(
  5990. "班级管理",
  5991. $$("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 }), {
  5992. "id": "class",
  5993. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5994. "onresize": function () { }
  5995. }, {
  5996. closecallback: function () { }
  5997. }, { "style": { "height": "36px" } }).form; //创建窗体
  5998. _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); } }
  5999. break;
  6000. case "Grade":
  6001. _formdiv = new U.UF.UI.form(
  6002. "年级管理",
  6003. $$("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 }), {
  6004. "id": "Grade",
  6005. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6006. "onresize": function () { }
  6007. }, {
  6008. closecallback: function () { }
  6009. }, { "style": { "height": "36px" } }).form; //创建窗体
  6010. _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); } }
  6011. break;
  6012. case "teacherOffice":
  6013. _formdiv = new U.UF.UI.form(
  6014. "教研室",
  6015. $$("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 }), {
  6016. "id": "teacherOffice",
  6017. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6018. "onresize": function () { }
  6019. }, {
  6020. closecallback: function () { }
  6021. }, { "style": { "height": "36px" } }).form; //创建窗体
  6022. _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); } }
  6023. break;
  6024. case "my":
  6025. _formdiv = new U.UF.UI.form(
  6026. "我的资料",
  6027. $$("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 }), {
  6028. "id": "my",
  6029. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6030. "onresize": function () { }
  6031. }, {
  6032. closecallback: function () { }
  6033. }, { "style": { "height": "36px" } }).form; //创建窗体
  6034. _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); } }
  6035. break;
  6036. case "notice":
  6037. _formdiv = new U.UF.UI.form(
  6038. "通知公告",
  6039. $$("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 }), {
  6040. "id": "notice",
  6041. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6042. "onresize": function () { }
  6043. }, {
  6044. closecallback: function () { }
  6045. }, { "style": { "height": "36px" } }).form; //创建窗体
  6046. _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); } }
  6047. break;
  6048. case "library":
  6049. _formdiv = new U.UF.UI.form(
  6050. "素材库",
  6051. $$("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 }), {
  6052. "id": "library",
  6053. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6054. "onresize": function () { }
  6055. }, {
  6056. closecallback: function () { }
  6057. }, { "style": { "height": "36px" } }).form; //创建窗体
  6058. _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); } }
  6059. break;
  6060. case "whiteboard":
  6061. _formdiv = new U.UF.UI.form(
  6062. "电子白板",
  6063. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6064. "id": "whiteboard",
  6065. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6066. "onresize": function () { }
  6067. }, {
  6068. closecallback: function () { }
  6069. }, { "style": { "height": "36px" } }).form; //创建窗体
  6070. _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); } }
  6071. break;
  6072. case "investigation":
  6073. _formdiv = new U.UF.UI.form(
  6074. "问卷调查",
  6075. $$("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 }), {
  6076. "id": "investigation",
  6077. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6078. "onresize": function () { }
  6079. }, {
  6080. closecallback: function () { }
  6081. }, { "style": { "height": "36px" } }).form; //创建窗体
  6082. _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); } }
  6083. break;
  6084. case "note":
  6085. _formdiv = new U.UF.UI.form(
  6086. "便签分类",
  6087. $$("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 }), {
  6088. "id": "note",
  6089. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6090. "onresize": function () { }
  6091. }, {
  6092. closecallback: function () { }
  6093. }, { "style": { "height": "36px" } }).form; //创建窗体
  6094. _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); } }
  6095. break;
  6096. // case "score":
  6097. // _formdiv = new U.UF.UI.form(
  6098. // "量规评分",
  6099. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6100. // "id": "score",
  6101. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6102. // "onresize": function() {}
  6103. // }, {
  6104. // closecallback: function() {}
  6105. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6106. // _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); } }
  6107. // break;
  6108. case "mind":
  6109. _formdiv = new U.UF.UI.form(
  6110. "思维导图",
  6111. $$("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"
  6112. "id": "mind",
  6113. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6114. "onresize": function () { }
  6115. }, {
  6116. closecallback: function () { }
  6117. }, { "style": { "height": "36px" } }).form; //创建窗体
  6118. _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); } }
  6119. break;
  6120. case "doc":
  6121. // U.MD.D.I.isRoom();
  6122. _formdiv = new U.UF.UI.form(
  6123. "协同文档",
  6124. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6125. "id": "doc",
  6126. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6127. "onresize": function () { }
  6128. }, {
  6129. closecallback: function () { }
  6130. }, { "style": { "height": "36px" } }).form; //创建窗体
  6131. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6132. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6133. })
  6134. _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); } }
  6135. break;
  6136. case "study":
  6137. _formdiv = new U.UF.UI.form(
  6138. "课程中心",
  6139. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": 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
  6140. "id": "study",
  6141. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6142. "onresize": function () { }
  6143. }, {
  6144. closecallback: function () { }
  6145. }, { "style": { "height": "36px" } }).form; //创建窗体
  6146. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6147. break;
  6148. case "mindNetwork": //好友打开
  6149. _formdiv = new U.UF.UI.form(
  6150. "思维网格",
  6151. $$("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 }), {
  6152. "id": "mindNetwork",
  6153. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6154. "onresize": function () { }
  6155. }, {
  6156. closecallback: function () { }
  6157. }, { "style": { "height": "36px" } }).form; //创建窗体
  6158. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6159. break;
  6160. case "train": //好友打开
  6161. _formdiv = new U.UF.UI.form(
  6162. "训练平台",
  6163. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6164. "id": "mindNetwork",
  6165. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6166. "onresize": function () { }
  6167. }, {
  6168. closecallback: function () { }
  6169. }, { "style": { "height": "36px" } }).form; //创建窗体
  6170. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6171. break;
  6172. case "teacherClassRoom": //好友打开
  6173. _formdiv = new U.UF.UI.form(
  6174. "实时课堂",
  6175. $$("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 }), {
  6176. "id": "teacherClassRoom",
  6177. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6178. "onresize": function () { }
  6179. }, {
  6180. closecallback: function () { }
  6181. }, { "style": { "height": "36px" } }).form; //创建窗体
  6182. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6183. setTimeout(() => {
  6184. U.UF.F.windowZooming(_formdiv)
  6185. }, 0);
  6186. break;
  6187. }
  6188. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6189. switch (str) {
  6190. case "project": //好友打开
  6191. _formdiv = new U.UF.UI.form(
  6192. "课程管理",
  6193. $$("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 }), {
  6194. "id": "project",
  6195. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6196. "onresize": function () { }
  6197. }, {
  6198. closecallback: function () { }
  6199. }, { "style": { "height": "36px" } }).form; //创建窗体
  6200. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6201. break;
  6202. case "evaluate":
  6203. _formdiv = new U.UF.UI.form(
  6204. "学生评价",
  6205. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6206. "id": "evaluate",
  6207. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6208. "onresize": function () { }
  6209. }, {
  6210. closecallback: function () { }
  6211. }, { "style": { "height": "36px" } }).form; //创建窗体
  6212. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6213. break;
  6214. case "notice":
  6215. _formdiv = new U.UF.UI.form(
  6216. "通知公告",
  6217. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/notice?userid=" + _userid + "&org=" + _org }), {
  6218. "id": "notice",
  6219. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6220. "onresize": function () { }
  6221. }, {
  6222. closecallback: function () { }
  6223. }, { "style": { "height": "36px" } }).form; //创建窗体
  6224. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6225. break;
  6226. case "stuLibrary":
  6227. _formdiv = new U.UF.UI.form(
  6228. "学习资料",
  6229. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studyLibrary?userid=" + _userid + "&org=" + _org }), {
  6230. "id": "stuLibrary",
  6231. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6232. "onresize": function () { }
  6233. }, {
  6234. closecallback: function () { }
  6235. }, { "style": { "height": "36px" } }).form; //创建窗体
  6236. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/stuLibrary.png)" }, "name": "学习资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6237. break;
  6238. case "program":
  6239. _formdiv = new U.UF.UI.form(
  6240. "编程平台",
  6241. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6242. "id": "program",
  6243. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6244. "onresize": function () { }
  6245. }, {
  6246. closecallback: function () { }
  6247. }, { "style": { "height": "36px" } }).form; //创建窗体
  6248. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6249. break;
  6250. case "whiteboard":
  6251. _formdiv = new U.UF.UI.form(
  6252. "电子白板",
  6253. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6254. "id": "whiteboard",
  6255. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6256. "onresize": function () { }
  6257. }, {
  6258. closecallback: function () { }
  6259. }, { "style": { "height": "36px" } }).form; //创建窗体
  6260. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6261. break;
  6262. case "investigation":
  6263. _formdiv = new U.UF.UI.form(
  6264. "问卷调查",
  6265. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  6266. "id": "investigation",
  6267. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6268. "onresize": function () { }
  6269. }, {
  6270. closecallback: function () { }
  6271. }, { "style": { "height": "36px" } }).form; //创建窗体
  6272. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6273. break;
  6274. case "mind":
  6275. _formdiv = new U.UF.UI.form(
  6276. "思维导图",
  6277. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  6278. "id": "mind",
  6279. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6280. "onresize": function () { }
  6281. }, {
  6282. closecallback: function () { }
  6283. }, { "style": { "height": "36px" } }).form; //创建窗体
  6284. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6285. break;
  6286. case "doc":
  6287. // U.MD.D.I.isRoom();
  6288. _formdiv = new U.UF.UI.form(
  6289. "协同文档",
  6290. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6291. "id": "doc",
  6292. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6293. "onresize": function () { }
  6294. }, {
  6295. closecallback: function () { }
  6296. }, { "style": { "height": "36px" } }).form; //创建窗体
  6297. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6298. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6299. })
  6300. _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); } }
  6301. break;
  6302. case "study":
  6303. _formdiv = new U.UF.UI.form(
  6304. "课程中心",
  6305. $$("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
  6306. "id": "study",
  6307. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6308. "onresize": function () { }
  6309. }, {
  6310. closecallback: function () { }
  6311. }, { "style": { "height": "36px" } }).form; //创建窗体
  6312. _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); } }
  6313. break;
  6314. case "mindNetwork": //好友打开
  6315. _formdiv = new U.UF.UI.form(
  6316. "思维网格",
  6317. $$("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 }), {
  6318. "id": "mindNetwork",
  6319. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6320. "onresize": function () { }
  6321. }, {
  6322. closecallback: function () { }
  6323. }, { "style": { "height": "36px" } }).form; //创建窗体
  6324. _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); } }
  6325. break;
  6326. case "train": //好友打开
  6327. _formdiv = new U.UF.UI.form(
  6328. "训练平台",
  6329. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6330. "id": "train",
  6331. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6332. "onresize": function () { }
  6333. }, {
  6334. closecallback: function () { }
  6335. }, { "style": { "height": "36px" } }).form; //创建窗体
  6336. _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); } }
  6337. break;
  6338. case "sys":
  6339. _formdiv = new U.UF.UI.form(
  6340. "目标管理",
  6341. $$("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 }), {
  6342. "id": "sys",
  6343. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6344. "onresize": function () { }
  6345. }, {
  6346. closecallback: function () { }
  6347. }, { "style": { "height": "36px" } }).form; //创建窗体
  6348. _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); } }
  6349. break;
  6350. case "courseDesign":
  6351. _formdiv = new U.UF.UI.form(
  6352. "项目设计",
  6353. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6354. "id": "courseDesign",
  6355. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6356. "onresize": function () { }
  6357. }, {
  6358. closecallback: function () { }
  6359. }, { "style": { "height": "36px" } }).form; //创建窗体
  6360. _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); } }
  6361. break;
  6362. }
  6363. } else if (!_type) {
  6364. switch (str) {
  6365. case "my":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  6369. "id": "my",
  6370. "style": { "width": "42%", "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/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6376. break;
  6377. }
  6378. }
  6379. switch (str) {
  6380. // AIprogram2 AI体验 aihub.cocorobo.cn
  6381. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6382. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6383. case "formulaEdi": //公式编辑
  6384. _formdiv = new U.UF.UI.form(
  6385. "公式编辑",
  6386. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6387. "id": "formulaEdi",
  6388. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6389. "onresize": function () { }
  6390. }, {
  6391. closecallback: function () { }
  6392. }, { "style": { "height": "36px" } }).form; //创建窗体
  6393. _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); } }
  6394. break;
  6395. case "molStr": //分子结构
  6396. _formdiv = new U.UF.UI.form(
  6397. "分子结构",
  6398. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6399. "id": "molStr",
  6400. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6401. "onresize": function () { }
  6402. }, {
  6403. closecallback: function () { }
  6404. }, { "style": { "height": "36px" } }).form; //创建窗体
  6405. _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); } }
  6406. break;
  6407. case "timeAxis": //时间轴
  6408. _formdiv = new U.UF.UI.form(
  6409. "时间轴",
  6410. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6411. "id": "timeAxis",
  6412. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6413. "onresize": function () { }
  6414. }, {
  6415. closecallback: function () { }
  6416. }, { "style": { "height": "36px" } }).form; //创建窗体
  6417. _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); } }
  6418. break;
  6419. case "AIprogram2": //AI体验
  6420. _formdiv = new U.UF.UI.form(
  6421. "AI体验",
  6422. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6423. "id": "AIprogram2",
  6424. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6425. "onresize": function () { }
  6426. }, {
  6427. closecallback: function () { }
  6428. }, { "style": { "height": "36px" } }).form; //创建窗体
  6429. _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); } }
  6430. break;
  6431. case "Pythonprogram": //python编程
  6432. _formdiv = new U.UF.UI.form(
  6433. "Python编程",
  6434. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6435. "id": "Pythonprogram",
  6436. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6437. "onresize": function () { }
  6438. }, {
  6439. closecallback: function () { }
  6440. }, { "style": { "height": "36px" } }).form; //创建窗体
  6441. _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); } }
  6442. break;
  6443. case "AIprogram": //ai编程
  6444. _formdiv = new U.UF.UI.form(
  6445. "AI编程平台",
  6446. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6447. "id": "AIprogram",
  6448. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6449. "onresize": function () { }
  6450. }, {
  6451. closecallback: function () { }
  6452. }, { "style": { "height": "36px" } }).form; //创建窗体
  6453. _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); } }
  6454. break;
  6455. case "CocoPi": //CocoPi
  6456. _formdiv = new U.UF.UI.form(
  6457. "CocoPi",
  6458. $$("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" }), {
  6459. "id": "CocoPi",
  6460. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6461. "onresize": function () { }
  6462. }, {
  6463. closecallback: function () { }
  6464. }, { "style": { "height": "36px" } }).form; //创建窗体
  6465. _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); } }
  6466. break;
  6467. case "Wood": //Wood
  6468. _formdiv = new U.UF.UI.form(
  6469. "海龟编程",
  6470. $$("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/" }), {
  6471. "id": "Wood",
  6472. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6473. "onresize": function () { }
  6474. }, {
  6475. closecallback: function () { }
  6476. }, { "style": { "height": "36px" } }).form; //创建窗体
  6477. _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); } }
  6478. break;
  6479. case "car": //模拟驾驶
  6480. _formdiv = new U.UF.UI.form(
  6481. "模拟驾驶",
  6482. $$("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/" }), {
  6483. "id": "car",
  6484. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6485. "onresize": function () { }
  6486. }, {
  6487. closecallback: function () { }
  6488. }, { "style": { "height": "36px" } }).form; //创建窗体
  6489. _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); } }
  6490. break;
  6491. case "lineSearch": //路径搜索
  6492. _formdiv = new U.UF.UI.form(
  6493. "路径搜索",
  6494. $$("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/" }), {
  6495. "id": "lineSearch",
  6496. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6497. "onresize": function () { }
  6498. }, {
  6499. closecallback: function () { }
  6500. }, { "style": { "height": "36px" } }).form; //创建窗体
  6501. _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); } }
  6502. break;
  6503. case "deepLearning": //深度学习
  6504. _formdiv = new U.UF.UI.form(
  6505. "深度学习",
  6506. $$("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/#" }), {
  6507. "id": "deepLearning",
  6508. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6509. "onresize": function () { }
  6510. }, {
  6511. closecallback: function () { }
  6512. }, { "style": { "height": "36px" } }).form; //创建窗体
  6513. _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); } }
  6514. break;
  6515. case "allHistory": //深度学习
  6516. _formdiv = new U.UF.UI.form(
  6517. "全历史",
  6518. $$("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/" }), {
  6519. "id": "allHistory",
  6520. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6521. "onresize": function () { }
  6522. }, {
  6523. closecallback: function () { }
  6524. }, { "style": { "height": "36px" } }).form; //创建窗体
  6525. _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); } }
  6526. break;
  6527. case "chatPDF": //ai编程
  6528. _formdiv = new U.UF.UI.form(
  6529. "chatPDF",
  6530. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6531. "id": "chatPDF",
  6532. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6533. "onresize": function () { }
  6534. }, {
  6535. closecallback: function () { }
  6536. }, { "style": { "height": "36px" } }).form; //创建窗体
  6537. _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); } }
  6538. break;
  6539. case "resources": //国家教育
  6540. _formdiv = new U.UF.UI.form(
  6541. "国家教育",
  6542. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6543. "id": "resources",
  6544. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6545. "onresize": function () { }
  6546. }, {
  6547. closecallback: function () { }
  6548. }, { "style": { "height": "36px" } }).form; //创建窗体
  6549. _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); } }
  6550. break;
  6551. case "codeEdit": //源码编辑
  6552. _formdiv = new U.UF.UI.form(
  6553. "源码编辑",
  6554. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6555. "id": "codeEdit",
  6556. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6557. "onresize": function () { }
  6558. }, {
  6559. closecallback: function () { }
  6560. }, { "style": { "height": "36px" } }).form; //创建窗体
  6561. _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); } }
  6562. break; //
  6563. case "MindMap": //MindMap
  6564. _formdiv = new U.UF.UI.form(
  6565. "MindMap",
  6566. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6567. "id": "MindMap",
  6568. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6569. "onresize": function () { }
  6570. }, {
  6571. closecallback: function () { }
  6572. }, { "style": { "height": "36px" } }).form; //创建窗体
  6573. _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); } }
  6574. break;
  6575. case "netWorkPanel": //netWorkPanel
  6576. _formdiv = new U.UF.UI.form(
  6577. "netWorkPanel",
  6578. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6579. "id": "netWorkPanel",
  6580. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6581. "onresize": function () { }
  6582. }, {
  6583. closecallback: function () { }
  6584. }, { "style": { "height": "36px" } }).form; //创建窗体
  6585. _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); } }
  6586. break;
  6587. case "GeoGebra": //GeoGebra
  6588. _formdiv = new U.UF.UI.form(
  6589. "GeoGebra",
  6590. $$("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" }), {
  6591. "id": "GeoGebra",
  6592. "style": { "width": "80%", "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/GeoGebra.png)" }, "name": "GeoGebra", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6598. break;
  6599. case "translation": //翻译
  6600. _formdiv = new U.UF.UI.form(
  6601. "翻译",
  6602. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6603. "id": "translation",
  6604. "style": { "width": "80%", "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/translation.png)" }, "name": "翻译", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6610. break;
  6611. case "mohe": //魔盒
  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": "//games.cocorobo.cn/view/index.html#/" }), {
  6615. "id": "mohe",
  6616. "style": { "width": "375px", "height": "667px", "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/mohe.png)" }, "name": "魔盒识字", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6622. break;
  6623. case "24game": //24点
  6624. _formdiv = new U.UF.UI.form(
  6625. "24点",
  6626. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6627. "id": "24game",
  6628. "style": { "width": "375px", "height": "667px", "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/24game.png)" }, "name": "24点", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6634. break;
  6635. case "case":
  6636. _formdiv = new U.UF.UI.form(
  6637. "课程进展",
  6638. $$("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 }), {
  6639. "id": "case",
  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/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6646. break;
  6647. case "snf":
  6648. _formdiv = new U.UF.UI.form(
  6649. "赛诺梵",
  6650. $$("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" }), {
  6651. "id": "snf",
  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/snf.png)" }, "name": "赛诺梵", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6658. break;
  6659. case "hanFamily":
  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": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6663. "id": "hanFamily",
  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/hanFamily.png)" }, "name": "汉字家族", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6670. break;
  6671. case "hanClassics":
  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": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6675. "id": "hanClassics",
  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/hanClassics.png)" }, "name": "国学经典", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6682. break;
  6683. case "hanTraining":
  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": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6687. "id": "hanTraining",
  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/hanTraining.png)" }, "name": "笔画训练", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6694. break;
  6695. case "hanClass":
  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": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6699. "id": "hanClass",
  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/hanClass.png)" }, "name": "书法课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6706. break;
  6707. case "han":
  6708. _formdiv = new U.UF.UI.form(
  6709. "汉字宫",
  6710. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6711. "id": "han",
  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/han.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6718. break;
  6719. case "projectGM": //课程管理
  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/#/courseGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6723. "id": "projectGM",
  6724. "style": { "width": "90%", "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/gm/courseMange.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6730. break;
  6731. case "studyGM": //课程中心
  6732. _formdiv = new U.UF.UI.form(
  6733. "课程中心",
  6734. $$("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
  6735. "id": "study",
  6736. "style": { "width": "100%", "height": "100%", "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/gm/learning.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6742. break;
  6743. // studentGM
  6744. case "studentGM": //学生管理
  6745. _formdiv = new U.UF.UI.form(
  6746. "学生管理",
  6747. $$("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 }), {
  6748. "id": "studentGM",
  6749. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6750. "onresize": function () { }
  6751. }, {
  6752. closecallback: function () { }
  6753. }, { "style": { "height": "36px" } }).form; //创建窗体
  6754. _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); } }
  6755. break;
  6756. case "evaluateGM": //学生评价
  6757. _formdiv = new U.UF.UI.form(
  6758. "学生评价",
  6759. $$("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 }), {
  6760. "id": "evaluateGM",
  6761. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6762. "onresize": function () { }
  6763. }, {
  6764. closecallback: function () { }
  6765. }, { "style": { "height": "36px" } }).form; //创建窗体
  6766. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6767. break;
  6768. // classGM
  6769. case "classGM": //班级管理
  6770. _formdiv = new U.UF.UI.form(
  6771. "班级管理",
  6772. $$("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 }), {
  6773. "id": "classGM",
  6774. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6775. "onresize": function () { }
  6776. }, {
  6777. closecallback: function () { }
  6778. }, { "style": { "height": "36px" } }).form; //创建窗体
  6779. _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); } }
  6780. break;
  6781. // dataGM
  6782. case "dataGM":
  6783. _formdiv = new U.UF.UI.form(
  6784. "我的资料",
  6785. $$("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 }), {
  6786. "id": "dataGM",
  6787. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6788. "onresize": function () { }
  6789. }, {
  6790. closecallback: function () { }
  6791. }, { "style": { "height": "36px" } }).form; //创建窗体
  6792. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/data.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6793. break;
  6794. // caseGM
  6795. case "caseGM": //课程进展
  6796. _formdiv = new U.UF.UI.form(
  6797. "课程进展",
  6798. $$("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 }), {
  6799. "id": "caseGM",
  6800. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6801. "onresize": function () { }
  6802. }, {
  6803. closecallback: function () { }
  6804. }, { "style": { "height": "36px" } }).form; //创建窗体
  6805. _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); } }
  6806. break;
  6807. // meterialGM
  6808. case "meterialGM": //素材库
  6809. _formdiv = new U.UF.UI.form(
  6810. "素材库",
  6811. $$("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 }), {
  6812. "id": "meterialGM",
  6813. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6814. "onresize": function () { }
  6815. }, {
  6816. closecallback: function () { }
  6817. }, { "style": { "height": "36px" } }).form; //创建窗体
  6818. _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); } }
  6819. break;
  6820. // evaluateSGM
  6821. case "evaluateSGM": //我的评价
  6822. _formdiv = new U.UF.UI.form(
  6823. "我的评价",
  6824. $$("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 }), {
  6825. "id": "evaluateSGM",
  6826. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6827. "onresize": function () { }
  6828. }, {
  6829. closecallback: function () { }
  6830. }, { "style": { "height": "36px" } }).form; //创建窗体
  6831. _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); } }
  6832. break;
  6833. case "jupyter": //jupyter
  6834. _formdiv = new U.UF.UI.form(
  6835. "jupyter",
  6836. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6837. "id": "jupyter",
  6838. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6839. "onresize": function () { }
  6840. }, {
  6841. closecallback: function () { }
  6842. }, { "style": { "height": "36px" } }).form; //创建窗体
  6843. _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); } }
  6844. break;
  6845. case "number": //数字实验室
  6846. _formdiv = new U.UF.UI.form(
  6847. "数字实验室",
  6848. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6849. "id": "number",
  6850. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6851. "onresize": function () { }
  6852. }, {
  6853. closecallback: function () { }
  6854. }, { "style": { "height": "36px" } }).form; //创建窗体
  6855. _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); } }
  6856. break;
  6857. case "studentCourse": //项目管理 学生
  6858. _formdiv = new U.UF.UI.form(
  6859. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6860. $$("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 }), {
  6861. "id": "studentCourse",
  6862. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6863. "onresize": function () { }
  6864. }, {
  6865. closecallback: function () { }
  6866. }, { "style": { "height": "36px" } }).form; //创建窗体
  6867. _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); } }
  6868. break;
  6869. case "studentCourseS": //项目管理 老师
  6870. _formdiv = new U.UF.UI.form(
  6871. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6872. $$("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 }), {
  6873. "id": "studentCourseS",
  6874. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6875. "onresize": function () { }
  6876. }, {
  6877. closecallback: function () { }
  6878. }, { "style": { "height": "36px" } }).form; //创建窗体
  6879. _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); } }
  6880. break;
  6881. case "studentIndex": //项目中心
  6882. _formdiv = new U.UF.UI.form(
  6883. "项目中心",
  6884. $$("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 }), {
  6885. "id": "studentIndex",
  6886. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6887. "onresize": function () { }
  6888. }, {
  6889. closecallback: function () { }
  6890. }, { "style": { "height": "36px" } }).form; //创建窗体
  6891. _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); } }
  6892. break;
  6893. case "CaseDesignS":
  6894. _formdiv = new U.UF.UI.form(
  6895. "项目进展",
  6896. $$("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 }), {
  6897. "id": "case",
  6898. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6899. "onresize": function () { }
  6900. }, {
  6901. closecallback: function () { }
  6902. }, { "style": { "height": "36px" } }).form; //创建窗体
  6903. _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); } }
  6904. break;
  6905. case "tcStudent": //腾讯学生管理
  6906. _formdiv = new U.UF.UI.form(
  6907. "学生管理",
  6908. $$("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 }), {
  6909. "id": "tcStudent",
  6910. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6911. "onresize": function () { }
  6912. }, {
  6913. closecallback: function () { }
  6914. }, { "style": { "height": "36px" } }).form; //创建窗体
  6915. _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); } }
  6916. break;
  6917. case "tcSchool": //腾讯学校管理
  6918. _formdiv = new U.UF.UI.form(
  6919. "学校管理",
  6920. $$("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 }), {
  6921. "id": "tcSchool",
  6922. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6923. "onresize": function () { }
  6924. }, {
  6925. closecallback: function () { }
  6926. }, { "style": { "height": "36px" } }).form; //创建窗体
  6927. _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); } }
  6928. break;
  6929. case "tcTeacher": //腾讯学校管理
  6930. _formdiv = new U.UF.UI.form(
  6931. "教师管理",
  6932. $$("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 }), {
  6933. "id": "tcTeacher",
  6934. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6935. "onresize": function () { }
  6936. }, {
  6937. closecallback: function () { }
  6938. }, { "style": { "height": "36px" } }).form; //创建窗体
  6939. _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); } }
  6940. break;
  6941. case "teacher":
  6942. _formdiv = new U.UF.UI.form(
  6943. "教师管理",
  6944. $$("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 }), {
  6945. "id": "teacher",
  6946. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6947. "onresize": function () { }
  6948. }, {
  6949. closecallback: function () { }
  6950. }, { "style": { "height": "36px" } }).form; //创建窗体
  6951. _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); } }
  6952. break;
  6953. case "tcData": //腾讯我的资料
  6954. _formdiv = new U.UF.UI.form(
  6955. "我的资料",
  6956. $$("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 }), {
  6957. "id": "tcData",
  6958. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6959. "onresize": function () { }
  6960. }, {
  6961. closecallback: function () { }
  6962. }, { "style": { "height": "36px" } }).form; //创建窗体
  6963. _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); } }
  6964. break;
  6965. case "tcNotice": //腾讯消息通知
  6966. _formdiv = new U.UF.UI.form(
  6967. "消息通知",
  6968. $$("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 }), {
  6969. "id": "tcNotice",
  6970. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6971. "onresize": function () { }
  6972. }, {
  6973. closecallback: function () { }
  6974. }, { "style": { "height": "36px" } }).form; //创建窗体
  6975. _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); } }
  6976. break;
  6977. case "myReport": //好友打开
  6978. _formdiv = new U.UF.UI.form(
  6979. "我的评价",
  6980. $$("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 }), {
  6981. "id": "myReport",
  6982. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6983. "onresize": function () { }
  6984. }, {
  6985. closecallback: function () { }
  6986. }, { "style": { "height": "36px" } }).form; //创建窗体
  6987. _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); } }
  6988. break;
  6989. case "learnAna": //好友打开
  6990. _formdiv = new U.UF.UI.form(
  6991. "学习分析",
  6992. $$("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 }), {
  6993. "id": "learnAna",
  6994. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6995. "onresize": function () { }
  6996. }, {
  6997. closecallback: function () { }
  6998. }, { "style": { "height": "36px" } }).form; //创建窗体
  6999. _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); } }
  7000. break;
  7001. case "AIChat": //AI共创
  7002. _formdiv = new U.UF.UI.form(
  7003. "AI共创",
  7004. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  7005. "id": "AIChat",
  7006. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  7007. "onresize": function () { }
  7008. }, {
  7009. istop: true,
  7010. closecallback: function () { $("#aichat_icon").remove(); },
  7011. narrowcallback: function () {
  7012. if (!$("#aichat_icon")[0]) {
  7013. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  7014. }
  7015. },
  7016. }, { "style": { "height": "36px" } }).form; //创建窗体
  7017. _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); } }
  7018. break;
  7019. case "ainew": //AI共创
  7020. _formdiv = new U.UF.UI.form(
  7021. "AI协同",
  7022. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  7023. "id": "ainew",
  7024. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7025. "onresize": function () { }
  7026. }, {
  7027. closecallback: function () { }
  7028. }, { "style": { "height": "36px" } }).form; //创建窗体
  7029. _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); } }
  7030. break;
  7031. case "gpt4": //gpt4
  7032. _formdiv = new U.UF.UI.form(
  7033. "AI助手",
  7034. $$("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 }), {
  7035. "id": "gpt4",
  7036. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7037. "onresize": function () { }
  7038. }, {
  7039. closecallback: function () { }
  7040. }, { "style": { "height": "36px" } }).form; //创建窗体
  7041. _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); } }
  7042. break;
  7043. case "aigpt": //gpt4
  7044. _formdiv = new U.UF.UI.form(
  7045. "AI助手+",
  7046. $$("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 }), {
  7047. "id": "aigpt",
  7048. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7049. "onresize": function () { }
  7050. }, {
  7051. closecallback: function () {
  7052. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  7053. }
  7054. }, { "style": { "height": "36px" } }).form; //创建窗体
  7055. _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); } }
  7056. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7057. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  7058. })
  7059. break;
  7060. case "aiKnowledge": //aiKnowledge
  7061. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7062. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  7063. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7064. }
  7065. _formdiv = new U.UF.UI.form(
  7066. "知识建构",
  7067. $$("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 }), {
  7068. "id": "aiKnowledge",
  7069. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7070. "onresize": function () { }
  7071. }, {
  7072. closecallback: function () { }
  7073. }, { "style": { "height": "36px" } }).form; //创建窗体
  7074. _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); } }
  7075. break;
  7076. case "futureClass": //AI共创
  7077. _formdiv = new U.UF.UI.form(
  7078. "协同建构",
  7079. $$("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
  7080. "id": "synergyCourse",
  7081. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7082. "onresize": function () { }
  7083. }, {
  7084. closecallback: function () {
  7085. $("iframe", _formdiv)[0].contentWindow.loginout();
  7086. }
  7087. }, { "style": { "height": "36px" } }).form; //创建窗体
  7088. _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); } }
  7089. break;
  7090. case "aiagent": //ai agent
  7091. _formdiv = new U.UF.UI.form(
  7092. "AI Agent",
  7093. $$("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" }), {
  7094. "id": "AIAgent",
  7095. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7096. "onresize": function () { }
  7097. }, {
  7098. closecallback: function () { }
  7099. }, { "style": { "height": "36px" } }).form; //创建窗体
  7100. _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); } }
  7101. break;
  7102. case "dataBoard": //数据看板
  7103. _formdiv = new U.UF.UI.form(
  7104. "数据看板",
  7105. $$("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 }), {
  7106. "id": "dataBoard",
  7107. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7108. "onresize": function () { }
  7109. }, {
  7110. closecallback: function () { }
  7111. }, { "style": { "height": "36px" } }).form; //创建窗体
  7112. _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); } }
  7113. break;
  7114. case "dataBoardSies": //数据融合
  7115. _formdiv = new U.UF.UI.form(
  7116. "数据融合",
  7117. $$("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 }), {
  7118. "id": "dataBoardSies",
  7119. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7120. "onresize": function () { }
  7121. }, {
  7122. closecallback: function () { }
  7123. }, { "style": { "height": "36px" } }).form; //创建窗体
  7124. _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); } }
  7125. break;
  7126. case "dataBoardNew": //数据看板
  7127. _formdiv = new U.UF.UI.form(
  7128. "综合看板",
  7129. $$("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 }), {
  7130. "id": "dataBoardNew",
  7131. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7132. "onresize": function () { }
  7133. }, {
  7134. closecallback: function () { }
  7135. }, { "style": { "height": "36px" } }).form; //创建窗体
  7136. _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); } }
  7137. break;
  7138. case "dataBoardTest": //数据看板
  7139. _formdiv = new U.UF.UI.form(
  7140. "评测看板",
  7141. $$("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 }), {
  7142. "id": "dataBoardTest",
  7143. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7144. "onresize": function () { }
  7145. }, {
  7146. closecallback: function () { }
  7147. }, { "style": { "height": "36px" } }).form; //创建窗体
  7148. _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); } }
  7149. break;
  7150. case "AIAnalyse": //AI共创
  7151. _formdiv = new U.UF.UI.form(
  7152. "AI分析",
  7153. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  7154. "id": "AIAnalyse",
  7155. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7156. "onresize": function () { }
  7157. }, {
  7158. closecallback: function () { }
  7159. }, { "style": { "height": "36px" } }).form; //创建窗体
  7160. _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); } }
  7161. break;
  7162. case "studioCourse": //AI共创
  7163. _formdiv = new U.UF.UI.form(
  7164. "工作管理",
  7165. $$("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 }), {
  7166. "id": "studioCourse",
  7167. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7168. "onresize": function () { }
  7169. }, {
  7170. closecallback: function () { }
  7171. }, { "style": { "height": "36px" } }).form; //创建窗体
  7172. _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); } }
  7173. break;
  7174. case "studioIndex": //AI共创
  7175. _formdiv = new U.UF.UI.form(
  7176. "工作中心",
  7177. $$("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 }), {
  7178. "id": "studioIndex",
  7179. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7180. "onresize": function () { }
  7181. }, {
  7182. closecallback: function () { }
  7183. }, { "style": { "height": "36px" } }).form; //创建窗体
  7184. _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); } }
  7185. break;
  7186. case "source":
  7187. _formdiv = new U.UF.UI.form(
  7188. "教学资源",
  7189. $$("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 }), {
  7190. "id": "source",
  7191. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7192. "onresize": function () { }
  7193. }, {
  7194. closecallback: function () { }
  7195. }, { "style": { "height": "36px" } }).form; //创建窗体
  7196. _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); } }
  7197. break;
  7198. case "testTeacher":
  7199. _formdiv = new U.UF.UI.form(
  7200. "智能表单",
  7201. $$("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 }), {
  7202. "id": "testTeacher",
  7203. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7204. "onresize": function () { }
  7205. }, {
  7206. closecallback: function () { }
  7207. }, { "style": { "height": "36px" } }).form; //创建窗体
  7208. _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); } }
  7209. break;
  7210. case "testStudent":
  7211. _formdiv = new U.UF.UI.form(
  7212. "教师中心",
  7213. $$("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 }), {
  7214. "id": "testStudent",
  7215. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7216. "onresize": function () { }
  7217. }, {
  7218. closecallback: function () { }
  7219. }, { "style": { "height": "36px" } }).form; //创建窗体
  7220. _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); } }
  7221. break;
  7222. case "testTeacherSies":
  7223. _formdiv = new U.UF.UI.form(
  7224. "教师管理",
  7225. $$("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 }), {
  7226. "id": "testTeacherSies",
  7227. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7228. "onresize": function () { }
  7229. }, {
  7230. closecallback: function () { }
  7231. }, { "style": { "height": "36px" } }).form; //创建窗体
  7232. _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); } }
  7233. break;
  7234. case "testStudentSies":
  7235. _formdiv = new U.UF.UI.form(
  7236. "教师中心",
  7237. $$("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 }), {
  7238. "id": "testStudentSies",
  7239. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7240. "onresize": function () { }
  7241. }, {
  7242. closecallback: function () { }
  7243. }, { "style": { "height": "36px" } }).form; //创建窗体
  7244. _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); } }
  7245. break;
  7246. case "ytpbl": //消息通知
  7247. _formdiv = new U.UF.UI.form(
  7248. "案例征集",
  7249. $$("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 }), {
  7250. "id": "ytpbl",
  7251. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7252. "onresize": function () { }
  7253. }, {
  7254. closecallback: function () { }
  7255. }, { "style": { "height": "36px" } }).form; //创建窗体
  7256. _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); } }
  7257. // 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");
  7258. break;
  7259. case "aiCourseResource": //人工智能窗体
  7260. _formdiv = new U.UF.UI.form(
  7261. false,
  7262. $$("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 }), {
  7263. "id": "aiCourseResource",
  7264. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7265. "onresize": function () { },
  7266. "isdrag": false,
  7267. }, {
  7268. closecallback: function () { }
  7269. }, { "style": { "height": "36px" } }).form; //创建窗体
  7270. _taskbar = ''
  7271. break;
  7272. case "szdjgCocooroboX": //图形化编程
  7273. _formdiv = new U.UF.UI.form(
  7274. "图形化编程",
  7275. $$("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" }), {
  7276. "id": "szdjgCocooroboX",
  7277. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7278. "onresize": function () { }
  7279. }, {
  7280. closecallback: function () { }
  7281. }, { "style": { "height": "36px" } }).form; //创建窗体
  7282. _taskbar = ''
  7283. break;
  7284. case "szdjgPython": //python编程
  7285. _formdiv = new U.UF.UI.form(
  7286. "Python编程",
  7287. $$("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" }), {
  7288. "id": "szdjgPython",
  7289. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7290. "onresize": function () { }
  7291. }, {
  7292. closecallback: function () { }
  7293. }, { "style": { "height": "36px" } }).form; //创建窗体
  7294. _taskbar = ''
  7295. break;
  7296. case "Record":
  7297. _formdiv = new U.UF.UI.form(
  7298. "观察记录",
  7299. $$("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 }), {
  7300. "id": "Record",
  7301. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7302. "onresize": function () { }
  7303. }, {
  7304. closecallback: function () { }
  7305. }, { "style": { "height": "36px" } }).form; //创建窗体
  7306. _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); } }
  7307. break;
  7308. case "aigptCourse":
  7309. _formdiv = new U.UF.UI.form(
  7310. "AI智能体",
  7311. $$("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' }), {
  7312. "id": "aigptCourse",
  7313. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7314. "onresize": function () { }
  7315. }, {
  7316. closecallback: function () { }
  7317. }, { "style": { "height": "36px" } }).form; //创建窗体
  7318. _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); } }
  7319. break;
  7320. case "classroomObservation":
  7321. _formdiv = new U.UF.UI.form(
  7322. "课堂观察",
  7323. $$("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 }), {
  7324. "id": "classroomObservation",
  7325. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7326. "onresize": function () { }
  7327. }, {
  7328. closecallback: function () { }
  7329. }, { "style": { "height": "36px" } }).form; //创建窗体
  7330. _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); } }
  7331. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7332. break;
  7333. case "pblCourse":
  7334. _formdiv = new U.UF.UI.form(
  7335. "学生PBL",
  7336. $$("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 }), {
  7337. "id": "pblCourse",
  7338. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7339. "onresize": function () { }
  7340. }, {
  7341. closecallback: function () { }
  7342. }, { "style": { "height": "36px" } }).form; //创建窗体
  7343. _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); } }
  7344. break;
  7345. case "appStore":
  7346. U.MD.D.addOp('','cocoflowOpen','')
  7347. _formdiv = new U.UF.UI.form(
  7348. "CocoFlow",
  7349. $$("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": "//app.cocorobo.cn/#/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7350. "id": "appStore",
  7351. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7352. "onresize": function () { }
  7353. }, {
  7354. closecallback: function () { }
  7355. }, { "style": { "height": "36px" } }).form; //创建窗体
  7356. _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); } }
  7357. break;
  7358. case "sassPlatform":
  7359. _formdiv = new U.UF.UI.form(
  7360. "Sass通用后台管理",
  7361. $$("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 }), {
  7362. "id": "sassPlatform",
  7363. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7364. "onresize": function () { }
  7365. }, {
  7366. closecallback: function () { }
  7367. }, { "style": { "height": "36px" } }).form; //创建窗体
  7368. _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); } }
  7369. break;
  7370. case "EDU":
  7371. _formdiv = new U.UF.UI.form(
  7372. "EDU",
  7373. $$("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" }), {
  7374. "id": "EDU",
  7375. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7376. "onresize": function () { }
  7377. }, {
  7378. closecallback: function () { }
  7379. }, { "style": { "height": "36px" } }).form; //创建窗体
  7380. _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); } }
  7381. break;
  7382. case "knowledge":
  7383. _formdiv = new U.UF.UI.form(
  7384. "知识库",
  7385. $$("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 }), {
  7386. "id": "knowledge",
  7387. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7388. "onresize": function () { }
  7389. }, {
  7390. closecallback: function () { }
  7391. }, { "style": { "height": "36px" } }).form; //创建窗体
  7392. _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); } }
  7393. break;
  7394. case "userExamine":
  7395. _formdiv = new U.UF.UI.form(
  7396. "账号申请",
  7397. $$("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" }), {
  7398. "id": "userExamine",
  7399. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7400. "onresize": function () { }
  7401. }, {
  7402. closecallback: function () { }
  7403. }, { "style": { "height": "36px" } }).form; //创建窗体
  7404. break;
  7405. case "cocoflowDeskTop": //cocoflowDeskTop
  7406. _formdiv = new U.UF.UI.form(
  7407. false,
  7408. $$("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": "//app.cocorobo.cn/#/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7409. "id": "cocoflowDeskTop",
  7410. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7411. "onresize": function () { },
  7412. "isdrag": false,
  7413. }, {
  7414. closecallback: function () { }
  7415. }, { "style": { "height": "36px" } }).form; //创建窗体
  7416. _taskbar = ''
  7417. break;
  7418. }
  7419. //U.MD.D.I.openClick(str);
  7420. //如果有任务栏信息
  7421. if (_taskbar) {
  7422. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7423. }
  7424. if(iframeBool){
  7425. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7426. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7427. // console.log("iframe进入");
  7428. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7429. // };
  7430. setTimeout(() => {
  7431. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7432. }, 2000);
  7433. }
  7434. }
  7435. // U.MD.D.I.openClick = function(str){
  7436. // var click = '';
  7437. // switch(str){
  7438. // case 'friend':
  7439. // click = '我的好友';
  7440. // break;
  7441. // case 'domain':
  7442. // click = '域名管理';
  7443. // break;
  7444. // case 'disk':
  7445. // click = '我的云盘';
  7446. // break;
  7447. // case 'word':
  7448. // click = 'Word';
  7449. // break;
  7450. // case 'excel':
  7451. // click = 'Execl';
  7452. // break;
  7453. // case 'txt':
  7454. // click = '文本文件';
  7455. // break;
  7456. // case 'lookupFriend':
  7457. // click = '查找好友';
  7458. // break;
  7459. // case 'ftp':
  7460. // click = 'FTP';
  7461. // break;
  7462. // case 'group':
  7463. // click = '群组';
  7464. // break;
  7465. // case 'set':
  7466. // click = '我的设置';
  7467. // break;
  7468. // case 'systemSet':
  7469. // click = '系统设置';
  7470. // break;
  7471. // case 'boomYun':
  7472. // click = '互联办公';
  7473. // break;
  7474. // case 'xz':
  7475. // click = '云端下载';
  7476. // break;
  7477. // case 'client':
  7478. // click = '有思浏览器';
  7479. // break;
  7480. // case 'backEndProgramming':
  7481. // click = '在线后台编程';
  7482. // break;
  7483. // case 'frontEndProgramming':
  7484. // click = '在线前端编程';
  7485. // break;
  7486. // default: break;
  7487. // }
  7488. // if(U.MD.D.I.Ip && click){
  7489. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7490. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7491. // })
  7492. // }
  7493. // }
  7494. /**
  7495. *函数作用:ajax简易函数,使用post格式
  7496. *@param url {data} 后台地址
  7497. *@param data {data} 参数json
  7498. *@param fn {data} 回调函数
  7499. *
  7500. */
  7501. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7502. // var xhr = new XMLHttpRequest();
  7503. // xhr.open("GET",url,true);
  7504. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7505. // xhr.onreadystatechange = function(){
  7506. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7507. // fn.call(this,xhr.responseText);
  7508. // }
  7509. // };
  7510. // xhr.send();
  7511. // }
  7512. /*判断是否是内网IP*/
  7513. // U.MD.D.I.isInnerIPFn = function(str){
  7514. // var curPageUrl = str;
  7515. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7516. // curPageUrl =curPageUrl.replace(reg1,'');
  7517. // // console.log('curPageUrl-1 '+curPageUrl);
  7518. // var reg2 = /\:+/g;//替换冒号为一点
  7519. // curPageUrl =curPageUrl.replace(reg2,'.');
  7520. // // console.log('curPageUrl-2 '+curPageUrl);
  7521. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7522. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7523. // if(curPageUrl[2] != '16'){
  7524. // return ipAddress;
  7525. // }else{
  7526. // return false;
  7527. // }
  7528. // }
  7529. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7530. // //compatibility for firefox and chrome
  7531. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7532. // var pc = new myPeerConnection({
  7533. // iceServers: []
  7534. // }),
  7535. // noop = function() {},
  7536. // localIPs = {},
  7537. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7538. // key;
  7539. // function iterateIP(ip) {
  7540. // if (!localIPs[ip]) onNewIP(ip);
  7541. // localIPs[ip] = true;
  7542. // }
  7543. // //create a bogus data channel
  7544. // pc.createDataChannel("");
  7545. // // create offer and set local description
  7546. // pc.createOffer().then(function(sdp) {
  7547. // sdp.sdp.split('\n').forEach(function(line) {
  7548. // if (line.indexOf('candidate') < 0) return;
  7549. // line.match(ipRegex).forEach(iterateIP);
  7550. // });
  7551. // pc.setLocalDescription(sdp, noop, noop);
  7552. // }).catch(function(reason) {
  7553. // // An error occurred, so handle the failure to connect
  7554. // });
  7555. // //sten for candidate events
  7556. // pc.onicecandidate = function(ice) {
  7557. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7558. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7559. // };
  7560. // }
  7561. // U.MD.D.I.getUserIpBool = function(callback){
  7562. // U.MD.D.I.getUserIP(function(ip){
  7563. // alert("Got IP! :" + ip);
  7564. // });
  7565. //}
  7566. //#endregion
  7567. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7568. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7569. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7570. _userinfo = US.userInfo, //登录用户信息
  7571. _userid = US.userInfo.userid //登录用户id
  7572. let _iframe;
  7573. let _cid = cid,
  7574. _stage = stage,
  7575. _task = task,
  7576. _tool = tool;
  7577. var _jie = $$("div", {
  7578. "style": {
  7579. "position": "absolute",
  7580. "bottom": "50px",
  7581. "right": "50px",
  7582. "zIndex": "9999",
  7583. "backgroundColor": "#2268bc",
  7584. "color": "#fff",
  7585. "padding": "12px 20px",
  7586. "cursor": "pointer",
  7587. "borderRadius": "4px",
  7588. },
  7589. "innerHTML": "提交作业"
  7590. })
  7591. let aTool = ''
  7592. let _loading = document.createElement('div')
  7593. _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;"
  7594. // _loading.id = "";
  7595. let _lchild = document.createElement('div')
  7596. let _limg = document.createElement('img')
  7597. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7598. _limg.style = "width: 26px;margin-right: 10px;"
  7599. _lchild.appendChild(_limg)
  7600. let _lspan = document.createElement('span')
  7601. _lspan.innerHTML = "上传中..."
  7602. _lchild.appendChild(_lspan)
  7603. _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%);"
  7604. _loading.appendChild(_lchild)
  7605. var _box = $$('div', {
  7606. "style": {
  7607. "position": "relative",
  7608. "width": "100%",
  7609. "height": "100%",
  7610. },
  7611. })
  7612. _box.appendChild(_loading)
  7613. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7614. switch (str) {
  7615. case "whiteboard":
  7616. aTool = 1;
  7617. _iframe = $$("iframe", {
  7618. "frameborder": "no",
  7619. "border": "0",
  7620. "scrolling ": "no",
  7621. "style": {
  7622. "cssText": "border:0;width:100%;height:100%"
  7623. },
  7624. "src": "https://beta.iwb.cocorobo.cn/"
  7625. })
  7626. _box.appendChild(_iframe);
  7627. _box.appendChild(_jie);
  7628. _formdiv = new U.UF.UI.form(
  7629. "电子白板",
  7630. _box, {
  7631. "id": "whiteboard" + cid + stage + task + tool,
  7632. "style": {
  7633. "width": "90%",
  7634. "height": "90%",
  7635. "overflow": 'hidden'
  7636. },
  7637. "onresize": function () { }
  7638. }, {
  7639. closecallback: function () { }
  7640. }, {
  7641. "style": {
  7642. "height": "36px"
  7643. }
  7644. }).form; //创建窗体
  7645. _taskbar = {
  7646. "id": str + _formdiv.id,
  7647. "style": {
  7648. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7649. },
  7650. "name": "电子白板",
  7651. "forms": _formdiv,
  7652. "click": function () {
  7653. U.MD.D.I.openApplication(str, obj, info);
  7654. }
  7655. }
  7656. break;
  7657. case "mind":
  7658. aTool = 3;
  7659. _iframe = $$("iframe", {
  7660. "frameborder": "no",
  7661. "border": "0",
  7662. "scrolling ": "no",
  7663. "style": {
  7664. "cssText": "border:0;width:100%;height:100%"
  7665. },
  7666. "src": "/kityminder-editor/dist/index.html"
  7667. })
  7668. _box.appendChild(_iframe);
  7669. _box.appendChild(_jie);
  7670. _formdiv = new U.UF.UI.form(
  7671. "思维导图",
  7672. _box, { //"/jsmind/example/demo.html"
  7673. "id": "mind" + cid + stage + task + tool,
  7674. "style": {
  7675. "width": "90%",
  7676. "height": "90%",
  7677. "overflow": 'hidden'
  7678. },
  7679. "onresize": function () { }
  7680. }, {
  7681. closecallback: function () { }
  7682. }, {
  7683. "style": {
  7684. "height": "36px"
  7685. }
  7686. }).form; //创建窗体
  7687. _taskbar = {
  7688. "id": str + _formdiv.id,
  7689. "style": {
  7690. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7691. },
  7692. "name": "思维导图",
  7693. "forms": _formdiv,
  7694. "click": function () {
  7695. U.MD.D.I.openApplication(str, obj, info);
  7696. }
  7697. }
  7698. break;
  7699. case "MindMap":
  7700. aTool = 3;
  7701. _iframe = $$("iframe", {
  7702. "frameborder": "no",
  7703. "border": "0",
  7704. "scrolling ": "no",
  7705. "style": {
  7706. "cssText": "border:0;width:100%;height:100%"
  7707. },
  7708. "src": "//cloud.cocorobo.cn/mind/"
  7709. })
  7710. _box.appendChild(_iframe);
  7711. _box.appendChild(_jie);
  7712. _formdiv = new U.UF.UI.form(
  7713. "思维导图",
  7714. _box, { //"/jsmind/example/demo.html"
  7715. "id": "mind" + cid + stage + task + tool,
  7716. "style": {
  7717. "width": "90%",
  7718. "height": "90%",
  7719. "overflow": 'hidden'
  7720. },
  7721. "onresize": function () { }
  7722. }, {
  7723. closecallback: function () { }
  7724. }, {
  7725. "style": {
  7726. "height": "36px"
  7727. }
  7728. }).form; //创建窗体
  7729. _taskbar = {
  7730. "id": str + _formdiv.id,
  7731. "style": {
  7732. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7733. },
  7734. "name": "思维导图",
  7735. "forms": _formdiv,
  7736. "click": function () {
  7737. U.MD.D.I.openApplication(str, obj, info);
  7738. }
  7739. }
  7740. break;
  7741. case "doc":
  7742. aTool = 6;
  7743. _iframe = $$("iframe", {
  7744. "frameborder": "no",
  7745. "border": "0",
  7746. "scrolling ": "no",
  7747. "style": {
  7748. "cssText": "border:0;width:100%;height:100%"
  7749. },
  7750. "src": "/Office/Word/WordEditArea.htm"
  7751. })
  7752. _box.appendChild(_iframe);
  7753. _box.appendChild(_jie);
  7754. _formdiv = new U.UF.UI.form(
  7755. "协同文档",
  7756. _box, {
  7757. "id": "doc" + cid + stage + task + tool,
  7758. "style": {
  7759. "width": "90%",
  7760. "height": "90%",
  7761. "overflow": 'hidden'
  7762. },
  7763. "onresize": function () { }
  7764. }, {
  7765. closecallback: function () { }
  7766. }, {
  7767. "style": {
  7768. "height": "36px"
  7769. }
  7770. }).form; //创建窗体
  7771. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7772. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7773. })
  7774. _taskbar = {
  7775. "id": str + _formdiv.id,
  7776. "style": {
  7777. "backgroundImage": "url(/img/icon/doc.png)"
  7778. },
  7779. "name": "协同文档",
  7780. "forms": _formdiv,
  7781. "click": function () {
  7782. U.MD.D.I.openApplication(str, obj, info);
  7783. }
  7784. }
  7785. break;
  7786. case "mindNetwork": //好友打开
  7787. aTool = 7;
  7788. _iframe = $$("iframe", {
  7789. "webkitallowfullscreen": "",
  7790. "mozallowfullscreen": "",
  7791. "allowfullscreen": "",
  7792. "frameborder": "no",
  7793. "border": "0",
  7794. "scrolling ": "no",
  7795. "style": {
  7796. "cssText": "border:0; width:100%; height:100%;"
  7797. },
  7798. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7799. })
  7800. _box.appendChild(_iframe);
  7801. _box.appendChild(_jie);
  7802. _formdiv = new U.UF.UI.form(
  7803. "思维网格",
  7804. _box, {
  7805. "id": "mindNetwork" + cid + stage + task + tool,
  7806. "style": {
  7807. "width": "90%",
  7808. "height": "90%",
  7809. "overflow": 'hidden'
  7810. },
  7811. "onresize": function () { }
  7812. }, {
  7813. closecallback: function () { }
  7814. }, {
  7815. "style": {
  7816. "height": "36px"
  7817. }
  7818. }).form; //创建窗体
  7819. _taskbar = {
  7820. "id": str + _formdiv.id,
  7821. "style": {
  7822. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7823. },
  7824. "name": "思维网格",
  7825. "forms": _formdiv,
  7826. "click": function () {
  7827. U.MD.D.I.openApplication(str, obj, info);
  7828. }
  7829. }
  7830. break;
  7831. case "courseDesign":
  7832. _iframe = $$("iframe", {
  7833. "webkitallowfullscreen": "",
  7834. "mozallowfullscreen": "",
  7835. "allowfullscreen": "",
  7836. "frameborder": "no",
  7837. "border": "0",
  7838. "scrolling ": "no",
  7839. "style": {
  7840. "cssText": "border:0; width:100%; height:100%;"
  7841. },
  7842. "src": "/course-design-vue"
  7843. })
  7844. _box.appendChild(_iframe);
  7845. _box.appendChild(_jie);
  7846. _formdiv = new U.UF.UI.form(
  7847. "项目设计",
  7848. _box, {
  7849. "id": "courseDesign" + cid + stage + task + tool,
  7850. "style": {
  7851. "width": "90%",
  7852. "height": "90%",
  7853. "overflow": 'hidden'
  7854. },
  7855. "onresize": function () { }
  7856. }, {
  7857. closecallback: function () { }
  7858. }, {
  7859. "style": {
  7860. "height": "36px"
  7861. }
  7862. }).form; //创建窗体
  7863. _taskbar = {
  7864. "id": str + _formdiv.id,
  7865. "style": {
  7866. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7867. },
  7868. "name": "项目设计",
  7869. "forms": _formdiv,
  7870. "click": function () {
  7871. U.MD.D.I.openApplication(str, obj, info);
  7872. }
  7873. }
  7874. break;
  7875. }
  7876. const script1 = document.createElement("script");
  7877. script1.type = "text/javascript";
  7878. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7879. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7880. const script2 = document.createElement("script");
  7881. script2.type = "text/javascript";
  7882. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7883. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7884. const script3 = document.createElement("script");
  7885. script3.type = "text/javascript";
  7886. script3.charset = "UTF-8";
  7887. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7888. const script4 = document.createElement("script");
  7889. script4.type = "text/javascript";
  7890. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7891. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7892. if (_iframe) {
  7893. if (str == 'doc') {
  7894. _iframe = _formdiv.querySelector('iframe')
  7895. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7896. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7897. _iframe.contentWindow.document.body.appendChild(script1);
  7898. _iframe.contentWindow.document.body.appendChild(script2);
  7899. // _iframe.contentWindow.document.body.appendChild(script3);
  7900. _iframe.contentWindow.document.body.appendChild(script4);
  7901. })
  7902. if (onloadListener) {
  7903. _iframe.contentDocument.location.reload()
  7904. } else {
  7905. _iframe.contentDocument.location.reload()
  7906. }
  7907. } else if (str == 'courseDesign') {
  7908. U.UF.DL.iframeLoad(_iframe, function () {
  7909. // _iframe.contentWindow.U.MD.O.W.load();
  7910. // _iframe.contentWindow.document.body.appendChild(script1);
  7911. _iframe.contentWindow.document.body.appendChild(script2);
  7912. _iframe.contentWindow.document.body.appendChild(script4);
  7913. })
  7914. } else if (str == 'mind') {
  7915. _iframe = _formdiv.querySelector('iframe')
  7916. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7917. //
  7918. _iframe.contentWindow.document.body.appendChild(script1);
  7919. _iframe.contentWindow.document.body.appendChild(script2);
  7920. _iframe.contentWindow.document.body.appendChild(script4);
  7921. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7922. })
  7923. if (onloadListener) {
  7924. _iframe.contentDocument.location.reload()
  7925. } else {
  7926. _iframe.contentDocument.location.reload()
  7927. }
  7928. } else if (str == 'whiteboard') {
  7929. _iframe = _formdiv.querySelector('iframe')
  7930. let onloadListener = _iframe.onload = () => {
  7931. _iframe.contentWindow.document.body.appendChild(script1);
  7932. _iframe.contentWindow.document.body.appendChild(script2);
  7933. _iframe.contentWindow.document.body.appendChild(script4);
  7934. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7935. };
  7936. // if (onloadListener) {
  7937. // try {
  7938. // _iframe.src += "?cocorobo="+new Date().getTime()
  7939. // _iframe.contentWindow.document.location.reload()
  7940. // } catch (error) {
  7941. // }
  7942. // } else {
  7943. // _iframe.contentDocument.location.reload()
  7944. // }
  7945. } else {
  7946. _iframe.onload = () => {
  7947. _iframe.contentWindow.document.body.appendChild(script1);
  7948. _iframe.contentWindow.document.body.appendChild(script2);
  7949. // _iframe.contentWindow.document.body.appendChild(script3);
  7950. _iframe.contentWindow.document.body.appendChild(script4);
  7951. };
  7952. }
  7953. _jie.onclick = async () => {
  7954. let text = ''
  7955. if (aTool == 1) {
  7956. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7957. } else if (aTool == 6) {
  7958. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7959. } else if (aTool == 3) {
  7960. text = await U.MD.D.I.getEditorContent(_iframe);
  7961. }
  7962. _loading.style.display = 'flex'
  7963. console.log(_loading);
  7964. var _ajs = _iframe.contentWindow.document.createElement("script");
  7965. _ajs.type = "text/javascript";
  7966. _ajs.innerHTML =
  7967. // 'console.log(' + _loading + ');\n' +
  7968. 'var _js = document.createElement("script");\n' +
  7969. '_js.type="text/javascript";\n' +
  7970. '_js.charset="UTF-8";\n' +
  7971. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7972. "_js.onload = function(){\n" +
  7973. ' var a = document.getElementsByTagName("img")\n' +
  7974. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7975. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7976. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7977. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7978. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7979. "beforeUpload_shishi(file," +
  7980. "'" +
  7981. _userid +
  7982. "'" +
  7983. ", " +
  7984. "'" +
  7985. _cid +
  7986. "'" +
  7987. ", " +
  7988. "'" +
  7989. _stage +
  7990. "'" +
  7991. ", " +
  7992. "'" +
  7993. _task +
  7994. "'" +
  7995. ", " +
  7996. "'" +
  7997. _tool +
  7998. "'" +
  7999. ", " +
  8000. "'" +
  8001. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  8002. "'" +
  8003. ", " +
  8004. "'" +
  8005. aTool +
  8006. "'" +
  8007. ", " +
  8008. "`" +
  8009. text +
  8010. "`" +
  8011. ")\n" +
  8012. " });\n" +
  8013. "}\n" +
  8014. "document.head.appendChild(_js);\n";
  8015. _iframe.contentWindow.document.head.appendChild(_ajs);
  8016. }
  8017. }
  8018. //U.MD.D.I.openClick(str);
  8019. //如果有任务栏信息
  8020. // if (_taskbar) {
  8021. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8022. // }
  8023. }
  8024. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  8025. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8026. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8027. _userinfo = US.userInfo, //登录用户信息
  8028. _userid = US.userInfo.userid //登录用户id
  8029. let _iframe;
  8030. let _cid = cid,
  8031. _stage = stage,
  8032. _task = task,
  8033. _tool = tool;
  8034. var _jie = $$("div", {
  8035. "style": {
  8036. "position": "absolute",
  8037. "bottom": "50px",
  8038. "right": "50px",
  8039. "zIndex": "9999",
  8040. "backgroundColor": "#2268bc",
  8041. "color": "#fff",
  8042. "padding": "12px 20px",
  8043. "cursor": "pointer",
  8044. "borderRadius": "4px",
  8045. },
  8046. "innerHTML": "提交作业"
  8047. })
  8048. let aTool = ''
  8049. let _loading = document.createElement('div')
  8050. _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;"
  8051. // _loading.id = "";
  8052. let _lchild = document.createElement('div')
  8053. let _limg = document.createElement('img')
  8054. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8055. _limg.style = "width: 26px;margin-right: 10px;"
  8056. _lchild.appendChild(_limg)
  8057. let _lspan = document.createElement('span')
  8058. _lspan.innerHTML = "上传中..."
  8059. _lchild.appendChild(_lspan)
  8060. _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%);"
  8061. _loading.appendChild(_lchild)
  8062. let _box = $$('div', {
  8063. "style": {
  8064. "position": "relative",
  8065. "width": "100%",
  8066. "height": "100%",
  8067. },
  8068. })
  8069. _box.appendChild(_loading)
  8070. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  8071. switch (str) {
  8072. case "whiteboard":
  8073. aTool = 1;
  8074. _iframe = $$("iframe", {
  8075. "frameborder": "no",
  8076. "border": "0",
  8077. "scrolling ": "no",
  8078. "style": {
  8079. "cssText": "border:0;width:100%;height:100%"
  8080. },
  8081. "src": "https://beta.iwb.cocorobo.cn/"
  8082. })
  8083. _box.appendChild(_iframe);
  8084. _box.appendChild(_jie);
  8085. _formdiv = new U.UF.UI.form(
  8086. "电子白板",
  8087. _box, {
  8088. "id": "whiteboard" + cid + stage + task + tool,
  8089. "style": {
  8090. "width": "90%",
  8091. "height": "90%",
  8092. "overflow": 'hidden'
  8093. },
  8094. "onresize": function () { }
  8095. }, {
  8096. closecallback: function () { }
  8097. }, {
  8098. "style": {
  8099. "height": "36px"
  8100. }
  8101. }).form; //创建窗体
  8102. _taskbar = {
  8103. "id": str + _formdiv.id,
  8104. "style": {
  8105. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8106. },
  8107. "name": "电子白板",
  8108. "forms": _formdiv,
  8109. "click": function () {
  8110. U.MD.D.I.openApplication(str, obj, info);
  8111. }
  8112. }
  8113. break;
  8114. case "mind":
  8115. aTool = 3;
  8116. _iframe = $$("iframe", {
  8117. "frameborder": "no",
  8118. "border": "0",
  8119. "scrolling ": "no",
  8120. "style": {
  8121. "cssText": "border:0;width:100%;height:100%"
  8122. },
  8123. "src": "/kityminder-editor/dist/index.html"
  8124. })
  8125. _box.appendChild(_iframe);
  8126. _box.appendChild(_jie);
  8127. _formdiv = new U.UF.UI.form(
  8128. "思维导图",
  8129. _box, { //"/jsmind/example/demo.html"
  8130. "id": "mind" + cid + stage + task + tool,
  8131. "style": {
  8132. "width": "90%",
  8133. "height": "90%",
  8134. "overflow": 'hidden'
  8135. },
  8136. "onresize": function () { }
  8137. }, {
  8138. closecallback: function () { }
  8139. }, {
  8140. "style": {
  8141. "height": "36px"
  8142. }
  8143. }).form; //创建窗体
  8144. _taskbar = {
  8145. "id": str + _formdiv.id,
  8146. "style": {
  8147. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8148. },
  8149. "name": "思维导图",
  8150. "forms": _formdiv,
  8151. "click": function () {
  8152. U.MD.D.I.openApplication(str, obj, info);
  8153. }
  8154. }
  8155. break;
  8156. case "MindMap":
  8157. aTool = 3;
  8158. _iframe = $$("iframe", {
  8159. "frameborder": "no",
  8160. "border": "0",
  8161. "scrolling ": "no",
  8162. "style": {
  8163. "cssText": "border:0;width:100%;height:100%"
  8164. },
  8165. "src": "//cloud.cocorobo.cn/mind/"
  8166. })
  8167. _box.appendChild(_iframe);
  8168. _box.appendChild(_jie);
  8169. _formdiv = new U.UF.UI.form(
  8170. "思维导图",
  8171. _box, { //"/jsmind/example/demo.html"
  8172. "id": "mind" + cid + stage + task + tool,
  8173. "style": {
  8174. "width": "90%",
  8175. "height": "90%",
  8176. "overflow": 'hidden'
  8177. },
  8178. "onresize": function () { }
  8179. }, {
  8180. closecallback: function () { }
  8181. }, {
  8182. "style": {
  8183. "height": "36px"
  8184. }
  8185. }).form; //创建窗体
  8186. _taskbar = {
  8187. "id": str + _formdiv.id,
  8188. "style": {
  8189. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8190. },
  8191. "name": "思维导图",
  8192. "forms": _formdiv,
  8193. "click": function () {
  8194. U.MD.D.I.openApplication(str, obj, info);
  8195. }
  8196. }
  8197. break;
  8198. case "doc":
  8199. aTool = 6;
  8200. _iframe = $$("iframe", {
  8201. "frameborder": "no",
  8202. "border": "0",
  8203. "scrolling ": "no",
  8204. "style": {
  8205. "cssText": "border:0;width:100%;height:100%"
  8206. },
  8207. "src": "/Office/Word/WordEditArea.htm"
  8208. })
  8209. _box.appendChild(_iframe);
  8210. _box.appendChild(_jie);
  8211. _formdiv = new U.UF.UI.form(
  8212. "协同文档",
  8213. _box, {
  8214. "id": "doc" + cid + stage + task + tool,
  8215. "style": {
  8216. "width": "90%",
  8217. "height": "90%",
  8218. "overflow": 'hidden'
  8219. },
  8220. "onresize": function () { }
  8221. }, {
  8222. closecallback: function () { }
  8223. }, {
  8224. "style": {
  8225. "height": "36px"
  8226. }
  8227. }).form; //创建窗体
  8228. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8229. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8230. })
  8231. _taskbar = {
  8232. "id": str + _formdiv.id,
  8233. "style": {
  8234. "backgroundImage": "url(/img/icon/doc.png)"
  8235. },
  8236. "name": "协同文档",
  8237. "forms": _formdiv,
  8238. "click": function () {
  8239. U.MD.D.I.openApplication(str, obj, info);
  8240. }
  8241. }
  8242. break;
  8243. case "mindNetwork": //好友打开
  8244. aTool = 7;
  8245. _iframe = $$("iframe", {
  8246. "webkitallowfullscreen": "",
  8247. "mozallowfullscreen": "",
  8248. "allowfullscreen": "",
  8249. "frameborder": "no",
  8250. "border": "0",
  8251. "scrolling ": "no",
  8252. "style": {
  8253. "cssText": "border:0; width:100%; height:100%;"
  8254. },
  8255. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8256. })
  8257. _box.appendChild(_iframe);
  8258. _box.appendChild(_jie);
  8259. _formdiv = new U.UF.UI.form(
  8260. "思维网格",
  8261. _box, {
  8262. "id": "mindNetwork" + cid + stage + task + tool,
  8263. "style": {
  8264. "width": "90%",
  8265. "height": "90%",
  8266. "overflow": 'hidden'
  8267. },
  8268. "onresize": function () { }
  8269. }, {
  8270. closecallback: function () { }
  8271. }, {
  8272. "style": {
  8273. "height": "36px"
  8274. }
  8275. }).form; //创建窗体
  8276. _taskbar = {
  8277. "id": str + _formdiv.id,
  8278. "style": {
  8279. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8280. },
  8281. "name": "思维网格",
  8282. "forms": _formdiv,
  8283. "click": function () {
  8284. U.MD.D.I.openApplication(str, obj, info);
  8285. }
  8286. }
  8287. break;
  8288. case "courseDesign":
  8289. _iframe = $$("iframe", {
  8290. "webkitallowfullscreen": "",
  8291. "mozallowfullscreen": "",
  8292. "allowfullscreen": "",
  8293. "frameborder": "no",
  8294. "border": "0",
  8295. "scrolling ": "no",
  8296. "style": {
  8297. "cssText": "border:0; width:100%; height:100%;"
  8298. },
  8299. "src": "/course-design-vue"
  8300. })
  8301. _box.appendChild(_iframe);
  8302. _box.appendChild(_jie);
  8303. _formdiv = new U.UF.UI.form(
  8304. "项目设计",
  8305. _box, {
  8306. "id": "courseDesign" + cid + stage + task + tool,
  8307. "style": {
  8308. "width": "90%",
  8309. "height": "90%",
  8310. "overflow": 'hidden'
  8311. },
  8312. "onresize": function () { }
  8313. }, {
  8314. closecallback: function () { }
  8315. }, {
  8316. "style": {
  8317. "height": "36px"
  8318. }
  8319. }).form; //创建窗体
  8320. _taskbar = {
  8321. "id": str + _formdiv.id,
  8322. "style": {
  8323. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8324. },
  8325. "name": "项目设计",
  8326. "forms": _formdiv,
  8327. "click": function () {
  8328. U.MD.D.I.openApplication(str, obj, info);
  8329. }
  8330. }
  8331. break;
  8332. }
  8333. const script1 = document.createElement("script");
  8334. script1.type = "text/javascript";
  8335. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8336. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8337. const script2 = document.createElement("script");
  8338. script2.type = "text/javascript";
  8339. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8340. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8341. const script3 = document.createElement("script");
  8342. script3.type = "text/javascript";
  8343. script3.charset = "UTF-8";
  8344. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8345. const script4 = document.createElement("script");
  8346. script4.type = "text/javascript";
  8347. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8348. script4.src = window.origin + "/js/Common/jietu2E.js";
  8349. if (_iframe) {
  8350. if (str == 'doc') {
  8351. _iframe = _formdiv.querySelector('iframe')
  8352. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8353. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8354. _iframe.contentWindow.document.body.appendChild(script1);
  8355. _iframe.contentWindow.document.body.appendChild(script2);
  8356. // _iframe.contentWindow.document.body.appendChild(script3);
  8357. _iframe.contentWindow.document.body.appendChild(script4);
  8358. })
  8359. if (onloadListener) {
  8360. _iframe.contentDocument.location.reload()
  8361. } else {
  8362. _iframe.contentDocument.location.reload()
  8363. }
  8364. } else if (str == 'courseDesign') {
  8365. U.UF.DL.iframeLoad(_iframe, function () {
  8366. // _iframe.contentWindow.U.MD.O.W.load();
  8367. // _iframe.contentWindow.document.body.appendChild(script1);
  8368. _iframe.contentWindow.document.body.appendChild(script2);
  8369. _iframe.contentWindow.document.body.appendChild(script4);
  8370. })
  8371. } else if (str == 'mind') {
  8372. _iframe = _formdiv.querySelector('iframe')
  8373. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8374. //
  8375. _iframe.contentWindow.document.body.appendChild(script1);
  8376. _iframe.contentWindow.document.body.appendChild(script2);
  8377. _iframe.contentWindow.document.body.appendChild(script4);
  8378. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8379. })
  8380. if (onloadListener) {
  8381. _iframe.contentDocument.location.reload()
  8382. } else {
  8383. _iframe.contentDocument.location.reload()
  8384. }
  8385. } else if (str == 'whiteboard') {
  8386. _iframe = _formdiv.querySelector('iframe')
  8387. let onloadListener = _iframe.onload = () => {
  8388. _iframe.contentWindow.document.body.appendChild(script1);
  8389. _iframe.contentWindow.document.body.appendChild(script2);
  8390. _iframe.contentWindow.document.body.appendChild(script4);
  8391. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8392. };
  8393. // if (onloadListener) {
  8394. // try {
  8395. // _iframe.src += "?cocorobo="+new Date().getTime()
  8396. // _iframe.contentWindow.document.location.reload()
  8397. // } catch (error) {
  8398. // }
  8399. // } else {
  8400. // _iframe.contentDocument.location.reload()
  8401. // }
  8402. } else {
  8403. _iframe.onload = () => {
  8404. _iframe.contentWindow.document.body.appendChild(script1);
  8405. _iframe.contentWindow.document.body.appendChild(script2);
  8406. // _iframe.contentWindow.document.body.appendChild(script3);
  8407. _iframe.contentWindow.document.body.appendChild(script4);
  8408. };
  8409. }
  8410. _jie.onclick = async () => {
  8411. let text = ''
  8412. if (aTool == 1) {
  8413. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8414. } else if (aTool == 6) {
  8415. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8416. } else if (aTool == 3) {
  8417. text = await U.MD.D.I.getEditorContent(_iframe);
  8418. }
  8419. _loading.style.display = 'flex'
  8420. console.log(_loading);
  8421. var _ajs = _iframe.contentWindow.document.createElement("script");
  8422. _ajs.type = "text/javascript";
  8423. _ajs.innerHTML =
  8424. // 'console.log(' + _loading + ');\n' +
  8425. 'var _js = document.createElement("script");\n' +
  8426. '_js.type="text/javascript";\n' +
  8427. '_js.charset="UTF-8";\n' +
  8428. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8429. "_js.onload = function(){\n" +
  8430. ' var a = document.getElementsByTagName("img")\n' +
  8431. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8432. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8433. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8434. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8435. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8436. "beforeUpload_shishi(file," +
  8437. "'" +
  8438. _userid +
  8439. "'" +
  8440. ", " +
  8441. "'" +
  8442. _cid +
  8443. "'" +
  8444. ", " +
  8445. "'" +
  8446. _stage +
  8447. "'" +
  8448. ", " +
  8449. "'" +
  8450. _task +
  8451. "'" +
  8452. ", " +
  8453. "'" +
  8454. _tool +
  8455. "'" +
  8456. ", " +
  8457. "'" +
  8458. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8459. "'" +
  8460. ", " +
  8461. "'" +
  8462. aTool +
  8463. "'" +
  8464. ", " +
  8465. "`" +
  8466. text +
  8467. "`" +
  8468. ")\n" +
  8469. " });\n" +
  8470. "}\n" +
  8471. "document.head.appendChild(_js);\n";
  8472. _iframe.contentWindow.document.head.appendChild(_ajs);
  8473. }
  8474. }
  8475. //U.MD.D.I.openClick(str);
  8476. //如果有任务栏信息
  8477. // if (_taskbar) {
  8478. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8479. // }
  8480. }
  8481. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8482. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8483. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8484. _userid = student.userid, //登录用户id
  8485. _username = student.student //用户名字
  8486. let _iframe;
  8487. let _cid = cid,
  8488. _stage = stage,
  8489. _task = task,
  8490. _tool = tool;
  8491. var _jie = $$("div", {
  8492. "style": {
  8493. "position": "absolute",
  8494. "bottom": "50px",
  8495. "right": "50px",
  8496. "zIndex": "9999",
  8497. "backgroundColor": "#2268bc",
  8498. "color": "#fff",
  8499. "padding": "12px 20px",
  8500. "cursor": "pointer",
  8501. "borderRadius": "4px",
  8502. },
  8503. "innerHTML": "提交作业"
  8504. })
  8505. let aTool = ''
  8506. let _loading = document.createElement('div')
  8507. _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;"
  8508. // _loading.id = "";
  8509. let _lchild = document.createElement('div')
  8510. let _limg = document.createElement('img')
  8511. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8512. _limg.style = "width: 26px;margin-right: 10px;"
  8513. _lchild.appendChild(_limg)
  8514. let _lspan = document.createElement('span')
  8515. _lspan.innerHTML = "上传中..."
  8516. _lchild.appendChild(_lspan)
  8517. _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%);"
  8518. _loading.appendChild(_lchild)
  8519. var _box = $$('div', {
  8520. "style": {
  8521. "position": "relative",
  8522. "width": "100%",
  8523. "height": "100%",
  8524. },
  8525. })
  8526. _box.appendChild(_loading)
  8527. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8528. switch (str) {
  8529. case "whiteboard":
  8530. aTool = 1;
  8531. _iframe = $$("iframe", {
  8532. "frameborder": "no",
  8533. "border": "0",
  8534. "scrolling ": "no",
  8535. "style": {
  8536. "cssText": "border:0;width:100%;height:100%"
  8537. },
  8538. "src": "https://beta.iwb.cocorobo.cn/"
  8539. })
  8540. _box.appendChild(_iframe);
  8541. _box.appendChild(_jie);
  8542. _formdiv = new U.UF.UI.form(
  8543. "电子白板-" + _username,
  8544. _box, {
  8545. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8546. "style": {
  8547. "width": "90%",
  8548. "height": "90%",
  8549. "overflow": 'hidden'
  8550. },
  8551. "onresize": function () { }
  8552. }, {
  8553. closecallback: function () { }
  8554. }, {
  8555. "style": {
  8556. "height": "36px"
  8557. }
  8558. }).form; //创建窗体
  8559. _taskbar = {
  8560. "id": str + _formdiv.id,
  8561. "style": {
  8562. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8563. },
  8564. "name": "电子白板",
  8565. "forms": _formdiv,
  8566. "click": function () {
  8567. U.MD.D.I.openApplication(str, obj, info);
  8568. }
  8569. }
  8570. break;
  8571. case "mind":
  8572. aTool = 3;
  8573. _iframe = $$("iframe", {
  8574. "frameborder": "no",
  8575. "border": "0",
  8576. "scrolling ": "no",
  8577. "style": {
  8578. "cssText": "border:0;width:100%;height:100%"
  8579. },
  8580. "src": "/kityminder-editor/dist/index.html"
  8581. })
  8582. _box.appendChild(_iframe);
  8583. _box.appendChild(_jie);
  8584. _formdiv = new U.UF.UI.form(
  8585. "思维导图-" + _username,
  8586. _box, { //"/jsmind/example/demo.html"
  8587. "id": "mind" + cid + stage + task + tool + _userid,
  8588. "style": {
  8589. "width": "90%",
  8590. "height": "90%",
  8591. "overflow": 'hidden'
  8592. },
  8593. "onresize": function () { }
  8594. }, {
  8595. closecallback: function () { }
  8596. }, {
  8597. "style": {
  8598. "height": "36px"
  8599. }
  8600. }).form; //创建窗体
  8601. _taskbar = {
  8602. "id": str + _formdiv.id,
  8603. "style": {
  8604. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8605. },
  8606. "name": "思维导图",
  8607. "forms": _formdiv,
  8608. "click": function () {
  8609. U.MD.D.I.openApplication(str, obj, info);
  8610. }
  8611. }
  8612. break;
  8613. case "MindMap":
  8614. aTool = 3;
  8615. _iframe = $$("iframe", {
  8616. "frameborder": "no",
  8617. "border": "0",
  8618. "scrolling ": "no",
  8619. "style": {
  8620. "cssText": "border:0;width:100%;height:100%"
  8621. },
  8622. "src": "//cloud.cocorobo.cn/mind/"
  8623. })
  8624. _box.appendChild(_iframe);
  8625. _box.appendChild(_jie);
  8626. _formdiv = new U.UF.UI.form(
  8627. "思维导图-" + _username,
  8628. _box, { //"/jsmind/example/demo.html"
  8629. "id": "mind" + cid + stage + task + tool + _userid,
  8630. "style": {
  8631. "width": "90%",
  8632. "height": "90%",
  8633. "overflow": 'hidden'
  8634. },
  8635. "onresize": function () { }
  8636. }, {
  8637. closecallback: function () { }
  8638. }, {
  8639. "style": {
  8640. "height": "36px"
  8641. }
  8642. }).form; //创建窗体
  8643. _taskbar = {
  8644. "id": str + _formdiv.id,
  8645. "style": {
  8646. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8647. },
  8648. "name": "思维导图",
  8649. "forms": _formdiv,
  8650. "click": function () {
  8651. U.MD.D.I.openApplication(str, obj, info);
  8652. }
  8653. }
  8654. break;
  8655. case "doc":
  8656. aTool = 6;
  8657. _iframe = $$("iframe", {
  8658. "frameborder": "no",
  8659. "border": "0",
  8660. "scrolling ": "no",
  8661. "style": {
  8662. "cssText": "border:0;width:100%;height:100%"
  8663. },
  8664. "src": "/Office/Word/WordEditArea.htm"
  8665. })
  8666. _box.appendChild(_iframe);
  8667. _box.appendChild(_jie);
  8668. _formdiv = new U.UF.UI.form(
  8669. "协同文档-" + _username,
  8670. _box, {
  8671. "id": "doc" + cid + stage + task + tool + _userid,
  8672. "style": {
  8673. "width": "90%",
  8674. "height": "90%",
  8675. "overflow": 'hidden'
  8676. },
  8677. "onresize": function () { }
  8678. }, {
  8679. closecallback: function () { }
  8680. }, {
  8681. "style": {
  8682. "height": "36px"
  8683. }
  8684. }).form; //创建窗体
  8685. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8686. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8687. })
  8688. _taskbar = {
  8689. "id": str + _formdiv.id,
  8690. "style": {
  8691. "backgroundImage": "url(/img/icon/doc.png)"
  8692. },
  8693. "name": "协同文档",
  8694. "forms": _formdiv,
  8695. "click": function () {
  8696. U.MD.D.I.openApplication(str, obj, info);
  8697. }
  8698. }
  8699. break;
  8700. case "mindNetwork": //好友打开
  8701. aTool = 7;
  8702. _iframe = $$("iframe", {
  8703. "webkitallowfullscreen": "",
  8704. "mozallowfullscreen": "",
  8705. "allowfullscreen": "",
  8706. "frameborder": "no",
  8707. "border": "0",
  8708. "scrolling ": "no",
  8709. "style": {
  8710. "cssText": "border:0; width:100%; height:100%;"
  8711. },
  8712. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8713. })
  8714. _box.appendChild(_iframe);
  8715. _box.appendChild(_jie);
  8716. _formdiv = new U.UF.UI.form(
  8717. "思维网格-" + _username,
  8718. _box, {
  8719. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8720. "style": {
  8721. "width": "90%",
  8722. "height": "90%",
  8723. "overflow": 'hidden'
  8724. },
  8725. "onresize": function () { }
  8726. }, {
  8727. closecallback: function () { }
  8728. }, {
  8729. "style": {
  8730. "height": "36px"
  8731. }
  8732. }).form; //创建窗体
  8733. _taskbar = {
  8734. "id": str + _formdiv.id,
  8735. "style": {
  8736. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8737. },
  8738. "name": "思维网格",
  8739. "forms": _formdiv,
  8740. "click": function () {
  8741. U.MD.D.I.openApplication(str, obj, info);
  8742. }
  8743. }
  8744. break;
  8745. case "courseDesign":
  8746. _iframe = $$("iframe", {
  8747. "webkitallowfullscreen": "",
  8748. "mozallowfullscreen": "",
  8749. "allowfullscreen": "",
  8750. "frameborder": "no",
  8751. "border": "0",
  8752. "scrolling ": "no",
  8753. "style": {
  8754. "cssText": "border:0; width:100%; height:100%;"
  8755. },
  8756. "src": "/course-design-vue"
  8757. })
  8758. _box.appendChild(_iframe);
  8759. _box.appendChild(_jie);
  8760. _formdiv = new U.UF.UI.form(
  8761. "项目设计-" + _username,
  8762. _box, {
  8763. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8764. "style": {
  8765. "width": "90%",
  8766. "height": "90%",
  8767. "overflow": 'hidden'
  8768. },
  8769. "onresize": function () { }
  8770. }, {
  8771. closecallback: function () { }
  8772. }, {
  8773. "style": {
  8774. "height": "36px"
  8775. }
  8776. }).form; //创建窗体
  8777. _taskbar = {
  8778. "id": str + _formdiv.id,
  8779. "style": {
  8780. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8781. },
  8782. "name": "项目设计",
  8783. "forms": _formdiv,
  8784. "click": function () {
  8785. U.MD.D.I.openApplication(str, obj, info);
  8786. }
  8787. }
  8788. break;
  8789. }
  8790. const script1 = document.createElement("script");
  8791. script1.type = "text/javascript";
  8792. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8793. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8794. const script2 = document.createElement("script");
  8795. script2.type = "text/javascript";
  8796. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8797. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8798. const script3 = document.createElement("script");
  8799. script3.type = "text/javascript";
  8800. script3.charset = "UTF-8";
  8801. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8802. const script4 = document.createElement("script");
  8803. script4.type = "text/javascript";
  8804. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8805. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8806. if (_iframe) {
  8807. if (str == 'doc') {
  8808. _iframe = _formdiv.querySelector('iframe')
  8809. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8810. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8811. _iframe.contentWindow.document.body.appendChild(script1);
  8812. _iframe.contentWindow.document.body.appendChild(script2);
  8813. // _iframe.contentWindow.document.body.appendChild(script3);
  8814. _iframe.contentWindow.document.body.appendChild(script4);
  8815. })
  8816. if (onloadListener) {
  8817. _iframe.contentDocument.location.reload()
  8818. } else {
  8819. _iframe.contentDocument.location.reload()
  8820. }
  8821. } else if (str == 'courseDesign') {
  8822. U.UF.DL.iframeLoad(_iframe, function () {
  8823. // _iframe.contentWindow.U.MD.O.W.load();
  8824. // _iframe.contentWindow.document.body.appendChild(script1);
  8825. _iframe.contentWindow.document.body.appendChild(script2);
  8826. _iframe.contentWindow.document.body.appendChild(script4);
  8827. })
  8828. } else if (str == 'mind') {
  8829. _iframe = _formdiv.querySelector('iframe')
  8830. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8831. //
  8832. _iframe.contentWindow.document.body.appendChild(script1);
  8833. _iframe.contentWindow.document.body.appendChild(script2);
  8834. _iframe.contentWindow.document.body.appendChild(script4);
  8835. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8836. })
  8837. if (onloadListener) {
  8838. _iframe.contentDocument.location.reload()
  8839. } else {
  8840. _iframe.contentDocument.location.reload()
  8841. }
  8842. } else if (str == 'whiteboard') {
  8843. _iframe = _formdiv.querySelector('iframe')
  8844. let onloadListener = _iframe.onload = () => {
  8845. _iframe.contentWindow.document.body.appendChild(script1);
  8846. _iframe.contentWindow.document.body.appendChild(script2);
  8847. _iframe.contentWindow.document.body.appendChild(script4);
  8848. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8849. };
  8850. // if (onloadListener) {
  8851. // try {
  8852. // _iframe.src += "?cocorobo="+new Date().getTime()
  8853. // _iframe.contentWindow.document.location.reload()
  8854. // } catch (error) {
  8855. // }
  8856. // } else {
  8857. // _iframe.contentDocument.location.reload()
  8858. // }
  8859. } else {
  8860. _iframe.onload = () => {
  8861. _iframe.contentWindow.document.body.appendChild(script1);
  8862. _iframe.contentWindow.document.body.appendChild(script2);
  8863. // _iframe.contentWindow.document.body.appendChild(script3);
  8864. _iframe.contentWindow.document.body.appendChild(script4);
  8865. };
  8866. }
  8867. _jie.onclick = async () => {
  8868. let text = ''
  8869. if (aTool == 1) {
  8870. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8871. } else if (aTool == 6) {
  8872. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8873. } else if (aTool == 3) {
  8874. text = await U.MD.D.I.getEditorContent(_iframe);
  8875. }
  8876. _loading.style.display = 'flex'
  8877. console.log(_loading);
  8878. var _ajs = _iframe.contentWindow.document.createElement("script");
  8879. _ajs.type = "text/javascript";
  8880. _ajs.innerHTML =
  8881. // 'console.log(' + _loading + ');\n' +
  8882. 'var _js = document.createElement("script");\n' +
  8883. '_js.type="text/javascript";\n' +
  8884. '_js.charset="UTF-8";\n' +
  8885. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8886. "_js.onload = function(){\n" +
  8887. ' var a = document.getElementsByTagName("img")\n' +
  8888. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8889. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8890. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8891. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8892. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8893. "beforeUpload_shishi(file," +
  8894. "'" +
  8895. _userid +
  8896. "'" +
  8897. ", " +
  8898. "'" +
  8899. _cid +
  8900. "'" +
  8901. ", " +
  8902. "'" +
  8903. _stage +
  8904. "'" +
  8905. ", " +
  8906. "'" +
  8907. _task +
  8908. "'" +
  8909. ", " +
  8910. "'" +
  8911. _tool +
  8912. "'" +
  8913. ", " +
  8914. "'" +
  8915. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8916. "'" +
  8917. ", " +
  8918. "'" +
  8919. aTool +
  8920. "'" +
  8921. ", " +
  8922. "`" +
  8923. text +
  8924. "`" +
  8925. ")\n" +
  8926. " });\n" +
  8927. "}\n" +
  8928. "document.head.appendChild(_js);\n";
  8929. _iframe.contentWindow.document.head.appendChild(_ajs);
  8930. }
  8931. }
  8932. }
  8933. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8934. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8935. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8936. _userid = student.userid, //登录用户id
  8937. _username = student.student //用户名字
  8938. let _iframe;
  8939. let _cid = cid,
  8940. _stage = stage,
  8941. _task = task,
  8942. _tool = tool;
  8943. var _jie = $$("div", {
  8944. "style": {
  8945. "position": "absolute",
  8946. "bottom": "50px",
  8947. "right": "50px",
  8948. "zIndex": "9999",
  8949. "backgroundColor": "#2268bc",
  8950. "color": "#fff",
  8951. "padding": "12px 20px",
  8952. "cursor": "pointer",
  8953. "borderRadius": "4px",
  8954. },
  8955. "innerHTML": "提交作业"
  8956. })
  8957. let aTool = ''
  8958. let _loading = document.createElement('div')
  8959. _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;"
  8960. // _loading.id = "";
  8961. let _lchild = document.createElement('div')
  8962. let _limg = document.createElement('img')
  8963. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8964. _limg.style = "width: 26px;margin-right: 10px;"
  8965. _lchild.appendChild(_limg)
  8966. let _lspan = document.createElement('span')
  8967. _lspan.innerHTML = "上传中..."
  8968. _lchild.appendChild(_lspan)
  8969. _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%);"
  8970. _loading.appendChild(_lchild)
  8971. var _box = $$('div', {
  8972. "style": {
  8973. "position": "relative",
  8974. "width": "100%",
  8975. "height": "100%",
  8976. },
  8977. })
  8978. _box.appendChild(_loading)
  8979. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8980. switch (str) {
  8981. case "whiteboard":
  8982. aTool = 1;
  8983. _iframe = $$("iframe", {
  8984. "frameborder": "no",
  8985. "border": "0",
  8986. "scrolling ": "no",
  8987. "style": {
  8988. "cssText": "border:0;width:100%;height:100%"
  8989. },
  8990. "src": "https://beta.iwb.cocorobo.cn/"
  8991. })
  8992. _box.appendChild(_iframe);
  8993. _box.appendChild(_jie);
  8994. _formdiv = new U.UF.UI.form(
  8995. "电子白板-" + _username,
  8996. _box, {
  8997. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8998. "style": {
  8999. "width": "90%",
  9000. "height": "90%",
  9001. "overflow": 'hidden'
  9002. },
  9003. "onresize": function () { }
  9004. }, {
  9005. closecallback: function () { }
  9006. }, {
  9007. "style": {
  9008. "height": "36px"
  9009. }
  9010. }).form; //创建窗体
  9011. _taskbar = {
  9012. "id": str + _formdiv.id,
  9013. "style": {
  9014. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9015. },
  9016. "name": "电子白板",
  9017. "forms": _formdiv,
  9018. "click": function () {
  9019. U.MD.D.I.openApplication(str, obj, info);
  9020. }
  9021. }
  9022. break;
  9023. case "mind":
  9024. aTool = 3;
  9025. _iframe = $$("iframe", {
  9026. "frameborder": "no",
  9027. "border": "0",
  9028. "scrolling ": "no",
  9029. "style": {
  9030. "cssText": "border:0;width:100%;height:100%"
  9031. },
  9032. "src": "/kityminder-editor/dist/index.html"
  9033. })
  9034. _box.appendChild(_iframe);
  9035. _box.appendChild(_jie);
  9036. _formdiv = new U.UF.UI.form(
  9037. "思维导图-" + _username,
  9038. _box, { //"/jsmind/example/demo.html"
  9039. "id": "mind" + cid + stage + task + tool + _userid,
  9040. "style": {
  9041. "width": "90%",
  9042. "height": "90%",
  9043. "overflow": 'hidden'
  9044. },
  9045. "onresize": function () { }
  9046. }, {
  9047. closecallback: function () { }
  9048. }, {
  9049. "style": {
  9050. "height": "36px"
  9051. }
  9052. }).form; //创建窗体
  9053. _taskbar = {
  9054. "id": str + _formdiv.id,
  9055. "style": {
  9056. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9057. },
  9058. "name": "思维导图",
  9059. "forms": _formdiv,
  9060. "click": function () {
  9061. U.MD.D.I.openApplication(str, obj, info);
  9062. }
  9063. }
  9064. break;
  9065. case "MindMap":
  9066. aTool = 3;
  9067. _iframe = $$("iframe", {
  9068. "frameborder": "no",
  9069. "border": "0",
  9070. "scrolling ": "no",
  9071. "style": {
  9072. "cssText": "border:0;width:100%;height:100%"
  9073. },
  9074. "src": "//cloud.cocorobo.cn/mind/"
  9075. })
  9076. _box.appendChild(_iframe);
  9077. _box.appendChild(_jie);
  9078. _formdiv = new U.UF.UI.form(
  9079. "思维导图-" + _username,
  9080. _box, { //"/jsmind/example/demo.html"
  9081. "id": "mind" + cid + stage + task + tool + _userid,
  9082. "style": {
  9083. "width": "90%",
  9084. "height": "90%",
  9085. "overflow": 'hidden'
  9086. },
  9087. "onresize": function () { }
  9088. }, {
  9089. closecallback: function () { }
  9090. }, {
  9091. "style": {
  9092. "height": "36px"
  9093. }
  9094. }).form; //创建窗体
  9095. _taskbar = {
  9096. "id": str + _formdiv.id,
  9097. "style": {
  9098. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9099. },
  9100. "name": "思维导图",
  9101. "forms": _formdiv,
  9102. "click": function () {
  9103. U.MD.D.I.openApplication(str, obj, info);
  9104. }
  9105. }
  9106. break;
  9107. case "doc":
  9108. aTool = 6;
  9109. _iframe = $$("iframe", {
  9110. "frameborder": "no",
  9111. "border": "0",
  9112. "scrolling ": "no",
  9113. "style": {
  9114. "cssText": "border:0;width:100%;height:100%"
  9115. },
  9116. "src": "/Office/Word/WordEditArea.htm"
  9117. })
  9118. _box.appendChild(_iframe);
  9119. _box.appendChild(_jie);
  9120. _formdiv = new U.UF.UI.form(
  9121. "协同文档-" + _username,
  9122. _box, {
  9123. "id": "doc" + cid + stage + task + tool + _userid,
  9124. "style": {
  9125. "width": "90%",
  9126. "height": "90%",
  9127. "overflow": 'hidden'
  9128. },
  9129. "onresize": function () { }
  9130. }, {
  9131. closecallback: function () { }
  9132. }, {
  9133. "style": {
  9134. "height": "36px"
  9135. }
  9136. }).form; //创建窗体
  9137. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9138. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9139. })
  9140. _taskbar = {
  9141. "id": str + _formdiv.id,
  9142. "style": {
  9143. "backgroundImage": "url(/img/icon/doc.png)"
  9144. },
  9145. "name": "协同文档",
  9146. "forms": _formdiv,
  9147. "click": function () {
  9148. U.MD.D.I.openApplication(str, obj, info);
  9149. }
  9150. }
  9151. break;
  9152. case "mindNetwork": //好友打开
  9153. aTool = 7;
  9154. _iframe = $$("iframe", {
  9155. "webkitallowfullscreen": "",
  9156. "mozallowfullscreen": "",
  9157. "allowfullscreen": "",
  9158. "frameborder": "no",
  9159. "border": "0",
  9160. "scrolling ": "no",
  9161. "style": {
  9162. "cssText": "border:0; width:100%; height:100%;"
  9163. },
  9164. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9165. })
  9166. _box.appendChild(_iframe);
  9167. _box.appendChild(_jie);
  9168. _formdiv = new U.UF.UI.form(
  9169. "思维网格-" + _username,
  9170. _box, {
  9171. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9172. "style": {
  9173. "width": "90%",
  9174. "height": "90%",
  9175. "overflow": 'hidden'
  9176. },
  9177. "onresize": function () { }
  9178. }, {
  9179. closecallback: function () { }
  9180. }, {
  9181. "style": {
  9182. "height": "36px"
  9183. }
  9184. }).form; //创建窗体
  9185. _taskbar = {
  9186. "id": str + _formdiv.id,
  9187. "style": {
  9188. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9189. },
  9190. "name": "思维网格",
  9191. "forms": _formdiv,
  9192. "click": function () {
  9193. U.MD.D.I.openApplication(str, obj, info);
  9194. }
  9195. }
  9196. break;
  9197. case "courseDesign":
  9198. _iframe = $$("iframe", {
  9199. "webkitallowfullscreen": "",
  9200. "mozallowfullscreen": "",
  9201. "allowfullscreen": "",
  9202. "frameborder": "no",
  9203. "border": "0",
  9204. "scrolling ": "no",
  9205. "style": {
  9206. "cssText": "border:0; width:100%; height:100%;"
  9207. },
  9208. "src": "/course-design-vue"
  9209. })
  9210. _box.appendChild(_iframe);
  9211. _box.appendChild(_jie);
  9212. _formdiv = new U.UF.UI.form(
  9213. "项目设计-" + _username,
  9214. _box, {
  9215. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9216. "style": {
  9217. "width": "90%",
  9218. "height": "90%",
  9219. "overflow": 'hidden'
  9220. },
  9221. "onresize": function () { }
  9222. }, {
  9223. closecallback: function () { }
  9224. }, {
  9225. "style": {
  9226. "height": "36px"
  9227. }
  9228. }).form; //创建窗体
  9229. _taskbar = {
  9230. "id": str + _formdiv.id,
  9231. "style": {
  9232. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9233. },
  9234. "name": "项目设计",
  9235. "forms": _formdiv,
  9236. "click": function () {
  9237. U.MD.D.I.openApplication(str, obj, info);
  9238. }
  9239. }
  9240. break;
  9241. }
  9242. const script1 = document.createElement("script");
  9243. script1.type = "text/javascript";
  9244. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9245. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9246. const script2 = document.createElement("script");
  9247. script2.type = "text/javascript";
  9248. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9249. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9250. const script3 = document.createElement("script");
  9251. script3.type = "text/javascript";
  9252. script3.charset = "UTF-8";
  9253. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9254. const script4 = document.createElement("script");
  9255. script4.type = "text/javascript";
  9256. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9257. script4.src = window.origin + "/js/Common/jietu2E.js";
  9258. if (_iframe) {
  9259. if (str == 'doc') {
  9260. _iframe = _formdiv.querySelector('iframe')
  9261. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9262. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9263. _iframe.contentWindow.document.body.appendChild(script1);
  9264. _iframe.contentWindow.document.body.appendChild(script2);
  9265. // _iframe.contentWindow.document.body.appendChild(script3);
  9266. _iframe.contentWindow.document.body.appendChild(script4);
  9267. })
  9268. if (onloadListener) {
  9269. _iframe.contentDocument.location.reload()
  9270. } else {
  9271. _iframe.contentDocument.location.reload()
  9272. }
  9273. } else if (str == 'courseDesign') {
  9274. U.UF.DL.iframeLoad(_iframe, function () {
  9275. // _iframe.contentWindow.U.MD.O.W.load();
  9276. // _iframe.contentWindow.document.body.appendChild(script1);
  9277. _iframe.contentWindow.document.body.appendChild(script2);
  9278. _iframe.contentWindow.document.body.appendChild(script4);
  9279. })
  9280. } else if (str == 'mind') {
  9281. _iframe = _formdiv.querySelector('iframe')
  9282. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9283. //
  9284. _iframe.contentWindow.document.body.appendChild(script1);
  9285. _iframe.contentWindow.document.body.appendChild(script2);
  9286. _iframe.contentWindow.document.body.appendChild(script4);
  9287. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9288. })
  9289. if (onloadListener) {
  9290. _iframe.contentDocument.location.reload()
  9291. } else {
  9292. _iframe.contentDocument.location.reload()
  9293. }
  9294. } else if (str == 'whiteboard') {
  9295. _iframe = _formdiv.querySelector('iframe')
  9296. let onloadListener = _iframe.onload = () => {
  9297. _iframe.contentWindow.document.body.appendChild(script1);
  9298. _iframe.contentWindow.document.body.appendChild(script2);
  9299. _iframe.contentWindow.document.body.appendChild(script4);
  9300. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9301. };
  9302. // if (onloadListener) {
  9303. // try {
  9304. // _iframe.src += "?cocorobo="+new Date().getTime()
  9305. // _iframe.contentWindow.document.location.reload()
  9306. // } catch (error) {
  9307. // }
  9308. // } else {
  9309. // _iframe.contentDocument.location.reload()
  9310. // }
  9311. } else {
  9312. _iframe.onload = () => {
  9313. _iframe.contentWindow.document.body.appendChild(script1);
  9314. _iframe.contentWindow.document.body.appendChild(script2);
  9315. // _iframe.contentWindow.document.body.appendChild(script3);
  9316. _iframe.contentWindow.document.body.appendChild(script4);
  9317. };
  9318. }
  9319. _jie.onclick = async () => {
  9320. let text = ''
  9321. if (aTool == 1) {
  9322. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9323. } else if (aTool == 6) {
  9324. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9325. } else if (aTool == 3) {
  9326. text = await U.MD.D.I.getEditorContent(_iframe);
  9327. }
  9328. _loading.style.display = 'flex'
  9329. console.log(_loading);
  9330. var _ajs = _iframe.contentWindow.document.createElement("script");
  9331. _ajs.type = "text/javascript";
  9332. _ajs.innerHTML =
  9333. // 'console.log(' + _loading + ');\n' +
  9334. 'var _js = document.createElement("script");\n' +
  9335. '_js.type="text/javascript";\n' +
  9336. '_js.charset="UTF-8";\n' +
  9337. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9338. "_js.onload = function(){\n" +
  9339. ' var a = document.getElementsByTagName("img")\n' +
  9340. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9341. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9342. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9343. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9344. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9345. "beforeUpload_shishi(file," +
  9346. "'" +
  9347. _userid +
  9348. "'" +
  9349. ", " +
  9350. "'" +
  9351. _cid +
  9352. "'" +
  9353. ", " +
  9354. "'" +
  9355. _stage +
  9356. "'" +
  9357. ", " +
  9358. "'" +
  9359. _task +
  9360. "'" +
  9361. ", " +
  9362. "'" +
  9363. _tool +
  9364. "'" +
  9365. ", " +
  9366. "'" +
  9367. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9368. "'" +
  9369. ", " +
  9370. "'" +
  9371. aTool +
  9372. "'" +
  9373. ", " +
  9374. "`" +
  9375. text +
  9376. "`" +
  9377. ")\n" +
  9378. " });\n" +
  9379. "}\n" +
  9380. "document.head.appendChild(_js);\n";
  9381. _iframe.contentWindow.document.head.appendChild(_ajs);
  9382. }
  9383. }
  9384. }
  9385. U.MD.D.I.getEditorContent = function (iframe) {
  9386. return new Promise((resolve, reject) => {
  9387. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9388. console.log(content);
  9389. resolve(content)
  9390. });
  9391. });
  9392. }
  9393. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9394. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9395. // if (res.value[0].length > 0) {
  9396. // // resolve(res.value[0][0].text);
  9397. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9398. // $(fileInput).val('');
  9399. // });
  9400. // }
  9401. // }, [], { "type": "GET", "withCredentials": true });
  9402. var xmlhttp;
  9403. var Mac, Sn, DeviceId
  9404. if (window.XMLHttpRequest) {
  9405. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9406. xmlhttp = new XMLHttpRequest();
  9407. } else {
  9408. // IE6, IE5 浏览器执行代码
  9409. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9410. }
  9411. xmlhttp.onreadystatechange = function () {
  9412. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9413. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9414. // resolve(res.value[0][0].text);
  9415. if (type == '2') {
  9416. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9417. } else if (type == '3') {
  9418. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9419. }
  9420. } else {
  9421. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9422. }
  9423. }
  9424. }
  9425. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9426. xmlhttp.send();
  9427. }
  9428. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9429. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9430. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9431. _userinfo = US.userInfo, //登录用户信息
  9432. _userid = US.userInfo.userid //登录用户id
  9433. let _iframe;
  9434. let _cid = cid,
  9435. _stage = stage,
  9436. _task = task,
  9437. _tool = tool;
  9438. var _jie = $$("div", {
  9439. "style": {
  9440. "position": "absolute",
  9441. "bottom": "50px",
  9442. "right": "50px",
  9443. "zIndex": "9999",
  9444. "backgroundColor": "#2268bc",
  9445. "color": "#fff",
  9446. "padding": "12px 20px",
  9447. "cursor": "pointer",
  9448. "borderRadius": "4px",
  9449. },
  9450. "innerHTML": "确认并提交"
  9451. })
  9452. let aTool = ''
  9453. let _loading = document.createElement('div')
  9454. _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;"
  9455. // _loading.id = "";
  9456. let _lchild = document.createElement('div')
  9457. let _limg = document.createElement('img')
  9458. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9459. _limg.style = "width: 26px;margin-right: 10px;"
  9460. _lchild.appendChild(_limg)
  9461. let _lspan = document.createElement('span')
  9462. _lspan.innerHTML = "上传中..."
  9463. _lchild.appendChild(_lspan)
  9464. _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%);"
  9465. _loading.appendChild(_lchild)
  9466. var _box = $$('div', {
  9467. "style": {
  9468. "position": "relative",
  9469. "width": "100%",
  9470. "height": "100%",
  9471. },
  9472. })
  9473. _box.appendChild(_loading)
  9474. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9475. switch (str) {
  9476. case "whiteboard":
  9477. aTool = 1;
  9478. _iframe = $$("iframe", {
  9479. "frameborder": "no",
  9480. "border": "0",
  9481. "scrolling ": "no",
  9482. "style": {
  9483. "cssText": "border:0;width:100%;height:100%"
  9484. },
  9485. "src": "https://beta.iwb.cocorobo.cn/"
  9486. })
  9487. _box.appendChild(_iframe);
  9488. _box.appendChild(_jie);
  9489. _formdiv = new U.UF.UI.form(
  9490. "电子白板",
  9491. _box, {
  9492. "id": "whiteboards" + cid + stage + task + tool,
  9493. "style": {
  9494. "width": "90%",
  9495. "height": "90%",
  9496. "overflow": 'hidden'
  9497. },
  9498. "onresize": function () { }
  9499. }, {
  9500. closecallback: function () { }
  9501. }, {
  9502. "style": {
  9503. "height": "36px"
  9504. }
  9505. }).form; //创建窗体
  9506. _taskbar = {
  9507. "id": str + _formdiv.id,
  9508. "style": {
  9509. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9510. },
  9511. "name": "电子白板",
  9512. "forms": _formdiv,
  9513. "click": function () {
  9514. U.MD.D.I.openApplication(str, obj, info);
  9515. }
  9516. }
  9517. break;
  9518. case "mind":
  9519. aTool = 3;
  9520. _iframe = $$("iframe", {
  9521. "frameborder": "no",
  9522. "border": "0",
  9523. "scrolling ": "no",
  9524. "style": {
  9525. "cssText": "border:0;width:100%;height:100%"
  9526. },
  9527. "src": "/kityminder-editor/dist/index.html"
  9528. });
  9529. _box.appendChild(_iframe);
  9530. _box.appendChild(_jie);
  9531. _formdiv = new U.UF.UI.form(
  9532. "思维导图",
  9533. _box, { //"/jsmind/example/demo.html"
  9534. "id": "minds" + cid + stage + task + tool,
  9535. "style": {
  9536. "width": "90%",
  9537. "height": "90%",
  9538. "overflow": 'hidden'
  9539. },
  9540. "onresize": function () { }
  9541. }, {
  9542. closecallback: function () { }
  9543. }, {
  9544. "style": {
  9545. "height": "36px"
  9546. }
  9547. }).form; //创建窗体
  9548. _taskbar = {
  9549. "id": str + _formdiv.id,
  9550. "style": {
  9551. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9552. },
  9553. "name": "思维导图",
  9554. "forms": _formdiv,
  9555. "click": function () {
  9556. U.MD.D.I.openApplication(str, obj, info);
  9557. }
  9558. }
  9559. break;
  9560. case "doc":
  9561. aTool = 6;
  9562. _iframe = $$("iframe", {
  9563. "frameborder": "no",
  9564. "border": "0",
  9565. "scrolling ": "no",
  9566. "style": {
  9567. "cssText": "border:0;width:100%;height:100%"
  9568. },
  9569. "src": "/Office/Word/WordEditArea.htm"
  9570. })
  9571. _box.appendChild(_iframe);
  9572. _box.appendChild(_jie);
  9573. _formdiv = new U.UF.UI.form(
  9574. "协同文档",
  9575. _box, {
  9576. "id": "docs" + cid + stage + task + tool,
  9577. "style": {
  9578. "width": "90%",
  9579. "height": "90%",
  9580. "overflow": 'hidden'
  9581. },
  9582. "onresize": function () { }
  9583. }, {
  9584. closecallback: function () { }
  9585. }, {
  9586. "style": {
  9587. "height": "36px"
  9588. }
  9589. }).form; //创建窗体
  9590. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9591. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9592. })
  9593. _taskbar = {
  9594. "id": str + _formdiv.id,
  9595. "style": {
  9596. "backgroundImage": "url(/img/icon/doc.png)"
  9597. },
  9598. "name": "协同文档",
  9599. "forms": _formdiv,
  9600. "click": function () {
  9601. U.MD.D.I.openApplication(str, obj, info);
  9602. }
  9603. }
  9604. break;
  9605. }
  9606. const script1 = document.createElement("script");
  9607. script1.type = "text/javascript";
  9608. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9609. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9610. const script2 = document.createElement("script");
  9611. script2.type = "text/javascript";
  9612. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9613. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9614. const script3 = document.createElement("script");
  9615. script3.type = "text/javascript";
  9616. script3.charset = "UTF-8";
  9617. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9618. const script4 = document.createElement("script");
  9619. script4.type = "text/javascript";
  9620. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9621. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9622. if (_iframe) {
  9623. if (str == 'doc') {
  9624. _iframe = _formdiv.querySelector('iframe')
  9625. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9626. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9627. _iframe.contentWindow.document.body.appendChild(script1);
  9628. _iframe.contentWindow.document.body.appendChild(script2);
  9629. // _iframe.contentWindow.document.body.appendChild(script3);
  9630. _iframe.contentWindow.document.body.appendChild(script4);
  9631. })
  9632. if (onloadListener) {
  9633. _iframe.contentDocument.location.reload()
  9634. } else {
  9635. _iframe.contentDocument.location.reload()
  9636. }
  9637. } else if (str == 'mind') {
  9638. _iframe = _formdiv.querySelector('iframe')
  9639. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9640. _iframe.contentWindow.document.body.appendChild(script1);
  9641. _iframe.contentWindow.document.body.appendChild(script2);
  9642. _iframe.contentWindow.document.body.appendChild(script4);
  9643. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9644. })
  9645. if (onloadListener) {
  9646. _iframe.contentDocument.location.reload()
  9647. } else {
  9648. _iframe.contentDocument.location.reload()
  9649. }
  9650. } else {
  9651. _iframe.onload = () => {
  9652. _iframe.contentWindow.document.body.appendChild(script1);
  9653. _iframe.contentWindow.document.body.appendChild(script2);
  9654. // _iframe.contentWindow.document.body.appendChild(script3);
  9655. _iframe.contentWindow.document.body.appendChild(script4);
  9656. };
  9657. }
  9658. _jie.onclick = async () => {
  9659. let text = ''
  9660. if (aTool == 6) {
  9661. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9662. } else if (aTool == 3) {
  9663. text = await U.MD.D.I.getEditorContent(_iframe);
  9664. }
  9665. _loading.style.display = 'flex'
  9666. console.log(_loading);
  9667. var _ajs = _iframe.contentWindow.document.createElement("script");
  9668. _ajs.type = "text/javascript";
  9669. _ajs.innerHTML =
  9670. // 'console.log(' + _loading + ');\n' +
  9671. 'var _js = document.createElement("script");\n' +
  9672. '_js.type="text/javascript";\n' +
  9673. '_js.charset="UTF-8";\n' +
  9674. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9675. "_js.onload = function(){\n" +
  9676. ' var a = document.getElementsByTagName("img")\n' +
  9677. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9678. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9679. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9680. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9681. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9682. "beforeUpload_shishi(file," +
  9683. "'" +
  9684. _userid +
  9685. "'" +
  9686. ", " +
  9687. "'" +
  9688. _cid +
  9689. "'" +
  9690. ", " +
  9691. "'" +
  9692. _stage +
  9693. "'" +
  9694. ", " +
  9695. "'" +
  9696. _task +
  9697. "'" +
  9698. ", " +
  9699. "'" +
  9700. _tool +
  9701. "'" +
  9702. ", " +
  9703. "'" +
  9704. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9705. "'" +
  9706. ", " +
  9707. "'" +
  9708. aTool +
  9709. "'" +
  9710. ", " +
  9711. "`" +
  9712. text +
  9713. "`" +
  9714. ")\n" +
  9715. " });\n" +
  9716. "}\n" +
  9717. "document.head.appendChild(_js);\n";
  9718. _iframe.contentWindow.document.head.appendChild(_ajs);
  9719. }
  9720. }
  9721. //U.MD.D.I.openClick(str);
  9722. //如果有任务栏信息
  9723. // if (_taskbar) {
  9724. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9725. // }
  9726. }
  9727. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9728. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9729. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9730. _userinfo = US.userInfo, //登录用户信息
  9731. _userid = US.userInfo.userid //登录用户id
  9732. let _iframe;
  9733. let _cid = cid,
  9734. _stage = stage,
  9735. _task = task,
  9736. _tool = tool;
  9737. var _jie = $$("div", {
  9738. "style": {
  9739. "position": "absolute",
  9740. "bottom": "50px",
  9741. "right": "50px",
  9742. "zIndex": "9999",
  9743. "backgroundColor": "#2268bc",
  9744. "color": "#fff",
  9745. "padding": "12px 20px",
  9746. "cursor": "pointer",
  9747. "borderRadius": "4px",
  9748. },
  9749. "innerHTML": "确认并提交"
  9750. })
  9751. let aTool = ''
  9752. let _loading = document.createElement('div')
  9753. _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;"
  9754. // _loading.id = "";
  9755. let _lchild = document.createElement('div')
  9756. let _limg = document.createElement('img')
  9757. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9758. _limg.style = "width: 26px;margin-right: 10px;"
  9759. _lchild.appendChild(_limg)
  9760. let _lspan = document.createElement('span')
  9761. _lspan.innerHTML = "上传中..."
  9762. _lchild.appendChild(_lspan)
  9763. _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%);"
  9764. _loading.appendChild(_lchild)
  9765. var _box = $$('div', {
  9766. "style": {
  9767. "position": "relative",
  9768. "width": "100%",
  9769. "height": "100%",
  9770. },
  9771. })
  9772. _box.appendChild(_loading)
  9773. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9774. switch (str) {
  9775. case "whiteboard":
  9776. aTool = 1;
  9777. _iframe = $$("iframe", {
  9778. "frameborder": "no",
  9779. "border": "0",
  9780. "scrolling ": "no",
  9781. "style": {
  9782. "cssText": "border:0;width:100%;height:100%"
  9783. },
  9784. "src": "https://beta.iwb.cocorobo.cn/"
  9785. })
  9786. _box.appendChild(_iframe);
  9787. _box.appendChild(_jie);
  9788. _formdiv = new U.UF.UI.form(
  9789. "电子白板",
  9790. _box, {
  9791. "id": "whiteboards" + cid + stage + task + tool,
  9792. "style": {
  9793. "width": "90%",
  9794. "height": "90%",
  9795. "overflow": 'hidden'
  9796. },
  9797. "onresize": function () { }
  9798. }, {
  9799. closecallback: function () { }
  9800. }, {
  9801. "style": {
  9802. "height": "36px"
  9803. }
  9804. }).form; //创建窗体
  9805. _taskbar = {
  9806. "id": str + _formdiv.id,
  9807. "style": {
  9808. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9809. },
  9810. "name": "电子白板",
  9811. "forms": _formdiv,
  9812. "click": function () {
  9813. U.MD.D.I.openApplication(str, obj, info);
  9814. }
  9815. }
  9816. break;
  9817. case "mind":
  9818. aTool = 3;
  9819. _iframe = $$("iframe", {
  9820. "frameborder": "no",
  9821. "border": "0",
  9822. "scrolling ": "no",
  9823. "style": {
  9824. "cssText": "border:0;width:100%;height:100%"
  9825. },
  9826. "src": "/kityminder-editor/dist/index.html"
  9827. });
  9828. _box.appendChild(_iframe);
  9829. _box.appendChild(_jie);
  9830. _formdiv = new U.UF.UI.form(
  9831. "思维导图",
  9832. _box, { //"/jsmind/example/demo.html"
  9833. "id": "minds" + cid + stage + task + tool,
  9834. "style": {
  9835. "width": "90%",
  9836. "height": "90%",
  9837. "overflow": 'hidden'
  9838. },
  9839. "onresize": function () { }
  9840. }, {
  9841. closecallback: function () { }
  9842. }, {
  9843. "style": {
  9844. "height": "36px"
  9845. }
  9846. }).form; //创建窗体
  9847. _taskbar = {
  9848. "id": str + _formdiv.id,
  9849. "style": {
  9850. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9851. },
  9852. "name": "思维导图",
  9853. "forms": _formdiv,
  9854. "click": function () {
  9855. U.MD.D.I.openApplication(str, obj, info);
  9856. }
  9857. }
  9858. break;
  9859. case "doc":
  9860. aTool = 6;
  9861. _iframe = $$("iframe", {
  9862. "frameborder": "no",
  9863. "border": "0",
  9864. "scrolling ": "no",
  9865. "style": {
  9866. "cssText": "border:0;width:100%;height:100%"
  9867. },
  9868. "src": "/Office/Word/WordEditArea.htm"
  9869. })
  9870. _box.appendChild(_iframe);
  9871. _box.appendChild(_jie);
  9872. _formdiv = new U.UF.UI.form(
  9873. "协同文档",
  9874. _box, {
  9875. "id": "docs" + cid + stage + task + tool,
  9876. "style": {
  9877. "width": "90%",
  9878. "height": "90%",
  9879. "overflow": 'hidden'
  9880. },
  9881. "onresize": function () { }
  9882. }, {
  9883. closecallback: function () { }
  9884. }, {
  9885. "style": {
  9886. "height": "36px"
  9887. }
  9888. }).form; //创建窗体
  9889. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9890. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9891. })
  9892. _taskbar = {
  9893. "id": str + _formdiv.id,
  9894. "style": {
  9895. "backgroundImage": "url(/img/icon/doc.png)"
  9896. },
  9897. "name": "协同文档",
  9898. "forms": _formdiv,
  9899. "click": function () {
  9900. U.MD.D.I.openApplication(str, obj, info);
  9901. }
  9902. }
  9903. break;
  9904. }
  9905. const script1 = document.createElement("script");
  9906. script1.type = "text/javascript";
  9907. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9908. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9909. const script2 = document.createElement("script");
  9910. script2.type = "text/javascript";
  9911. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9912. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9913. const script3 = document.createElement("script");
  9914. script3.type = "text/javascript";
  9915. script3.charset = "UTF-8";
  9916. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9917. const script4 = document.createElement("script");
  9918. script4.type = "text/javascript";
  9919. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9920. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9921. if (_iframe) {
  9922. if (str == 'doc') {
  9923. _iframe = _formdiv.querySelector('iframe')
  9924. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9925. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9926. _iframe.contentWindow.document.body.appendChild(script1);
  9927. _iframe.contentWindow.document.body.appendChild(script2);
  9928. // _iframe.contentWindow.document.body.appendChild(script3);
  9929. _iframe.contentWindow.document.body.appendChild(script4);
  9930. })
  9931. if (onloadListener) {
  9932. _iframe.contentDocument.location.reload()
  9933. } else {
  9934. _iframe.contentDocument.location.reload()
  9935. }
  9936. } else if (str == 'mind') {
  9937. _iframe = _formdiv.querySelector('iframe')
  9938. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9939. _iframe.contentWindow.document.body.appendChild(script1);
  9940. _iframe.contentWindow.document.body.appendChild(script2);
  9941. _iframe.contentWindow.document.body.appendChild(script4);
  9942. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9943. })
  9944. if (onloadListener) {
  9945. _iframe.contentDocument.location.reload()
  9946. } else {
  9947. _iframe.contentDocument.location.reload()
  9948. }
  9949. } else {
  9950. _iframe.onload = () => {
  9951. _iframe.contentWindow.document.body.appendChild(script1);
  9952. _iframe.contentWindow.document.body.appendChild(script2);
  9953. // _iframe.contentWindow.document.body.appendChild(script3);
  9954. _iframe.contentWindow.document.body.appendChild(script4);
  9955. };
  9956. }
  9957. _jie.onclick = async () => {
  9958. let text = ''
  9959. if (aTool == 6) {
  9960. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9961. } else if (aTool == 3) {
  9962. text = await U.MD.D.I.getEditorContent(_iframe);
  9963. }
  9964. _loading.style.display = 'flex'
  9965. console.log(_loading);
  9966. var _ajs = _iframe.contentWindow.document.createElement("script");
  9967. _ajs.type = "text/javascript";
  9968. _ajs.innerHTML =
  9969. // 'console.log(' + _loading + ');\n' +
  9970. 'var _js = document.createElement("script");\n' +
  9971. '_js.type="text/javascript";\n' +
  9972. '_js.charset="UTF-8";\n' +
  9973. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9974. "_js.onload = function(){\n" +
  9975. ' var a = document.getElementsByTagName("img")\n' +
  9976. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9977. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9978. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9979. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9980. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9981. "beforeUpload_shishi(file," +
  9982. "'" +
  9983. _userid +
  9984. "'" +
  9985. ", " +
  9986. "'" +
  9987. _cid +
  9988. "'" +
  9989. ", " +
  9990. "'" +
  9991. _stage +
  9992. "'" +
  9993. ", " +
  9994. "'" +
  9995. _task +
  9996. "'" +
  9997. ", " +
  9998. "'" +
  9999. _tool +
  10000. "'" +
  10001. ", " +
  10002. "'" +
  10003. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  10004. "'" +
  10005. ", " +
  10006. "'" +
  10007. aTool +
  10008. "'" +
  10009. ", " +
  10010. "`" +
  10011. text +
  10012. "`" +
  10013. ")\n" +
  10014. " });\n" +
  10015. "}\n" +
  10016. "document.head.appendChild(_js);\n";
  10017. _iframe.contentWindow.document.head.appendChild(_ajs);
  10018. }
  10019. }
  10020. //U.MD.D.I.openClick(str);
  10021. //如果有任务栏信息
  10022. // if (_taskbar) {
  10023. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10024. // }
  10025. }
  10026. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  10027. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10028. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10029. _userinfo = US.userInfo, //登录用户信息
  10030. _userid = US.userInfo.userid //登录用户id
  10031. let _iframe;
  10032. let _cid = cid,
  10033. _stage = stage,
  10034. _task = task,
  10035. _tool = tool;
  10036. var _jie = $$("div", {
  10037. "style": {
  10038. "position": "absolute",
  10039. "bottom": "50px",
  10040. "right": "50px",
  10041. "zIndex": "9999",
  10042. "backgroundColor": "#2268bc",
  10043. "color": "#fff",
  10044. "padding": "12px 20px",
  10045. "cursor": "pointer",
  10046. "borderRadius": "4px",
  10047. },
  10048. "innerHTML": "上传模板"
  10049. })
  10050. let aTool = ''
  10051. let _loading = document.createElement('div')
  10052. _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;"
  10053. // _loading.id = "";
  10054. let _lchild = document.createElement('div')
  10055. let _limg = document.createElement('img')
  10056. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10057. _limg.style = "width: 26px;margin-right: 10px;"
  10058. _lchild.appendChild(_limg)
  10059. let _lspan = document.createElement('span')
  10060. _lspan.innerHTML = "上传中..."
  10061. _lchild.appendChild(_lspan)
  10062. _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%);"
  10063. _loading.appendChild(_lchild)
  10064. var _box = $$('div', {
  10065. "style": {
  10066. "position": "relative",
  10067. "width": "100%",
  10068. "height": "100%",
  10069. },
  10070. })
  10071. _box.appendChild(_loading)
  10072. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  10073. switch (str) {
  10074. case "whiteboard":
  10075. aTool = 1;
  10076. _iframe = $$("iframe", {
  10077. "frameborder": "no",
  10078. "border": "0",
  10079. "scrolling ": "no",
  10080. "style": {
  10081. "cssText": "border:0;width:100%;height:100%"
  10082. },
  10083. "src": "https://beta.iwb.cocorobo.cn/"
  10084. })
  10085. _box.appendChild(_iframe);
  10086. _box.appendChild(_jie);
  10087. _formdiv = new U.UF.UI.form(
  10088. "电子白板",
  10089. _box, {
  10090. "id": "whiteboards_Yu" + cid + stage + task + tool,
  10091. "style": {
  10092. "width": "90%",
  10093. "height": "90%",
  10094. "overflow": 'hidden'
  10095. },
  10096. "onresize": function () { }
  10097. }, {
  10098. closecallback: function () { }
  10099. }, {
  10100. "style": {
  10101. "height": "36px"
  10102. }
  10103. }).form; //创建窗体
  10104. _taskbar = {
  10105. "id": str + _formdiv.id,
  10106. "style": {
  10107. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10108. },
  10109. "name": "电子白板",
  10110. "forms": _formdiv,
  10111. "click": function () {
  10112. U.MD.D.I.openApplication(str, obj, info);
  10113. }
  10114. }
  10115. break;
  10116. case "mind":
  10117. aTool = 3;
  10118. _iframe = $$("iframe", {
  10119. "frameborder": "no",
  10120. "border": "0",
  10121. "scrolling ": "no",
  10122. "style": {
  10123. "cssText": "border:0;width:100%;height:100%"
  10124. },
  10125. "src": "/kityminder-editor/dist/index.html"
  10126. });
  10127. _box.appendChild(_iframe);
  10128. _box.appendChild(_jie);
  10129. _formdiv = new U.UF.UI.form(
  10130. "思维导图",
  10131. _box, { //"/jsmind/example/demo.html"
  10132. "id": "minds_Yu" + cid + stage + task + tool,
  10133. "style": {
  10134. "width": "90%",
  10135. "height": "90%",
  10136. "overflow": 'hidden'
  10137. },
  10138. "onresize": function () { }
  10139. }, {
  10140. closecallback: function () { }
  10141. }, {
  10142. "style": {
  10143. "height": "36px"
  10144. }
  10145. }).form; //创建窗体
  10146. _taskbar = {
  10147. "id": str + _formdiv.id,
  10148. "style": {
  10149. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10150. },
  10151. "name": "思维导图",
  10152. "forms": _formdiv,
  10153. "click": function () {
  10154. U.MD.D.I.openApplication(str, obj, info);
  10155. }
  10156. }
  10157. break;
  10158. case "doc":
  10159. aTool = 6;
  10160. _iframe = $$("iframe", {
  10161. "frameborder": "no",
  10162. "border": "0",
  10163. "scrolling ": "no",
  10164. "style": {
  10165. "cssText": "border:0;width:100%;height:100%"
  10166. },
  10167. "src": "/Office/Word/WordEditArea.htm"
  10168. })
  10169. _box.appendChild(_iframe);
  10170. _box.appendChild(_jie);
  10171. _formdiv = new U.UF.UI.form(
  10172. "协同文档",
  10173. _box, {
  10174. "id": "docs_Yu" + cid + stage + task + tool,
  10175. "style": {
  10176. "width": "90%",
  10177. "height": "90%",
  10178. "overflow": 'hidden'
  10179. },
  10180. "onresize": function () { }
  10181. }, {
  10182. closecallback: function () { }
  10183. }, {
  10184. "style": {
  10185. "height": "36px"
  10186. }
  10187. }).form; //创建窗体
  10188. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10189. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10190. })
  10191. _taskbar = {
  10192. "id": str + _formdiv.id,
  10193. "style": {
  10194. "backgroundImage": "url(/img/icon/doc.png)"
  10195. },
  10196. "name": "协同文档",
  10197. "forms": _formdiv,
  10198. "click": function () {
  10199. U.MD.D.I.openApplication(str, obj, info);
  10200. }
  10201. }
  10202. break;
  10203. case "CocoPi":
  10204. aTool = 57;
  10205. _iframe = $$("iframe", {
  10206. "allowpaymentrequest": "allowpaymentrequest",
  10207. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10208. "webkitallowfullscreen": "",
  10209. "mozallowfullscreen": "",
  10210. "frameborder": "no",
  10211. "border": "0",
  10212. "scrolling ": "no",
  10213. "style": {
  10214. "cssText": "border:0;width:100%;height:100%"
  10215. },
  10216. "src": "https://pi.cocorobo.cn/"
  10217. })
  10218. _box.appendChild(_iframe);
  10219. _box.appendChild(_jie);
  10220. _formdiv = new U.UF.UI.form(
  10221. "CocoPi",
  10222. _box, {
  10223. "id": "CocoPi_Yu" + cid + stage + task + tool,
  10224. "style": {
  10225. "width": "90%",
  10226. "height": "90%",
  10227. "overflow": 'hidden'
  10228. },
  10229. "onresize": function () { }
  10230. }, {
  10231. closecallback: function () { }
  10232. }, {
  10233. "style": {
  10234. "height": "36px"
  10235. }
  10236. }).form; //创建窗体
  10237. _taskbar = {
  10238. "id": str + _formdiv.id,
  10239. "style": {
  10240. "backgroundImage": "url(/img/icon/cocopi.png)"
  10241. },
  10242. "name": "CocoPi",
  10243. "forms": _formdiv,
  10244. "click": function () {
  10245. U.MD.D.I.openApplication(str, obj, info);
  10246. }
  10247. }
  10248. break;
  10249. }
  10250. if (_iframe) {
  10251. if (str == 'doc') {
  10252. _iframe = _formdiv.querySelector('iframe')
  10253. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10254. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10255. })
  10256. if (onloadListener) {
  10257. _iframe.contentDocument.location.reload()
  10258. } else {
  10259. _iframe.contentDocument.location.reload()
  10260. }
  10261. } else if (str == 'mind') {
  10262. _iframe = _formdiv.querySelector('iframe')
  10263. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10264. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10265. })
  10266. if (onloadListener) {
  10267. _iframe.contentDocument.location.reload()
  10268. } else {
  10269. _iframe.contentDocument.location.reload()
  10270. }
  10271. } else if (str == 'whiteboard') {
  10272. _iframe = _formdiv.querySelector('iframe')
  10273. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10274. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10275. })
  10276. // if (onloadListener) {
  10277. // try {
  10278. // _iframe.src += "?cocorobo="+new Date().getTime()
  10279. // _iframe.contentWindow.document.location.reload()
  10280. // } catch (error) {
  10281. // }
  10282. // } else {
  10283. // _iframe.contentDocument.location.reload()
  10284. // }
  10285. } else if (str == 'CocoPi') {
  10286. _iframe = _formdiv.querySelector('iframe')
  10287. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10288. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10289. })
  10290. if (onloadListener) {
  10291. _iframe.contentDocument.location.reload()
  10292. } else {
  10293. _iframe.contentDocument.location.reload()
  10294. }
  10295. } else {
  10296. _iframe.onload = () => { };
  10297. }
  10298. _jie.onclick = async () => {
  10299. let text = ''
  10300. let type = '2'
  10301. if (aTool == 1) {
  10302. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10303. type = '3'
  10304. } else if (aTool == 6) {
  10305. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10306. type = '1'
  10307. } else if (aTool == 3) {
  10308. text = await U.MD.D.I.getEditorContent(_iframe);
  10309. type = '2'
  10310. } else if (aTool == 57) {
  10311. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10312. type = '4'
  10313. }
  10314. _loading.style.display = 'flex'
  10315. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10316. }
  10317. }
  10318. //U.MD.D.I.openClick(str);
  10319. //如果有任务栏信息
  10320. // if (_taskbar) {
  10321. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10322. // }
  10323. }
  10324. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10325. var xmlhttp;
  10326. var Mac, Sn, DeviceId
  10327. if (window.XMLHttpRequest) {
  10328. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10329. xmlhttp = new XMLHttpRequest();
  10330. } else {
  10331. // IE6, IE5 浏览器执行代码
  10332. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10333. }
  10334. xmlhttp.onreadystatechange = function () {
  10335. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10336. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10337. // resolve(res.value[0][0].text);
  10338. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10339. }
  10340. }
  10341. }
  10342. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10343. xmlhttp.send();
  10344. }
  10345. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10346. var xmlhttp;
  10347. var Mac, Sn, DeviceId
  10348. if (window.XMLHttpRequest) {
  10349. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10350. xmlhttp = new XMLHttpRequest();
  10351. } else {
  10352. // IE6, IE5 浏览器执行代码
  10353. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10354. }
  10355. xmlhttp.onreadystatechange = function () {
  10356. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10357. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10358. // resolve(res.value[0][0].text);
  10359. if (type == '2') {
  10360. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10361. } else if (type == '3') {
  10362. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10363. } else if (type == '4') {
  10364. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10365. }
  10366. } else {
  10367. if (type == '2') {
  10368. iframe.contentWindow.editor.minder.importData('json', '')
  10369. } else if (type == '3') {
  10370. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10371. } else if (type == '4') {
  10372. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10373. }
  10374. }
  10375. }
  10376. }
  10377. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10378. xmlhttp.send();
  10379. }
  10380. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10381. var xmlhttp;
  10382. var Mac, Sn, DeviceId
  10383. if (window.XMLHttpRequest) {
  10384. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10385. xmlhttp = new XMLHttpRequest();
  10386. } else {
  10387. // IE6, IE5 浏览器执行代码
  10388. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10389. }
  10390. xmlhttp.onreadystatechange = function () {
  10391. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10392. if (xmlhttp.response) {
  10393. // resolve(res.value[0][0].text);
  10394. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10395. // $(fileInput).val('');
  10396. // });
  10397. span.innerHTML = '上传成功'
  10398. setTimeout(() => {
  10399. loading.style.display = 'none'
  10400. }, 1000);
  10401. }
  10402. }
  10403. }
  10404. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10405. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10406. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10407. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10408. // 设置请求头,表示请求体的编码格式
  10409. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10410. // 设置请求体,使用url-encoded格式的数据
  10411. }
  10412. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10413. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10414. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10415. _userinfo = US.userInfo, //登录用户信息
  10416. _userid = US.userInfo.userid //登录用户id
  10417. let _iframe;
  10418. let _cid = cid,
  10419. _stage = stage,
  10420. _task = task,
  10421. _tool = tool;
  10422. var _jie = $$("div", {
  10423. "style": {
  10424. "position": "absolute",
  10425. "bottom": "50px",
  10426. "right": "50px",
  10427. "zIndex": "9999",
  10428. "backgroundColor": "#2268bc",
  10429. "color": "#fff",
  10430. "padding": "12px 20px",
  10431. "cursor": "pointer",
  10432. "borderRadius": "4px",
  10433. },
  10434. "innerHTML": "提交作业"
  10435. })
  10436. let aTool = ''
  10437. let _loading = document.createElement('div')
  10438. _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;"
  10439. // _loading.id = "";
  10440. let _lchild = document.createElement('div')
  10441. let _limg = document.createElement('img')
  10442. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10443. _limg.style = "width: 26px;margin-right: 10px;"
  10444. _lchild.appendChild(_limg)
  10445. let _lspan = document.createElement('span')
  10446. _lspan.innerHTML = "上传中..."
  10447. _lchild.appendChild(_lspan)
  10448. _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%);"
  10449. _loading.appendChild(_lchild)
  10450. var _box = $$('div', {
  10451. "style": {
  10452. "position": "relative",
  10453. "width": "100%",
  10454. "height": "100%",
  10455. },
  10456. })
  10457. _box.appendChild(_loading)
  10458. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10459. switch (str) {
  10460. case "CocoPi":
  10461. aTool = 57;
  10462. _iframe = $$("iframe", {
  10463. "allowpaymentrequest": "allowpaymentrequest",
  10464. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10465. "webkitallowfullscreen": "",
  10466. "mozallowfullscreen": "",
  10467. "frameborder": "no",
  10468. "border": "0",
  10469. "scrolling ": "no",
  10470. "style": {
  10471. "cssText": "border:0;width:100%;height:100%"
  10472. },
  10473. "src": "https://pi.cocorobo.cn/"
  10474. })
  10475. _box.appendChild(_iframe);
  10476. _box.appendChild(_jie);
  10477. _formdiv = new U.UF.UI.form(
  10478. "CocoPi",
  10479. _box, {
  10480. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10481. "style": {
  10482. "width": "90%",
  10483. "height": "90%",
  10484. "overflow": 'hidden'
  10485. },
  10486. "onresize": function () { }
  10487. }, {
  10488. closecallback: function () { }
  10489. }, {
  10490. "style": {
  10491. "height": "36px"
  10492. }
  10493. }).form; //创建窗体
  10494. _taskbar = {
  10495. "id": str + _formdiv.id,
  10496. "style": {
  10497. "backgroundImage": "url(/img/icon/cocopi.png)"
  10498. },
  10499. "name": "CocoPi",
  10500. "forms": _formdiv,
  10501. "click": function () {
  10502. U.MD.D.I.openApplication(str, obj, info);
  10503. }
  10504. }
  10505. break;
  10506. }
  10507. if (_iframe) {
  10508. if (str == 'CocoPi') {
  10509. _iframe = _formdiv.querySelector('iframe')
  10510. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10511. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10512. })
  10513. if (onloadListener) {
  10514. _iframe.contentDocument.location.reload()
  10515. } else {
  10516. _iframe.contentDocument.location.reload()
  10517. }
  10518. }
  10519. _jie.onclick = async () => {
  10520. let text = ''
  10521. if (aTool == 57) {
  10522. text = _iframe.contentWindow.getLoadXmlStr()
  10523. }
  10524. _loading.style.display = 'flex'
  10525. console.log(_loading);
  10526. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10527. _loading.style.display = 'none'
  10528. let _div = document.createElement('div')
  10529. _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;"
  10530. let _inner = document.createElement('div')
  10531. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10532. _inner.innerHTML = "上传成功"
  10533. _div.appendChild(_inner)
  10534. _iframe.contentWindow.window.document.body.appendChild(_div)
  10535. _div.onclick = () => {
  10536. _iframe.contentWindow.window.document.body.removeChild(_div)
  10537. }
  10538. setTimeout(() => {
  10539. _iframe.contentWindow.window.document.body.removeChild(_div)
  10540. }, 1000);
  10541. }, [], { "type": "POST", "withCredentials": true });
  10542. }
  10543. }
  10544. }
  10545. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10546. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10547. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10548. _userid = student.userid, //登录用户id
  10549. _username = student.student //用户名字
  10550. let _iframe;
  10551. let _cid = cid,
  10552. _stage = stage,
  10553. _task = task,
  10554. _tool = tool;
  10555. var _jie = $$("div", {
  10556. "style": {
  10557. "position": "absolute",
  10558. "bottom": "50px",
  10559. "right": "50px",
  10560. "zIndex": "9999",
  10561. "backgroundColor": "#2268bc",
  10562. "color": "#fff",
  10563. "padding": "12px 20px",
  10564. "cursor": "pointer",
  10565. "borderRadius": "4px",
  10566. },
  10567. "innerHTML": "提交作业"
  10568. })
  10569. let aTool = ''
  10570. let _loading = document.createElement('div')
  10571. _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;"
  10572. // _loading.id = "";
  10573. let _lchild = document.createElement('div')
  10574. let _limg = document.createElement('img')
  10575. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10576. _limg.style = "width: 26px;margin-right: 10px;"
  10577. _lchild.appendChild(_limg)
  10578. let _lspan = document.createElement('span')
  10579. _lspan.innerHTML = "上传中..."
  10580. _lchild.appendChild(_lspan)
  10581. _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%);"
  10582. _loading.appendChild(_lchild)
  10583. var _box = $$('div', {
  10584. "style": {
  10585. "position": "relative",
  10586. "width": "100%",
  10587. "height": "100%",
  10588. },
  10589. })
  10590. _box.appendChild(_loading)
  10591. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10592. switch (str) {
  10593. case "CocoPi":
  10594. aTool = 57;
  10595. _iframe = $$("iframe", {
  10596. "allowpaymentrequest": "allowpaymentrequest",
  10597. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10598. "webkitallowfullscreen": "",
  10599. "mozallowfullscreen": "",
  10600. "frameborder": "no",
  10601. "border": "0",
  10602. "scrolling ": "no",
  10603. "style": {
  10604. "cssText": "border:0;width:100%;height:100%"
  10605. },
  10606. "src": "https://pi.cocorobo.cn/"
  10607. })
  10608. _box.appendChild(_iframe);
  10609. _box.appendChild(_jie);
  10610. _formdiv = new U.UF.UI.form(
  10611. "CocoPi-" + _username,
  10612. _box, {
  10613. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10614. "style": {
  10615. "width": "90%",
  10616. "height": "90%",
  10617. "overflow": 'hidden'
  10618. },
  10619. "onresize": function () { }
  10620. }, {
  10621. closecallback: function () { }
  10622. }, {
  10623. "style": {
  10624. "height": "36px"
  10625. }
  10626. }).form; //创建窗体
  10627. _taskbar = {
  10628. "id": str + _formdiv.id,
  10629. "style": {
  10630. "backgroundImage": "url(/img/icon/cocopi.png)"
  10631. },
  10632. "name": "CocoPi",
  10633. "forms": _formdiv,
  10634. "click": function () {
  10635. U.MD.D.I.openApplication(str, obj, info);
  10636. }
  10637. }
  10638. break;
  10639. }
  10640. if (_iframe) {
  10641. if (str == 'CocoPi') {
  10642. _iframe = _formdiv.querySelector('iframe')
  10643. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10644. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10645. })
  10646. if (onloadListener) {
  10647. _iframe.contentDocument.location.reload()
  10648. } else {
  10649. _iframe.contentDocument.location.reload()
  10650. }
  10651. }
  10652. _jie.onclick = async () => {
  10653. let text = ''
  10654. if (aTool == 57) {
  10655. text = _iframe.contentWindow.getLoadXmlStr()
  10656. }
  10657. _loading.style.display = 'flex'
  10658. console.log(_loading);
  10659. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10660. _loading.style.display = 'none'
  10661. let _div = document.createElement('div')
  10662. _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;"
  10663. let _inner = document.createElement('div')
  10664. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10665. _inner.innerHTML = "上传成功"
  10666. _div.appendChild(_inner)
  10667. _iframe.contentWindow.window.document.body.appendChild(_div)
  10668. _div.onclick = () => {
  10669. _iframe.contentWindow.window.document.body.removeChild(_div)
  10670. }
  10671. setTimeout(() => {
  10672. _iframe.contentWindow.window.document.body.removeChild(_div)
  10673. }, 1000);
  10674. }, [], { "type": "POST", "withCredentials": true });
  10675. }
  10676. }
  10677. }
  10678. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10679. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10680. if (res.value[0].length > 0) {
  10681. if (atool == 57) {
  10682. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10683. }
  10684. } else {
  10685. if (atool == 57) {
  10686. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10687. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10688. }
  10689. }
  10690. }, [], { "type": "POST", "withCredentials": true });
  10691. }
  10692. U.MD.D.addOp = function(text,type,time){
  10693. var userInfo = US.userInfo;
  10694. if(Object.keys(userInfo).length !== 0){
  10695. U.A.Request(US.Config.pbl + "addOperationTimeT", [userInfo.userid,text,type,time], function (res) {
  10696. }, [], { "type": "POST", "withCredentials": true });
  10697. }
  10698. }