DeskTop.js 679 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  106. ];
  107. U.MD.D.I.studentDeskIcon = [
  108. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  109. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  110. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  111. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  112. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  113. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  114. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  115. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  116. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  117. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  118. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  119. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  120. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  121. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  122. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  123. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  124. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  125. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  126. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  127. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  128. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  129. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  130. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  131. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  132. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  133. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  134. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  135. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  136. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  137. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  138. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  139. ];
  140. U.MD.D.I.studentDeskIcon2 = [
  141. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  142. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  143. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  144. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  145. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  146. ]
  147. U.MD.D.I.studentDeskIcon3 = [
  148. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  149. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  150. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  151. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  152. ]
  153. U.MD.D.I.schoolDeskIcon = [
  154. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  155. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  156. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  157. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  158. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  159. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  160. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  161. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  162. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  163. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  164. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  165. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  166. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  167. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  168. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  169. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  170. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  171. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  172. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  173. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  174. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  175. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  176. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  177. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  178. ];
  179. U.MD.D.I.orgDeskIcon = [
  180. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  181. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  182. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  183. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  184. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  185. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  187. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  188. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  189. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  190. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  191. ];
  192. U.MD.D.I.orgStemDeskIcon = [
  193. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  194. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  195. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  196. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  197. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  198. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  199. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  200. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  201. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  202. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  203. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  204. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  205. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  206. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  207. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  209. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  210. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  211. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  212. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  213. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  214. ];
  215. U.MD.D.I.szulsDeskIcon = [
  216. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  217. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  218. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  219. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  220. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  221. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  222. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  223. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  224. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  225. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  226. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  227. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  228. ];
  229. U.MD.D.I.hanDeskIcon = [
  230. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  231. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  232. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  233. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  234. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  235. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  236. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  237. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  238. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  239. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  240. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  241. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  242. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  243. ];
  244. U.MD.D.I.GMteacherDeskIcon = [
  245. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  246. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  247. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  248. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  249. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  250. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  251. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  252. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  253. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  254. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  255. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  256. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  257. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  258. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  259. ];
  260. U.MD.D.I.GMstudentDeskIcon = [
  261. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  262. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  263. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  264. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  265. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  266. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  267. ];
  268. //松山湖
  269. U.MD.D.I.SONGteacherDeskIcon = [
  270. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  271. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  272. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  273. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  274. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  275. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  276. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  277. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  278. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  279. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  280. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  281. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  282. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  283. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  284. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  285. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  286. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  287. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  288. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  289. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  290. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  291. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  292. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  293. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  294. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  295. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  296. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  297. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  298. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  299. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  300. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  301. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  302. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  303. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  304. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  305. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  306. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  307. ];
  308. U.MD.D.I.tcStudentDeskIcon = [
  309. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  310. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  311. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  312. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  313. ];
  314. U.MD.D.I.tcTeacherDeskIcon = [
  315. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  316. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  317. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  318. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  319. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  320. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  321. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  322. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  323. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  324. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  325. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  326. ];
  327. U.MD.D.I.tcOrganizerDeskIcon = [
  328. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  329. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  330. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  331. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  332. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  333. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  334. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  335. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  336. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  337. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  338. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  339. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  340. ];
  341. U.MD.D.I.szscStudentDeskIcon = [
  342. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  343. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  344. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  345. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  346. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  347. ];
  348. U.MD.D.I.szscTeacherDeskIcon = [
  349. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  350. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  351. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  352. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  353. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  354. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  355. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  356. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  357. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  358. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  359. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  360. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  361. ];
  362. U.MD.D.I.szscOrganizerDeskIcon = [
  363. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  364. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  365. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  366. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  367. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  368. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  369. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  370. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  371. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  372. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  373. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  374. ];
  375. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  376. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  377. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  378. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  379. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  380. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  381. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  382. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  383. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  384. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  385. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  386. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  387. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  388. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  389. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  390. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  391. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  392. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  393. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  394. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  395. ];
  396. U.MD.D.I.wankeAdminDeskIcon = [
  397. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  398. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  399. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  400. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  401. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  402. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  403. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  404. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  405. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  406. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  407. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  408. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  409. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  410. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  411. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  412. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  413. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  414. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  415. ];
  416. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  417. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  418. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  419. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  420. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  421. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  422. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  423. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  424. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  425. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  426. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  427. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  428. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  429. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  430. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  431. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  432. ];
  433. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  434. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  435. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  436. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  437. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  438. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  439. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  440. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  441. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  442. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  443. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  444. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  445. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  446. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  447. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  448. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  449. ];
  450. //明德教师桌面图标的全局变量
  451. U.MD.D.I.MingdeTeacherDeskIcon = [
  452. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  453. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  454. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  455. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  456. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  457. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  458. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  459. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  460. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  461. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  462. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  463. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  464. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  465. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  466. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  467. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  468. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  469. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  470. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  471. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  472. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  473. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  474. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  475. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  476. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  477. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  478. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  479. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  480. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  481. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  482. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  483. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  484. ];
  485. //97c4ee8b-d010-4042-986d-e9d3c217264f
  486. //教师桌面图标的全局变量
  487. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  488. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  489. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  490. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  491. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  492. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  493. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  494. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  495. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  496. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  497. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  498. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  499. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  500. ];
  501. //福田
  502. U.MD.D.I.futianTeacherDeskIcon = [
  503. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  504. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  505. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  506. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  507. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  508. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  509. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  510. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  511. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  512. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  513. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  514. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  515. ];
  516. //福田
  517. U.MD.D.I.futianAdminDeskIcon = [
  518. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  519. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  520. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  521. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  522. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  523. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  524. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  525. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  526. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  527. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  528. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  529. ];
  530. //lotech
  531. U.MD.D.I.lotechTeacherDeskIcon = [
  532. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  533. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  534. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  535. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  536. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  537. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  538. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  539. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  540. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  541. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  542. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  543. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  544. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  546. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  547. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  548. ];
  549. //龙华中心小学教师桌面图标的全局变量
  550. U.MD.D.I.longhuateacherDeskIcon = [
  551. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  552. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  553. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  554. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  555. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  556. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  557. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  558. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  559. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  560. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  561. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  562. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  563. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  564. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  565. ];
  566. //教科院实小教师桌面图标的全局变量
  567. U.MD.D.I.siesteacherDeskIcon = [
  568. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  569. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  570. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  571. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  572. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  573. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  574. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  575. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  576. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  577. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  578. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  579. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  580. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  581. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  582. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  583. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  584. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  587. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  588. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  589. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  590. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  591. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  592. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  593. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  594. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  595. ];
  596. //教科院实小教师桌面图标的全局变量
  597. U.MD.D.I.siesStudentDeskIcon = [
  598. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  599. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  600. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  601. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  602. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  603. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  604. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  605. ];
  606. //中山小学教师桌面图标的全局变量
  607. U.MD.D.I.guzmsteacherDeskIcon = [
  608. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  609. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  610. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  611. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  612. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  613. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  614. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  615. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  616. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  617. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  618. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  619. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  620. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  621. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  622. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  623. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  624. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  625. ];
  626. //中山小学学生桌面图标的全局变量
  627. U.MD.D.I.guzmsStudentDeskIcon = [
  628. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  629. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  630. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  631. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  632. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  633. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  634. ];
  635. //福田
  636. U.MD.D.I.gdjgTeacherDeskIcon = [
  637. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  638. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  639. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  640. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  641. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  642. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  643. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  644. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  645. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  646. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  647. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  648. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  649. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  650. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  651. ];
  652. //gdjg
  653. U.MD.D.I.gdjgAdminDeskIcon = [
  654. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  655. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  656. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  657. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  658. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  659. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  660. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  661. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  662. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  663. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  664. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  665. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  666. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  667. ];
  668. //hk
  669. U.MD.D.I.hkteacherDeskIcon = [
  670. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  671. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  672. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  673. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  674. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  675. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  676. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  677. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  678. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  679. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  680. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  681. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  682. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  683. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  684. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  685. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  686. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  687. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  688. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  689. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  690. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  691. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  692. ];
  693. //hk
  694. U.MD.D.I.hkStudentDeskIcon = [
  695. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  696. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  697. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  698. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  699. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  700. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  701. ];
  702. //hk
  703. U.MD.D.I.hkaceteacherDeskIcon = [
  704. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  705. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  706. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  707. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  708. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  709. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  710. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  711. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  712. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  713. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  714. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  715. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  716. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  717. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  718. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  719. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  720. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  721. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  722. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  723. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  724. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  725. ];
  726. //hk
  727. U.MD.D.I.hkaceStudentDeskIcon = [
  728. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  729. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  730. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  731. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  732. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  733. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  734. ];
  735. //香海正覺蓮社佛教正覺中學
  736. U.MD.D.I.hkZJLSteacherDeskIcon = [
  737. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  738. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  739. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  740. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  741. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  742. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  743. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  744. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  745. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  746. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  747. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  748. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  749. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  750. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  751. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  752. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  753. ];
  754. //香海正覺蓮社佛教正覺中學
  755. U.MD.D.I.hkZJLSStudentDeskIcon = [
  756. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  757. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  758. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  759. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  760. ];
  761. //云海
  762. U.MD.D.I.yunhaiTeacherDeskIcon = [
  763. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  764. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  765. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  766. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  767. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  768. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  769. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  770. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  771. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  772. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  773. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  774. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  775. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  776. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  777. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  778. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  779. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  780. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  781. ];
  782. //福田
  783. U.MD.D.I.heyuanTeacherDeskIcon = [
  784. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  785. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  786. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  787. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  788. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  789. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  790. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  791. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  792. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  793. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  794. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  795. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  796. ];
  797. //福田
  798. U.MD.D.I.heyuanAdminDeskIcon = [
  799. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  800. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  801. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  802. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  803. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  804. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  805. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  806. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  807. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  808. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  809. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  810. ];
  811. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  812. U.MD.D.I.szherTeacherDeskIcon = [
  813. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  814. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  815. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  816. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  817. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  818. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  819. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  820. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  821. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  822. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  823. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  824. ];
  825. //dsei
  826. U.MD.D.I.dseiTeacherDeskIcon = [
  827. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  828. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  829. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  830. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  831. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  832. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  833. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  834. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  835. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  836. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  837. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  838. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  839. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  840. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  841. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  842. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  843. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  844. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  845. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  846. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  847. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  848. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  849. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  850. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  851. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  852. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  853. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  854. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  855. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  856. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  857. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  858. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  859. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  860. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  861. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  862. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  863. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  864. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  865. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  866. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  867. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  868. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  869. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  870. ];
  871. //dsei
  872. U.MD.D.I.dseiAdminDeskIcon = [
  873. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  874. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  875. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  876. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  877. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  878. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  879. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  880. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  881. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  882. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  883. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  884. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  885. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  886. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  887. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  888. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  889. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  890. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  891. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  892. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  893. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  894. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  895. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  896. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  897. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  898. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  899. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  900. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  901. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  902. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  903. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  904. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  905. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  906. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  907. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  908. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  909. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  910. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  911. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  912. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  913. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  914. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  915. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  916. ];
  917. //dsei
  918. U.MD.D.I.dseiStudentDeskIcon = [
  919. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  920. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  921. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  922. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  923. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  924. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  925. ];
  926. //未来教育基地
  927. U.MD.D.I.szjkyTeacherDeskIcon = [
  928. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  929. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  930. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  931. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  932. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  933. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  934. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  935. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  936. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  937. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  938. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  939. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  940. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  941. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  942. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  943. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  944. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  945. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  946. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  947. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  948. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  949. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  950. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  951. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  952. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  953. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  954. ];
  955. //未来教育基地
  956. U.MD.D.I.szjkyAdminDeskIcon = [
  957. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  958. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  959. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  960. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  961. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  962. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  963. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  964. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  965. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  966. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  967. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  968. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  969. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  970. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  971. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  972. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  973. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  974. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  975. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  976. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  977. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  978. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  979. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  980. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  981. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  982. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  983. ];
  984. //未来教育基地
  985. U.MD.D.I.szjkyStudentDeskIcon = [
  986. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  987. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  988. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  989. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  990. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  991. ];
  992. //成华教育局
  993. U.MD.D.I.chjyjTeacherDeskIcon = [
  994. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  995. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  996. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  997. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  998. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  999. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1000. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1001. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1002. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1003. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1004. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1005. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1006. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1007. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1008. ];
  1009. //成华教育局chjyj
  1010. U.MD.D.I.chjyjAdminDeskIcon = [
  1011. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1012. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1013. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1014. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1015. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1016. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1017. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1018. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1019. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1020. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1021. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1022. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1023. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1024. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1025. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1026. ];
  1027. //成华教育局chjyj
  1028. U.MD.D.I.chjyjStudentDeskIcon = [
  1029. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1030. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1031. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1032. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1033. ];
  1034. //tpc
  1035. U.MD.D.I.tpcStudentDeskIcon = [
  1036. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1037. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1038. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1039. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1040. ];
  1041. //tpc
  1042. U.MD.D.I.tpcTeacherDeskIcon = [
  1043. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1044. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1045. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1046. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1047. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1048. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1049. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1050. ];
  1051. //tpc
  1052. U.MD.D.I.tpcAdminDeskIcon = [
  1053. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1054. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1055. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1056. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1057. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1058. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1059. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1060. ];
  1061. //THU-IOE
  1062. U.MD.D.I.thuioeTeacherDeskIcon = [
  1063. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1064. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1065. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1066. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1067. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1068. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1069. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1070. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1071. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1072. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1073. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1074. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1075. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1076. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1077. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1078. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1079. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1080. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1081. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1082. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1083. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1084. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1085. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1086. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1087. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1088. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1089. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1090. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1091. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1092. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1093. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1094. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1095. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1096. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1097. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1098. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1099. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1100. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1101. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1102. ];
  1103. //THU-IOE
  1104. U.MD.D.I.thuioeStudentDeskIcon = [
  1105. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1106. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1107. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1108. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1109. ];
  1110. //jccssyl
  1111. U.MD.D.I.jccssylTeacherDeskIcon = [
  1112. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1113. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1114. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1115. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1116. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1117. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1118. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1119. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1120. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1121. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1122. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1123. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1124. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1125. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1126. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1127. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1128. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1129. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1130. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1131. ];
  1132. //jccssyl
  1133. U.MD.D.I.jccssylStudentDeskIcon = [
  1134. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1135. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1136. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1138. ];
  1139. //cale
  1140. U.MD.D.I.caleTeacherDeskIcon = [
  1141. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1142. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1143. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1144. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1145. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1146. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1147. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1148. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1149. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1150. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1151. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1152. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1153. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1154. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1155. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1156. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1157. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1158. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1159. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1160. ];
  1161. //cale
  1162. U.MD.D.I.caleStudentDeskIcon = [
  1163. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1164. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1165. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1166. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1167. ];
  1168. //lqwmsgzs
  1169. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1170. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1171. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1172. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1173. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1174. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1175. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1176. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1177. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1178. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1179. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1180. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1181. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1182. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1183. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1184. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1185. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1186. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1187. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1188. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1189. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1190. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1191. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1192. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1193. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1194. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1195. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1196. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1197. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1198. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1199. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1200. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1201. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1202. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1203. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1204. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1205. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1206. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1207. ];
  1208. //lqwmsgzs
  1209. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1210. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1211. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1212. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1213. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1214. ];
  1215. //盐田区幼儿园
  1216. U.MD.D.I.ytyTeacherDeskIcon = [
  1217. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1218. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1219. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1220. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1221. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1222. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1223. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1224. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1226. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1227. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1228. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1229. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1230. ];
  1231. //盐田区幼儿园
  1232. U.MD.D.I.ytyStudentDeskIcon = [
  1233. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1234. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1235. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1236. ];
  1237. //scnuai
  1238. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1239. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1240. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1241. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1242. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1243. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1244. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1245. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1246. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1247. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1248. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1249. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1250. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1251. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1252. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1253. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1254. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1255. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1256. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1257. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1258. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1259. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1260. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1261. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1262. ];
  1263. //scnuai
  1264. U.MD.D.I.scnuaiAdminDeskIcon = [
  1265. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1266. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1267. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1268. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1269. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1270. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1271. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1272. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1273. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1274. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1275. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1276. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1277. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1278. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1279. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1280. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1281. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1282. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1283. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1284. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1285. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1286. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1287. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1288. ];
  1289. //scnuai
  1290. U.MD.D.I.scnuaiStudentDeskIcon = [
  1291. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1292. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1293. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1294. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1295. ];
  1296. //cocobiz
  1297. U.MD.D.I.cocobizteacherDeskIcon = [
  1298. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1299. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1300. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1301. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1302. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1303. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1304. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1305. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1306. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1307. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1308. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1309. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1310. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1311. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1312. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1313. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1314. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1315. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1316. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1317. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1318. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1319. ];
  1320. //cocobiz
  1321. U.MD.D.I.cocobizStudentDeskIcon = [
  1322. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1323. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1324. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1325. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1326. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1327. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1328. ];
  1329. //xxzjky
  1330. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1331. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1332. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1333. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1334. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1335. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1336. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1337. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1338. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1339. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1340. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1341. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1342. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1343. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1344. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1345. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1346. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1347. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1348. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1349. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1350. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1351. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1352. ];
  1353. //xxzjky
  1354. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1355. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1356. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1357. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1358. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1359. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1360. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1361. ];
  1362. //nsfx
  1363. U.MD.D.I.nsfxTeacherDeskIcon = [
  1364. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1365. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1366. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1367. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1368. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1369. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1370. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1371. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1372. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1373. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1374. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1375. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1376. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1377. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1378. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1379. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1380. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1381. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1382. ];
  1383. //nsfx
  1384. U.MD.D.I.nsfxStudentDeskIcon = [
  1385. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1386. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1387. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1388. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1389. ];
  1390. //stia
  1391. U.MD.D.I.stiaTeacherDeskIcon = [
  1392. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1393. // { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1394. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1395. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1396. // { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1397. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1398. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1399. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1400. // { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1401. // { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1402. // { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1403. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1404. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1405. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1406. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1407. ];
  1408. //stia
  1409. U.MD.D.I.stiaStudentDeskIcon = [
  1410. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1411. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1412. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1413. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1414. ];
  1415. //szdjg
  1416. U.MD.D.I.szdjgTeacherDeskIcon = [
  1417. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1418. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1419. ];
  1420. //szdjg
  1421. U.MD.D.I.szdjgStudentDeskIcon = [
  1422. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1423. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1424. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1425. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1426. ];
  1427. //010607
  1428. U.MD.D.I.x010607TeacherDeskIcon = [
  1429. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1430. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1431. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1432. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1433. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1434. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1435. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1436. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1437. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1438. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1439. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1440. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1441. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1442. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1443. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1444. ];
  1445. //010607
  1446. U.MD.D.I.x010607StudentDeskIcon = [
  1447. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1448. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1449. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1450. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1451. ];
  1452. //010608
  1453. U.MD.D.I.x010608TeacherDeskIcon = [
  1454. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1455. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1456. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1457. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1458. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1459. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1460. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1461. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1462. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1463. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1464. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1465. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1466. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1467. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1468. ];
  1469. //010608
  1470. U.MD.D.I.x010608StudentDeskIcon = [
  1471. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1472. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1473. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1474. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1475. ];
  1476. //xhly
  1477. U.MD.D.I.xhlyTeacherDeskIcon = [
  1478. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1479. ];
  1480. //010608
  1481. U.MD.D.I.xhlyStudentDeskIcon = [
  1482. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1483. ];
  1484. //北师大
  1485. U.MD.D.I.BSDNSteacherDeskIcon = [
  1486. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1487. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1488. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1489. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1490. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1491. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1492. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1493. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1494. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1495. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1496. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1497. ];
  1498. //北师大
  1499. U.MD.D.I.BSDNSstudentDeskIcon = [
  1500. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1501. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1502. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1503. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1504. ];
  1505. //CUHK_EDU
  1506. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1507. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1508. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1509. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1510. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1511. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1512. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1513. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1514. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1515. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1516. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1517. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1518. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1519. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1520. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1521. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1522. ];
  1523. //CUHK_EDU
  1524. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1525. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1526. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1527. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1528. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1529. ];
  1530. //010503
  1531. U.MD.D.I.x010503TeacherDeskIcon = [
  1532. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1533. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1534. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1535. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1536. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1537. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1538. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1539. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1540. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1541. ];
  1542. //010503
  1543. U.MD.D.I.x010503StudentDeskIcon = [
  1544. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1545. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1546. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1547. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1548. ];
  1549. //SPROUT Lab
  1550. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1551. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1552. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1553. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1554. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1555. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1556. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1557. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1558. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1559. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1560. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1561. ];
  1562. //SPROUT Lab
  1563. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1564. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1565. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1566. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1567. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1568. ];
  1569. //010204
  1570. U.MD.D.I.x010204TeacherDeskIcon = [
  1571. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1572. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1573. ];
  1574. //010204
  1575. U.MD.D.I.x010204StudentDeskIcon = [
  1576. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1577. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1578. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1579. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1580. ];
  1581. //trail
  1582. U.MD.D.I.trailTeacherDeskIcon = [
  1583. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1584. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1585. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1586. ];
  1587. //trail
  1588. U.MD.D.I.trailStudentDeskIcon = [
  1589. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1590. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1591. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1592. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1593. ];
  1594. //010504
  1595. U.MD.D.I.x010504TeacherDeskIcon = [
  1596. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1597. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1598. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1599. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1600. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1601. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1602. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1603. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1604. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1605. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1606. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1607. ];
  1608. //010504
  1609. U.MD.D.I.x010504StudentDeskIcon = [
  1610. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1611. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1612. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1613. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1614. ];
  1615. //SCNUET
  1616. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1617. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1618. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1619. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1620. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1621. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1622. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1623. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1624. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1625. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1626. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1627. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1628. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1629. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1630. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1631. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1632. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1633. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1634. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1635. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1636. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1637. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1638. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1639. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1640. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1641. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1642. ];
  1643. //SCNUET
  1644. U.MD.D.I.SCNUETAdminDeskIcon = [
  1645. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1646. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1647. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1648. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1649. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1650. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1651. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1652. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1653. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1654. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1655. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1656. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1657. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1658. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1659. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1660. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1661. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1662. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1663. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1664. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1665. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1666. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1667. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1668. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1669. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1670. ];
  1671. //SCNUET
  1672. U.MD.D.I.SCNUETStudentDeskIcon = [
  1673. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1674. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1675. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1676. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1677. ];
  1678. //x020201
  1679. U.MD.D.I.x020201TeacherDeskIcon = [
  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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1685. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1686. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1687. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1688. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1689. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1690. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1691. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1692. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1693. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1694. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1695. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1696. ];
  1697. //x020201
  1698. U.MD.D.I.x020201AdminDeskIcon = [
  1699. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1700. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1701. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1702. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1703. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1704. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1705. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1706. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1707. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1708. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1709. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1710. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1711. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1712. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1713. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1714. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1715. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1716. ];
  1717. //020201
  1718. U.MD.D.I.x020201StudentDeskIcon = [
  1719. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1720. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1721. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1722. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1723. ];
  1724. //010611
  1725. U.MD.D.I.x010611TeacherDeskIcon = [
  1726. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1727. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1728. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1729. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1730. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1731. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1732. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1733. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1734. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1735. ];
  1736. //010611
  1737. U.MD.D.I.x010611StudentDeskIcon = [
  1738. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1739. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1740. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1741. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1742. ];
  1743. //tianyuan
  1744. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1745. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1746. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1747. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1748. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1749. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1750. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1751. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1752. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1753. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1754. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1755. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1756. ];
  1757. //010611
  1758. U.MD.D.I.tianyuanStudentDeskIcon = [
  1759. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1760. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1761. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1762. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1763. ];
  1764. //320101
  1765. U.MD.D.I.x320101TeacherDeskIcon = [
  1766. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1767. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1768. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1769. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1770. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1771. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1772. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1773. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1774. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1775. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1776. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1777. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1778. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1779. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1780. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1781. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1782. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1783. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1784. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1785. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1786. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1787. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1788. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1789. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1790. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1791. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1792. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1793. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1794. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1795. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1796. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1797. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1798. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1799. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1800. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1801. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1802. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1803. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1804. ];
  1805. //320101
  1806. U.MD.D.I.x320101StudentDeskIcon = [
  1807. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1808. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1809. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1810. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1811. ];
  1812. //szsy
  1813. U.MD.D.I.szsyTeacherDeskIcon = [
  1814. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1815. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1816. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1817. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1818. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1819. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1820. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1821. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1822. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1823. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1824. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1825. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1826. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1827. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1828. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1829. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1830. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1831. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1832. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1833. ];
  1834. //szsy
  1835. U.MD.D.I.szsyStudentDeskIcon = [
  1836. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1837. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1838. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1839. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1840. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1841. ];
  1842. //#region 桌面初始化a
  1843. /**
  1844. * 初始化桌面的起始函数
  1845. *
  1846. */
  1847. U.MD.D.I.init = function () {
  1848. if ($("#U_MD_D_K")[0]) {
  1849. //初始化桌面图标
  1850. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1851. // var clickUrl = ':12588/requestIp.php';
  1852. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1853. // U.MD.D.I.Ip = data;
  1854. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1855. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1856. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1857. // })
  1858. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1859. // })
  1860. }
  1861. }
  1862. /**
  1863. * 模式切换
  1864. *
  1865. */
  1866. U.MD.D.I.ModeCheck = function (type) {
  1867. if (US.Config.type == type) {
  1868. return
  1869. }
  1870. US.Config.type = type
  1871. $('.U_PBL_Check .active')[0].className = ''
  1872. if (type == 1) {
  1873. $('.U_PBL_Check div')[0].className = 'active'
  1874. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1875. } else {
  1876. $('.U_PBL_Check div')[1].className = 'active'
  1877. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1878. }
  1879. //初始化桌面图标
  1880. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1881. if (type == 2) {
  1882. U.MD.D.I.openApplication("project")
  1883. }
  1884. }
  1885. /**
  1886. * 隐藏任务栏
  1887. *
  1888. * @param {element} 桌面元素
  1889. */
  1890. U.MD.D.I.hiddenTaskbar = function (el) {
  1891. //任务栏位置变小
  1892. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1893. //桌面的位置变大
  1894. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1895. }
  1896. /**
  1897. * 隐藏任务栏
  1898. *
  1899. * @param {element} 桌面元素
  1900. */
  1901. U.MD.D.I.hiddenTaskbarout = function (el) {
  1902. //任务栏位置变小
  1903. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1904. //任务栏位置变化
  1905. U.selectEl(el).css({ "bottom": "-60px" });
  1906. //桌面的位置变大
  1907. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1908. }
  1909. }
  1910. /**
  1911. * 初始化打印桌面图标
  1912. *
  1913. * @param {element} 桌面元素
  1914. */
  1915. U.MD.D.I.initDesktopIcons = function (el, type) {
  1916. var i, //用于循环
  1917. _content, //桌面图标元素
  1918. _iconcontent, //桌面图标元素
  1919. _frag = $$("frag"), //定义一个碎片元素
  1920. _type = US.userInfo.type,
  1921. _org = US.userInfo.org,
  1922. _oid = US.userInfo.organizeid,
  1923. _role = US.userInfo.role,
  1924. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1925. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1926. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1927. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1928. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1929. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1930. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1931. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1932. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1933. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1934. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1935. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1936. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1937. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1938. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1939. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1940. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1941. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1942. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1943. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1944. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1945. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1946. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1947. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1948. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1949. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1950. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1951. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1952. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1953. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1954. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1955. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1956. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1957. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1958. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1959. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1960. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1961. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1962. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1963. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1964. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1965. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1966. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1967. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1968. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1969. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1970. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1971. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1972. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1973. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1974. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1975. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1976. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1977. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1978. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1979. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1980. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1981. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1982. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1983. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1984. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1985. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1986. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1987. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1988. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1989. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1990. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1991. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1992. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1993. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1994. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1995. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1996. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1997. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1998. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1999. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  2000. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2001. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2002. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2003. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2004. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2005. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2006. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2007. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2008. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2009. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2010. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2011. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2012. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2013. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2014. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2015. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2016. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2017. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2018. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2019. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2020. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2021. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2022. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2023. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2024. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2025. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2026. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2027. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2028. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2029. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2030. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2031. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2032. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2033. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2034. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2035. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2036. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2037. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2038. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  2039. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263','8a352da2-56e1-11ef-b873-005056b86db5','9b46a3c9-7657-11ef-9b30-005056b86db5','857af1c7-c8ee-4b04-85b5-fd182903adb7','876030db-7a49-11ef-9b30-005056b86db5','b97fc213-86a9-11ef-9b30-005056b86db5', 'c636f63e-86f4-11ef-9b30-005056b86db5','6c16df93-8849-11ef-9b30-005056b86db5','72c16ee0-89fe-11ef-9b30-005056b86db5','369222a8-cddd-11ed-9546-005056b86db5','3fc7840d-a1c4-11ef-9b30-005056b86db5','2c5d4971-ed9e-11ef-b508-005056924926'];
  2040. 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'];
  2041. //清楚桌面图标
  2042. el.innerHTML = "";
  2043. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2044. _teacherDesktopIconInfo.push(
  2045. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2046. { "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)" } },
  2047. )
  2048. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2049. }
  2050. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5' || _org == '4d3812ef-fa66-11ef-b508-005056924926') {
  2051. _teacherDesktopIconInfo.push(
  2052. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2053. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2054. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2055. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2056. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2057. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2058. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2059. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2060. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2061. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2062. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2063. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2064. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2065. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2066. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2067. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2068. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2069. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2070. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2071. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2072. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2073. )
  2074. }
  2075. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2076. _teacherDesktopIconInfo.push(
  2077. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2078. )
  2079. }
  2080. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2081. // _teacherDesktopIconInfo.push(
  2082. // )
  2083. // }
  2084. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2085. _teacherDesktopIconInfo.push(
  2086. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2087. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2088. )
  2089. }
  2090. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2091. _teacherDesktopIconInfo.push(
  2092. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2093. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2094. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2095. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2096. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2097. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2098. )
  2099. _studentDesktopIconInfo.push(
  2100. )
  2101. }
  2102. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2103. _teacherDesktopIconInfo.push(
  2104. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2105. )
  2106. _studentDesktopIconInfo.push(
  2107. )
  2108. }
  2109. //010606 组织
  2110. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2111. _teacherDesktopIconInfo.push(
  2112. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2113. )
  2114. _studentDesktopIconInfo.push(
  2115. )
  2116. }
  2117. //麒麟二中 和 民新小学
  2118. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2119. _teacherDesktopIconInfo.push(
  2120. )
  2121. }
  2122. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2123. _teacherDesktopIconInfo.push(
  2124. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2125. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2126. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2127. )
  2128. }
  2129. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2130. _hkTeacherDeskIconInfo.push(
  2131. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2132. )
  2133. }
  2134. //北师大附中(010601)
  2135. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2136. // _teacherDesktopIconInfo.push(
  2137. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2138. // )
  2139. // _studentDesktopIconInfo.push(
  2140. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2141. // )
  2142. // }
  2143. //樂善堂余近卿中學
  2144. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2145. _teacherDesktopIconInfo.push(
  2146. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2147. )
  2148. }
  2149. // Education Artificial Intelligence
  2150. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2151. _teacherDesktopIconInfo.push(
  2152. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2153. )
  2154. }
  2155. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2156. _teacherDesktopIconInfo.push(
  2157. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2158. )
  2159. }
  2160. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2161. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2162. _teacherDesktopIconInfo.push(
  2163. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2164. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2165. )
  2166. }
  2167. //麒麟二中
  2168. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2169. _studentDesktopIconInfo.push(
  2170. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2171. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2172. )
  2173. }
  2174. //万科双语
  2175. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2176. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2177. if (el.Name == '项目管理') {
  2178. el.Name = 'PBL项目'
  2179. }
  2180. return el
  2181. })
  2182. _studentDesktopIconInfo3.push(
  2183. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2184. )
  2185. }
  2186. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2187. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2188. return el.Name != '魔盒识字' && el.Name != '24点'
  2189. })
  2190. }
  2191. 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) {
  2192. _studentDesktopIconInfo.push(
  2193. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2194. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2195. )
  2196. }
  2197. //循环创建桌面图标
  2198. if (type == 1) {
  2199. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2200. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2201. _content = $$("div", {
  2202. className: "U_MD_D_KO",
  2203. "onmousedown": U.UF.C.closure(function (obj) {
  2204. //防止拖动图标即打开了桌面应用
  2205. U.MD.D.click(this, obj);
  2206. }, [_studentDesktopIconInfo[i]]),
  2207. "onclick": U.UF.C.closure(function (obj) {
  2208. //防止拖动图标即打开了桌面应用
  2209. U.MD.D.click(this, obj);
  2210. }, [_studentDesktopIconInfo[i]])
  2211. }, _frag); //
  2212. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2213. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2214. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2215. }
  2216. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2217. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2218. _content = $$("div", {
  2219. className: "U_MD_D_KO",
  2220. "onmousedown": U.UF.C.closure(function (obj) {
  2221. //防止拖动图标即打开了桌面应用
  2222. U.MD.D.click(this, obj);
  2223. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2224. "onclick": U.UF.C.closure(function (obj) {
  2225. //防止拖动图标即打开了桌面应用
  2226. U.MD.D.click(this, obj);
  2227. }, [_hkZJLSStudentDeskIconInfo[i]])
  2228. }, _frag); //
  2229. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2230. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2231. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2232. } //
  2233. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2234. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2235. _content = $$("div", {
  2236. className: "U_MD_D_KO",
  2237. "onmousedown": U.UF.C.closure(function (obj) {
  2238. //防止拖动图标即打开了桌面应用
  2239. U.MD.D.click(this, obj);
  2240. }, [_ytyStudentDeskIconInfo[i]]),
  2241. "onclick": U.UF.C.closure(function (obj) {
  2242. //防止拖动图标即打开了桌面应用
  2243. U.MD.D.click(this, obj);
  2244. }, [_ytyStudentDeskIconInfo[i]])
  2245. }, _frag); //
  2246. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2247. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2248. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2249. } //
  2250. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2251. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2252. _content = $$("div", {
  2253. className: "U_MD_D_KO",
  2254. "onmousedown": U.UF.C.closure(function (obj) {
  2255. //防止拖动图标即打开了桌面应用
  2256. U.MD.D.click(this, obj);
  2257. }, [_jccssylStudentDeskIconInfo[i]]),
  2258. "onclick": U.UF.C.closure(function (obj) {
  2259. //防止拖动图标即打开了桌面应用
  2260. U.MD.D.click(this, obj);
  2261. }, [_jccssylStudentDeskIconInfo[i]])
  2262. }, _frag); //
  2263. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2264. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2265. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2266. }
  2267. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2268. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2269. _content = $$("div", {
  2270. className: "U_MD_D_KO",
  2271. "onmousedown": U.UF.C.closure(function (obj) {
  2272. //防止拖动图标即打开了桌面应用
  2273. U.MD.D.click(this, obj);
  2274. }, [_scnuaiStudentDeskIconInfo[i]]),
  2275. "onclick": U.UF.C.closure(function (obj) {
  2276. //防止拖动图标即打开了桌面应用
  2277. U.MD.D.click(this, obj);
  2278. }, [_scnuaiStudentDeskIconInfo[i]])
  2279. }, _frag); //
  2280. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2281. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2282. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2283. }
  2284. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2285. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2286. _content = $$("div", {
  2287. className: "U_MD_D_KO",
  2288. "onmousedown": U.UF.C.closure(function (obj) {
  2289. //防止拖动图标即打开了桌面应用
  2290. U.MD.D.click(this, obj);
  2291. }, [_caleStudentDeskIconInfo[i]]),
  2292. "onclick": U.UF.C.closure(function (obj) {
  2293. //防止拖动图标即打开了桌面应用
  2294. U.MD.D.click(this, obj);
  2295. }, [_caleStudentDeskIconInfo[i]])
  2296. }, _frag); //
  2297. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2298. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2299. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2300. }
  2301. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2302. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2303. _content = $$("div", {
  2304. className: "U_MD_D_KO",
  2305. "onmousedown": U.UF.C.closure(function (obj) {
  2306. //防止拖动图标即打开了桌面应用
  2307. U.MD.D.click(this, obj);
  2308. }, [_thuioeStudentDeskIconInfo[i]]),
  2309. "onclick": U.UF.C.closure(function (obj) {
  2310. //防止拖动图标即打开了桌面应用
  2311. U.MD.D.click(this, obj);
  2312. }, [_thuioeStudentDeskIconInfo[i]])
  2313. }, _frag); //
  2314. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2315. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2316. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2317. }
  2318. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2319. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2320. _content = $$("div", {
  2321. className: "U_MD_D_KO",
  2322. "onmousedown": U.UF.C.closure(function (obj) {
  2323. //防止拖动图标即打开了桌面应用
  2324. U.MD.D.click(this, obj);
  2325. }, [_tpcStudentDeskIconInfo[i]]),
  2326. "onclick": U.UF.C.closure(function (obj) {
  2327. //防止拖动图标即打开了桌面应用
  2328. U.MD.D.click(this, obj);
  2329. }, [_tpcStudentDeskIconInfo[i]])
  2330. }, _frag); //
  2331. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2332. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2333. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2334. } //
  2335. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2336. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2337. _content = $$("div", {
  2338. className: "U_MD_D_KO",
  2339. "onmousedown": U.UF.C.closure(function (obj) {
  2340. //防止拖动图标即打开了桌面应用
  2341. U.MD.D.click(this, obj);
  2342. }, [_chjyjStudentDeskIconInfo[i]]),
  2343. "onclick": U.UF.C.closure(function (obj) {
  2344. //防止拖动图标即打开了桌面应用
  2345. U.MD.D.click(this, obj);
  2346. }, [_chjyjStudentDeskIconInfo[i]])
  2347. }, _frag); //
  2348. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2349. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2350. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2351. }
  2352. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2353. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2354. _content = $$("div", {
  2355. className: "U_MD_D_KO",
  2356. "onmousedown": U.UF.C.closure(function (obj) {
  2357. //防止拖动图标即打开了桌面应用
  2358. U.MD.D.click(this, obj);
  2359. }, [_szjkyStudentDeskIconInfo[i]]),
  2360. "onclick": U.UF.C.closure(function (obj) {
  2361. //防止拖动图标即打开了桌面应用
  2362. U.MD.D.click(this, obj);
  2363. }, [_szjkyStudentDeskIconInfo[i]])
  2364. }, _frag); //
  2365. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2366. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2367. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2368. }
  2369. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2370. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2371. _content = $$("div", {
  2372. className: "U_MD_D_KO",
  2373. "onmousedown": U.UF.C.closure(function (obj) {
  2374. //防止拖动图标即打开了桌面应用
  2375. U.MD.D.click(this, obj);
  2376. }, [_x020201StudentDeskIconInfo[i]]),
  2377. "onclick": U.UF.C.closure(function (obj) {
  2378. //防止拖动图标即打开了桌面应用
  2379. U.MD.D.click(this, obj);
  2380. }, [_x020201StudentDeskIconInfo[i]])
  2381. }, _frag); //
  2382. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2383. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2384. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2385. }
  2386. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2387. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2388. _content = $$("div", {
  2389. className: "U_MD_D_KO",
  2390. "onmousedown": U.UF.C.closure(function (obj) {
  2391. //防止拖动图标即打开了桌面应用
  2392. U.MD.D.click(this, obj);
  2393. }, [_SCNUETStudentDeskIconInfo[i]]),
  2394. "onclick": U.UF.C.closure(function (obj) {
  2395. //防止拖动图标即打开了桌面应用
  2396. U.MD.D.click(this, obj);
  2397. }, [_SCNUETStudentDeskIconInfo[i]])
  2398. }, _frag); //
  2399. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2400. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2401. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2402. }
  2403. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2404. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2405. _content = $$("div", {
  2406. className: "U_MD_D_KO",
  2407. "onmousedown": U.UF.C.closure(function (obj) {
  2408. //防止拖动图标即打开了桌面应用
  2409. U.MD.D.click(this, obj);
  2410. }, [_dseiStudentDeskIconInfo[i]]),
  2411. "onclick": U.UF.C.closure(function (obj) {
  2412. //防止拖动图标即打开了桌面应用
  2413. U.MD.D.click(this, obj);
  2414. }, [_dseiStudentDeskIconInfo[i]])
  2415. }, _frag); //
  2416. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2417. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2418. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2419. }
  2420. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2421. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2422. _content = $$("div", {
  2423. className: "U_MD_D_KO",
  2424. "onmousedown": U.UF.C.closure(function (obj) {
  2425. //防止拖动图标即打开了桌面应用
  2426. U.MD.D.click(this, obj);
  2427. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2428. "onclick": U.UF.C.closure(function (obj) {
  2429. //防止拖动图标即打开了桌面应用
  2430. U.MD.D.click(this, obj);
  2431. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2432. }, _frag); //
  2433. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2434. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2435. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2436. }
  2437. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2438. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2439. _content = $$("div", {
  2440. className: "U_MD_D_KO",
  2441. "onmousedown": U.UF.C.closure(function (obj) {
  2442. //防止拖动图标即打开了桌面应用
  2443. U.MD.D.click(this, obj);
  2444. }, [_nsfxStudentDeskIconInfo[i]]),
  2445. "onclick": U.UF.C.closure(function (obj) {
  2446. //防止拖动图标即打开了桌面应用
  2447. U.MD.D.click(this, obj);
  2448. }, [_nsfxStudentDeskIconInfo[i]])
  2449. }, _frag); //
  2450. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2451. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2452. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2453. }
  2454. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2455. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2456. _content = $$("div", {
  2457. className: "U_MD_D_KO",
  2458. "onmousedown": U.UF.C.closure(function (obj) {
  2459. //防止拖动图标即打开了桌面应用
  2460. U.MD.D.click(this, obj);
  2461. }, [_stiaStudentDeskIconInfo[i]]),
  2462. "onclick": U.UF.C.closure(function (obj) {
  2463. //防止拖动图标即打开了桌面应用
  2464. U.MD.D.click(this, obj);
  2465. }, [_stiaStudentDeskIconInfo[i]])
  2466. }, _frag); //
  2467. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2468. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2469. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2470. }
  2471. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2472. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2473. _content = $$("div", {
  2474. className: "U_MD_D_KO",
  2475. "onmousedown": U.UF.C.closure(function (obj) {
  2476. //防止拖动图标即打开了桌面应用
  2477. U.MD.D.click(this, obj);
  2478. }, [_szdjgStudentDeskIconInfo[i]]),
  2479. "onclick": U.UF.C.closure(function (obj) {
  2480. //防止拖动图标即打开了桌面应用
  2481. U.MD.D.click(this, obj);
  2482. }, [_szdjgStudentDeskIconInfo[i]])
  2483. }, _frag); //
  2484. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2485. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2486. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2487. }
  2488. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2489. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2490. _content = $$("div", {
  2491. className: "U_MD_D_KO",
  2492. "onmousedown": U.UF.C.closure(function (obj) {
  2493. //防止拖动图标即打开了桌面应用
  2494. U.MD.D.click(this, obj);
  2495. }, [_x010607StudentDeskIconInfo[i]]),
  2496. "onclick": U.UF.C.closure(function (obj) {
  2497. //防止拖动图标即打开了桌面应用
  2498. U.MD.D.click(this, obj);
  2499. }, [_x010607StudentDeskIconInfo[i]])
  2500. }, _frag); //
  2501. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2502. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2503. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2504. }
  2505. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2506. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2507. _content = $$("div", {
  2508. className: "U_MD_D_KO",
  2509. "onmousedown": U.UF.C.closure(function (obj) {
  2510. //防止拖动图标即打开了桌面应用
  2511. U.MD.D.click(this, obj);
  2512. }, [_xhlyStudentDeskIconInfo[i]]),
  2513. "onclick": U.UF.C.closure(function (obj) {
  2514. //防止拖动图标即打开了桌面应用
  2515. U.MD.D.click(this, obj);
  2516. }, [_xhlyStudentDeskIconInfo[i]])
  2517. }, _frag); //
  2518. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2519. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2520. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2521. }
  2522. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2523. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2524. _content = $$("div", {
  2525. className: "U_MD_D_KO",
  2526. "onmousedown": U.UF.C.closure(function (obj) {
  2527. //防止拖动图标即打开了桌面应用
  2528. U.MD.D.click(this, obj);
  2529. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2530. "onclick": U.UF.C.closure(function (obj) {
  2531. //防止拖动图标即打开了桌面应用
  2532. U.MD.D.click(this, obj);
  2533. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2534. }, _frag); //
  2535. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2536. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2537. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2538. }
  2539. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2540. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2541. _content = $$("div", {
  2542. className: "U_MD_D_KO",
  2543. "onmousedown": U.UF.C.closure(function (obj) {
  2544. //防止拖动图标即打开了桌面应用
  2545. U.MD.D.click(this, obj);
  2546. }, [_x010503StudentDeskIconInfo[i]]),
  2547. "onclick": U.UF.C.closure(function (obj) {
  2548. //防止拖动图标即打开了桌面应用
  2549. U.MD.D.click(this, obj);
  2550. }, [_x010503StudentDeskIconInfo[i]])
  2551. }, _frag); //
  2552. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2553. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2554. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2555. }
  2556. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2557. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2558. _content = $$("div", {
  2559. className: "U_MD_D_KO",
  2560. "onmousedown": U.UF.C.closure(function (obj) {
  2561. //防止拖动图标即打开了桌面应用
  2562. U.MD.D.click(this, obj);
  2563. }, [_x010504StudentDeskIconInfo[i]]),
  2564. "onclick": U.UF.C.closure(function (obj) {
  2565. //防止拖动图标即打开了桌面应用
  2566. U.MD.D.click(this, obj);
  2567. }, [_x010504StudentDeskIconInfo[i]])
  2568. }, _frag); //
  2569. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2570. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2571. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2572. }
  2573. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2574. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2575. _content = $$("div", {
  2576. className: "U_MD_D_KO",
  2577. "onmousedown": U.UF.C.closure(function (obj) {
  2578. //防止拖动图标即打开了桌面应用
  2579. U.MD.D.click(this, obj);
  2580. }, [_x010204StudentDeskIconInfo[i]]),
  2581. "onclick": U.UF.C.closure(function (obj) {
  2582. //防止拖动图标即打开了桌面应用
  2583. U.MD.D.click(this, obj);
  2584. }, [_x010204StudentDeskIconInfo[i]])
  2585. }, _frag); //
  2586. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2587. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2588. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2589. }
  2590. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2591. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2592. _content = $$("div", {
  2593. className: "U_MD_D_KO",
  2594. "onmousedown": U.UF.C.closure(function (obj) {
  2595. //防止拖动图标即打开了桌面应用
  2596. U.MD.D.click(this, obj);
  2597. }, [_x320101StudentDeskIconInfo[i]]),
  2598. "onclick": U.UF.C.closure(function (obj) {
  2599. //防止拖动图标即打开了桌面应用
  2600. U.MD.D.click(this, obj);
  2601. }, [_x320101StudentDeskIconInfo[i]])
  2602. }, _frag); //
  2603. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2604. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2605. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2606. }
  2607. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2608. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2609. _content = $$("div", {
  2610. className: "U_MD_D_KO",
  2611. "onmousedown": U.UF.C.closure(function (obj) {
  2612. //防止拖动图标即打开了桌面应用
  2613. U.MD.D.click(this, obj);
  2614. }, [_trailStudentDeskIconInfo[i]]),
  2615. "onclick": U.UF.C.closure(function (obj) {
  2616. //防止拖动图标即打开了桌面应用
  2617. U.MD.D.click(this, obj);
  2618. }, [_trailStudentDeskIconInfo[i]])
  2619. }, _frag); //
  2620. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2621. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2622. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2623. }
  2624. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2625. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2626. _content = $$("div", {
  2627. className: "U_MD_D_KO",
  2628. "onmousedown": U.UF.C.closure(function (obj) {
  2629. //防止拖动图标即打开了桌面应用
  2630. U.MD.D.click(this, obj);
  2631. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2632. "onclick": U.UF.C.closure(function (obj) {
  2633. //防止拖动图标即打开了桌面应用
  2634. U.MD.D.click(this, obj);
  2635. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2636. }, _frag); //
  2637. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2638. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2639. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2640. }
  2641. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2642. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2643. _content = $$("div", {
  2644. className: "U_MD_D_KO",
  2645. "onmousedown": U.UF.C.closure(function (obj) {
  2646. //防止拖动图标即打开了桌面应用
  2647. U.MD.D.click(this, obj);
  2648. }, [_szsyStudentDeskIconInfo[i]]),
  2649. "onclick": U.UF.C.closure(function (obj) {
  2650. //防止拖动图标即打开了桌面应用
  2651. U.MD.D.click(this, obj);
  2652. }, [_szsyStudentDeskIconInfo[i]])
  2653. }, _frag); //
  2654. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2655. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2656. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2657. }
  2658. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2659. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2660. _content = $$("div", {
  2661. className: "U_MD_D_KO",
  2662. "onmousedown": U.UF.C.closure(function (obj) {
  2663. //防止拖动图标即打开了桌面应用
  2664. U.MD.D.click(this, obj);
  2665. }, [_x010608StudentDeskIconInfo[i]]),
  2666. "onclick": U.UF.C.closure(function (obj) {
  2667. //防止拖动图标即打开了桌面应用
  2668. U.MD.D.click(this, obj);
  2669. }, [_x010608StudentDeskIconInfo[i]])
  2670. }, _frag); //
  2671. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2672. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2673. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2674. }
  2675. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2676. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2677. _content = $$("div", {
  2678. className: "U_MD_D_KO",
  2679. "onmousedown": U.UF.C.closure(function (obj) {
  2680. //防止拖动图标即打开了桌面应用
  2681. U.MD.D.click(this, obj);
  2682. }, [_x010611StudentDeskIconInfo[i]]),
  2683. "onclick": U.UF.C.closure(function (obj) {
  2684. //防止拖动图标即打开了桌面应用
  2685. U.MD.D.click(this, obj);
  2686. }, [_x010611StudentDeskIconInfo[i]])
  2687. }, _frag); //
  2688. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2689. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2690. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2691. }
  2692. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2693. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2694. _content = $$("div", {
  2695. className: "U_MD_D_KO",
  2696. "onmousedown": U.UF.C.closure(function (obj) {
  2697. //防止拖动图标即打开了桌面应用
  2698. U.MD.D.click(this, obj);
  2699. }, [_tianyuantudentDeskIconInfo[i]]),
  2700. "onclick": U.UF.C.closure(function (obj) {
  2701. //防止拖动图标即打开了桌面应用
  2702. U.MD.D.click(this, obj);
  2703. }, [_tianyuantudentDeskIconInfo[i]])
  2704. }, _frag); //
  2705. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2706. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2707. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2708. }
  2709. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2710. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2711. _content = $$("div", {
  2712. className: "U_MD_D_KO",
  2713. "onmousedown": U.UF.C.closure(function (obj) {
  2714. //防止拖动图标即打开了桌面应用
  2715. U.MD.D.click(this, obj);
  2716. }, [_siesStudentDeskIconInfo[i]]),
  2717. "onclick": U.UF.C.closure(function (obj) {
  2718. //防止拖动图标即打开了桌面应用
  2719. U.MD.D.click(this, obj);
  2720. }, [_siesStudentDeskIconInfo[i]])
  2721. }, _frag); //
  2722. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2723. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2724. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2725. }
  2726. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2727. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2728. _content = $$("div", {
  2729. className: "U_MD_D_KO",
  2730. "onmousedown": U.UF.C.closure(function (obj) {
  2731. //防止拖动图标即打开了桌面应用
  2732. U.MD.D.click(this, obj);
  2733. }, [_guzmsStudentDeskIconInfo[i]]),
  2734. "onclick": U.UF.C.closure(function (obj) {
  2735. //防止拖动图标即打开了桌面应用
  2736. U.MD.D.click(this, obj);
  2737. }, [_guzmsStudentDeskIconInfo[i]])
  2738. }, _frag); //
  2739. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2740. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2741. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2742. }
  2743. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2744. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2745. _content = $$("div", {
  2746. className: "U_MD_D_KO",
  2747. "onmousedown": U.UF.C.closure(function (obj) {
  2748. //防止拖动图标即打开了桌面应用
  2749. U.MD.D.click(this, obj);
  2750. }, [_hkStudentDeskIconInfo[i]]),
  2751. "onclick": U.UF.C.closure(function (obj) {
  2752. //防止拖动图标即打开了桌面应用
  2753. U.MD.D.click(this, obj);
  2754. }, [_hkStudentDeskIconInfo[i]])
  2755. }, _frag); //
  2756. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2757. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2758. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2759. }
  2760. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2761. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2762. _content = $$("div", {
  2763. className: "U_MD_D_KO",
  2764. "onmousedown": U.UF.C.closure(function (obj) {
  2765. //防止拖动图标即打开了桌面应用
  2766. U.MD.D.click(this, obj);
  2767. }, [_hkaceStudentDeskIconInfo[i]]),
  2768. "onclick": U.UF.C.closure(function (obj) {
  2769. //防止拖动图标即打开了桌面应用
  2770. U.MD.D.click(this, obj);
  2771. }, [_hkaceStudentDeskIconInfo[i]])
  2772. }, _frag); //
  2773. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2774. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2775. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2776. }
  2777. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2778. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2779. _content = $$("div", {
  2780. className: "U_MD_D_KO",
  2781. "onmousedown": U.UF.C.closure(function (obj) {
  2782. //防止拖动图标即打开了桌面应用
  2783. U.MD.D.click(this, obj);
  2784. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2785. "onclick": U.UF.C.closure(function (obj) {
  2786. //防止拖动图标即打开了桌面应用
  2787. U.MD.D.click(this, obj);
  2788. }, [_BSDNSstudentDesktopIconInfo[i]])
  2789. }, _frag); //
  2790. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2791. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2792. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2793. }
  2794. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2795. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2796. _content = $$("div", {
  2797. className: "U_MD_D_KO",
  2798. "onmousedown": U.UF.C.closure(function (obj) {
  2799. //防止拖动图标即打开了桌面应用
  2800. U.MD.D.click(this, obj);
  2801. }, [_cocobizStudentDeskIconInfo[i]]),
  2802. "onclick": U.UF.C.closure(function (obj) {
  2803. //防止拖动图标即打开了桌面应用
  2804. U.MD.D.click(this, obj);
  2805. }, [_cocobizStudentDeskIconInfo[i]])
  2806. }, _frag); //
  2807. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2808. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2809. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2810. }
  2811. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2812. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2813. _content = $$("div", {
  2814. className: "U_MD_D_KO",
  2815. "onmousedown": U.UF.C.closure(function (obj) {
  2816. //防止拖动图标即打开了桌面应用
  2817. U.MD.D.click(this, obj);
  2818. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2819. "onclick": U.UF.C.closure(function (obj) {
  2820. //防止拖动图标即打开了桌面应用
  2821. U.MD.D.click(this, obj);
  2822. }, [_xxzjkyStudentDeskIconInfo[i]])
  2823. }, _frag); //
  2824. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2825. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2826. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2827. }
  2828. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2829. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2830. _content = $$("div", {
  2831. className: "U_MD_D_KO",
  2832. "onmousedown": U.UF.C.closure(function (obj) {
  2833. //防止拖动图标即打开了桌面应用
  2834. U.MD.D.click(this, obj);
  2835. }, [_studentDesktopIconInfo[i]]),
  2836. "onclick": U.UF.C.closure(function (obj) {
  2837. //防止拖动图标即打开了桌面应用
  2838. U.MD.D.click(this, obj);
  2839. }, [_studentDesktopIconInfo[i]])
  2840. }, _frag); //
  2841. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2842. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2843. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2844. }
  2845. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2846. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2847. _content = $$("div", {
  2848. className: "U_MD_D_KO",
  2849. "onmousedown": U.UF.C.closure(function (obj) {
  2850. //防止拖动图标即打开了桌面应用
  2851. U.MD.D.click(this, obj);
  2852. }, [_tcStudentDeskIconInfo[i]]),
  2853. "onclick": U.UF.C.closure(function (obj) {
  2854. //防止拖动图标即打开了桌面应用
  2855. U.MD.D.click(this, obj);
  2856. }, [_tcStudentDeskIconInfo[i]])
  2857. }, _frag); //
  2858. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2859. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2860. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2861. }
  2862. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2863. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2864. _content = $$("div", {
  2865. className: "U_MD_D_KO",
  2866. "onmousedown": U.UF.C.closure(function (obj) {
  2867. //防止拖动图标即打开了桌面应用
  2868. U.MD.D.click(this, obj);
  2869. }, [_szscStudentDeskIconInfo[i]]),
  2870. "onclick": U.UF.C.closure(function (obj) {
  2871. //防止拖动图标即打开了桌面应用
  2872. U.MD.D.click(this, obj);
  2873. }, [_szscStudentDeskIconInfo[i]])
  2874. }, _frag); //
  2875. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2876. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2877. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2878. }
  2879. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2880. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2881. _content = $$("div", {
  2882. className: "U_MD_D_KO",
  2883. "onmousedown": U.UF.C.closure(function (obj) {
  2884. //防止拖动图标即打开了桌面应用
  2885. U.MD.D.click(this, obj);
  2886. }, [_studentDesktopIconInfo3[i]]),
  2887. "onclick": U.UF.C.closure(function (obj) {
  2888. //防止拖动图标即打开了桌面应用
  2889. U.MD.D.click(this, obj);
  2890. }, [_studentDesktopIconInfo3[i]])
  2891. }, _frag); //
  2892. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2893. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2894. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2895. }
  2896. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2897. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2898. _content = $$("div", {
  2899. className: "U_MD_D_KO",
  2900. "onmousedown": U.UF.C.closure(function (obj) {
  2901. //防止拖动图标即打开了桌面应用
  2902. U.MD.D.click(this, obj);
  2903. }, [_studentDesktopIconInfo2[i]]),
  2904. "onclick": U.UF.C.closure(function (obj) {
  2905. //防止拖动图标即打开了桌面应用
  2906. U.MD.D.click(this, obj);
  2907. }, [_studentDesktopIconInfo2[i]])
  2908. }, _frag); //
  2909. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2910. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2911. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2912. }
  2913. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2914. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2915. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2916. continue
  2917. }
  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. }, [_wanketeacherDesktopIconInfo[i]]),
  2924. "onclick": U.UF.C.closure(function (obj) {
  2925. //防止拖动图标即打开了桌面应用
  2926. U.MD.D.click(this, obj);
  2927. }, [_wanketeacherDesktopIconInfo[i]])
  2928. }, _frag); //
  2929. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2930. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2931. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2932. }
  2933. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2934. for (i = 0; i < _wankeAdminDesktopIconInfo.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. }, [_wankeAdminDesktopIconInfo[i]]),
  2941. "onclick": U.UF.C.closure(function (obj) {
  2942. //防止拖动图标即打开了桌面应用
  2943. U.MD.D.click(this, obj);
  2944. }, [_wankeAdminDesktopIconInfo[i]])
  2945. }, _frag); //
  2946. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2947. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2948. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2949. }
  2950. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2951. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2952. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2953. continue
  2954. }
  2955. _content = $$("div", {
  2956. className: "U_MD_D_KO",
  2957. "onmousedown": U.UF.C.closure(function (obj) {
  2958. //防止拖动图标即打开了桌面应用
  2959. U.MD.D.click(this, obj);
  2960. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2961. "onclick": U.UF.C.closure(function (obj) {
  2962. //防止拖动图标即打开了桌面应用
  2963. U.MD.D.click(this, obj);
  2964. }, [_scnuaiTeacherDeskIconInfo[i]])
  2965. }, _frag); //
  2966. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2967. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2968. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2969. }
  2970. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2971. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2972. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2973. continue
  2974. }
  2975. _content = $$("div", {
  2976. className: "U_MD_D_KO",
  2977. "onmousedown": U.UF.C.closure(function (obj) {
  2978. //防止拖动图标即打开了桌面应用
  2979. U.MD.D.click(this, obj);
  2980. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2981. "onclick": U.UF.C.closure(function (obj) {
  2982. //防止拖动图标即打开了桌面应用
  2983. U.MD.D.click(this, obj);
  2984. }, [_BSDNSteacherDesktopIconInfo[i]])
  2985. }, _frag); //
  2986. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2987. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2988. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2989. }
  2990. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2991. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2992. _content = $$("div", {
  2993. className: "U_MD_D_KO",
  2994. "onmousedown": U.UF.C.closure(function (obj) {
  2995. //防止拖动图标即打开了桌面应用
  2996. U.MD.D.click(this, obj);
  2997. }, [_scnuaiAdminDeskIconInfo[i]]),
  2998. "onclick": U.UF.C.closure(function (obj) {
  2999. //防止拖动图标即打开了桌面应用
  3000. U.MD.D.click(this, obj);
  3001. }, [_scnuaiAdminDeskIconInfo[i]])
  3002. }, _frag); //
  3003. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3004. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3005. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3006. }
  3007. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3008. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3009. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3010. continue
  3011. }
  3012. _content = $$("div", {
  3013. className: "U_MD_D_KO",
  3014. "onmousedown": U.UF.C.closure(function (obj) {
  3015. //防止拖动图标即打开了桌面应用
  3016. U.MD.D.click(this, obj);
  3017. }, [_jccssylTeacherDeskIconInfo[i]]),
  3018. "onclick": U.UF.C.closure(function (obj) {
  3019. //防止拖动图标即打开了桌面应用
  3020. U.MD.D.click(this, obj);
  3021. }, [_jccssylTeacherDeskIconInfo[i]])
  3022. }, _frag); //
  3023. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3024. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3025. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3026. }
  3027. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3028. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3029. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3030. continue
  3031. }
  3032. _content = $$("div", {
  3033. className: "U_MD_D_KO",
  3034. "onmousedown": U.UF.C.closure(function (obj) {
  3035. //防止拖动图标即打开了桌面应用
  3036. U.MD.D.click(this, obj);
  3037. }, [_caleTeacherDeskIconInfo[i]]),
  3038. "onclick": U.UF.C.closure(function (obj) {
  3039. //防止拖动图标即打开了桌面应用
  3040. U.MD.D.click(this, obj);
  3041. }, [_caleTeacherDeskIconInfo[i]])
  3042. }, _frag); //
  3043. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3044. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3045. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3046. }
  3047. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3048. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3049. _content = $$("div", {
  3050. className: "U_MD_D_KO",
  3051. "onmousedown": U.UF.C.closure(function (obj) {
  3052. //防止拖动图标即打开了桌面应用
  3053. U.MD.D.click(this, obj);
  3054. }, [_tpcOrganizerDeskIconInfo[i]]),
  3055. "onclick": U.UF.C.closure(function (obj) {
  3056. //防止拖动图标即打开了桌面应用
  3057. U.MD.D.click(this, obj);
  3058. }, [_tpcOrganizerDeskIconInfo[i]])
  3059. }, _frag); //
  3060. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3061. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3062. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3063. }
  3064. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3065. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3066. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3067. continue
  3068. }
  3069. _content = $$("div", {
  3070. className: "U_MD_D_KO",
  3071. "onmousedown": U.UF.C.closure(function (obj) {
  3072. //防止拖动图标即打开了桌面应用
  3073. U.MD.D.click(this, obj);
  3074. }, [_tpcTeacherDeskIconInfo[i]]),
  3075. "onclick": U.UF.C.closure(function (obj) {
  3076. //防止拖动图标即打开了桌面应用
  3077. U.MD.D.click(this, obj);
  3078. }, [_tpcTeacherDeskIconInfo[i]])
  3079. }, _frag); //
  3080. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3081. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3082. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3083. }
  3084. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3085. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3086. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3087. continue
  3088. }
  3089. _content = $$("div", {
  3090. className: "U_MD_D_KO",
  3091. "onmousedown": U.UF.C.closure(function (obj) {
  3092. //防止拖动图标即打开了桌面应用
  3093. U.MD.D.click(this, obj);
  3094. }, [_teacherDesktopIconInfo2[i]]),
  3095. "onclick": U.UF.C.closure(function (obj) {
  3096. //防止拖动图标即打开了桌面应用
  3097. U.MD.D.click(this, obj);
  3098. }, [_teacherDesktopIconInfo2[i]])
  3099. }, _frag); //
  3100. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3101. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3102. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3103. }
  3104. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3105. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3106. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3107. continue
  3108. }
  3109. _content = $$("div", {
  3110. className: "U_MD_D_KO",
  3111. "onmousedown": U.UF.C.closure(function (obj) {
  3112. //防止拖动图标即打开了桌面应用
  3113. U.MD.D.click(this, obj);
  3114. }, [_thuioeTeacherDeskIconInfo[i]]),
  3115. "onclick": U.UF.C.closure(function (obj) {
  3116. //防止拖动图标即打开了桌面应用
  3117. U.MD.D.click(this, obj);
  3118. }, [_thuioeTeacherDeskIconInfo[i]])
  3119. }, _frag); //
  3120. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3121. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3122. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3123. }
  3124. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3125. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3126. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3127. continue
  3128. }
  3129. _content = $$("div", {
  3130. className: "U_MD_D_KO",
  3131. "onmousedown": U.UF.C.closure(function (obj) {
  3132. //防止拖动图标即打开了桌面应用
  3133. U.MD.D.click(this, obj);
  3134. }, [_lotechTeacherDeskIconInfo[i]]),
  3135. "onclick": U.UF.C.closure(function (obj) {
  3136. //防止拖动图标即打开了桌面应用
  3137. U.MD.D.click(this, obj);
  3138. }, [_lotechTeacherDeskIconInfo[i]])
  3139. }, _frag); //
  3140. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3141. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3142. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3143. }//
  3144. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3145. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3146. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3147. continue
  3148. }
  3149. _content = $$("div", {
  3150. className: "U_MD_D_KO",
  3151. "onmousedown": U.UF.C.closure(function (obj) {
  3152. //防止拖动图标即打开了桌面应用
  3153. U.MD.D.click(this, obj);
  3154. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3155. "onclick": U.UF.C.closure(function (obj) {
  3156. //防止拖动图标即打开了桌面应用
  3157. U.MD.D.click(this, obj);
  3158. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3159. }, _frag); //
  3160. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3161. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3162. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3163. }
  3164. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3165. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3166. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3167. continue
  3168. }
  3169. _content = $$("div", {
  3170. className: "U_MD_D_KO",
  3171. "onmousedown": U.UF.C.closure(function (obj) {
  3172. //防止拖动图标即打开了桌面应用
  3173. U.MD.D.click(this, obj);
  3174. }, [_siesTeacherDeskIconInfo[i]]),
  3175. "onclick": U.UF.C.closure(function (obj) {
  3176. //防止拖动图标即打开了桌面应用
  3177. U.MD.D.click(this, obj);
  3178. }, [_siesTeacherDeskIconInfo[i]])
  3179. }, _frag); //
  3180. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3181. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3182. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3183. }
  3184. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3185. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3186. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3187. continue
  3188. }
  3189. _content = $$("div", {
  3190. className: "U_MD_D_KO",
  3191. "onmousedown": U.UF.C.closure(function (obj) {
  3192. //防止拖动图标即打开了桌面应用
  3193. U.MD.D.click(this, obj);
  3194. }, [_guzmsTeacherDeskIconInfo[i]]),
  3195. "onclick": U.UF.C.closure(function (obj) {
  3196. //防止拖动图标即打开了桌面应用
  3197. U.MD.D.click(this, obj);
  3198. }, [_guzmsTeacherDeskIconInfo[i]])
  3199. }, _frag); //
  3200. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3201. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3202. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3203. }
  3204. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3205. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3206. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3207. continue
  3208. }
  3209. _content = $$("div", {
  3210. className: "U_MD_D_KO",
  3211. "onmousedown": U.UF.C.closure(function (obj) {
  3212. //防止拖动图标即打开了桌面应用
  3213. U.MD.D.click(this, obj);
  3214. }, [_longhuaTeacherDeskIconInfo[i]]),
  3215. "onclick": U.UF.C.closure(function (obj) {
  3216. //防止拖动图标即打开了桌面应用
  3217. U.MD.D.click(this, obj);
  3218. }, [_longhuaTeacherDeskIconInfo[i]])
  3219. }, _frag); //
  3220. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3221. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3222. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3223. }
  3224. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3225. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3226. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3227. continue
  3228. }
  3229. _content = $$("div", {
  3230. className: "U_MD_D_KO",
  3231. "onmousedown": U.UF.C.closure(function (obj) {
  3232. //防止拖动图标即打开了桌面应用
  3233. U.MD.D.click(this, obj);
  3234. }, [_ytyTeacherDeskIconInfo[i]]),
  3235. "onclick": U.UF.C.closure(function (obj) {
  3236. //防止拖动图标即打开了桌面应用
  3237. U.MD.D.click(this, obj);
  3238. }, [_ytyTeacherDeskIconInfo[i]])
  3239. }, _frag); //
  3240. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3241. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3242. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3243. }
  3244. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3245. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3246. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3247. continue
  3248. }
  3249. _content = $$("div", {
  3250. className: "U_MD_D_KO",
  3251. "onmousedown": U.UF.C.closure(function (obj) {
  3252. //防止拖动图标即打开了桌面应用
  3253. U.MD.D.click(this, obj);
  3254. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3255. "onclick": U.UF.C.closure(function (obj) {
  3256. //防止拖动图标即打开了桌面应用
  3257. U.MD.D.click(this, obj);
  3258. }, [_yunhaiTeacherDeskIconInfo[i]])
  3259. }, _frag); //
  3260. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3261. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3262. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3263. } //_hkStudentDeskIconInfo
  3264. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3265. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3266. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3267. continue
  3268. }
  3269. _content = $$("div", {
  3270. className: "U_MD_D_KO",
  3271. "onmousedown": U.UF.C.closure(function (obj) {
  3272. //防止拖动图标即打开了桌面应用
  3273. U.MD.D.click(this, obj);
  3274. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3275. "onclick": U.UF.C.closure(function (obj) {
  3276. //防止拖动图标即打开了桌面应用
  3277. U.MD.D.click(this, obj);
  3278. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3279. }, _frag); //
  3280. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3281. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3282. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3283. }
  3284. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3285. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3286. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3287. continue
  3288. }
  3289. _content = $$("div", {
  3290. className: "U_MD_D_KO",
  3291. "onmousedown": U.UF.C.closure(function (obj) {
  3292. //防止拖动图标即打开了桌面应用
  3293. U.MD.D.click(this, obj);
  3294. }, [_hkTeacherDeskIconInfo[i]]),
  3295. "onclick": U.UF.C.closure(function (obj) {
  3296. //防止拖动图标即打开了桌面应用
  3297. U.MD.D.click(this, obj);
  3298. }, [_hkTeacherDeskIconInfo[i]])
  3299. }, _frag); //
  3300. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3301. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3302. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3303. }
  3304. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3305. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3306. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3307. continue
  3308. }
  3309. _content = $$("div", {
  3310. className: "U_MD_D_KO",
  3311. "onmousedown": U.UF.C.closure(function (obj) {
  3312. //防止拖动图标即打开了桌面应用
  3313. U.MD.D.click(this, obj);
  3314. }, [_hkaceTeacherDeskIconInfo[i]]),
  3315. "onclick": U.UF.C.closure(function (obj) {
  3316. //防止拖动图标即打开了桌面应用
  3317. U.MD.D.click(this, obj);
  3318. }, [_hkaceTeacherDeskIconInfo[i]])
  3319. }, _frag); //
  3320. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3321. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3322. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3323. }
  3324. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3325. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3326. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3327. continue
  3328. }
  3329. _content = $$("div", {
  3330. className: "U_MD_D_KO",
  3331. "onmousedown": U.UF.C.closure(function (obj) {
  3332. //防止拖动图标即打开了桌面应用
  3333. U.MD.D.click(this, obj);
  3334. }, [_cocobizTeacherDeskIconInfo[i]]),
  3335. "onclick": U.UF.C.closure(function (obj) {
  3336. //防止拖动图标即打开了桌面应用
  3337. U.MD.D.click(this, obj);
  3338. }, [_cocobizTeacherDeskIconInfo[i]])
  3339. }, _frag); //
  3340. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3341. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3342. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3343. }
  3344. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3345. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3346. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3347. continue
  3348. }
  3349. _content = $$("div", {
  3350. className: "U_MD_D_KO",
  3351. "onmousedown": U.UF.C.closure(function (obj) {
  3352. //防止拖动图标即打开了桌面应用
  3353. U.MD.D.click(this, obj);
  3354. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3355. "onclick": U.UF.C.closure(function (obj) {
  3356. //防止拖动图标即打开了桌面应用
  3357. U.MD.D.click(this, obj);
  3358. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3359. }, _frag); //
  3360. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3361. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3362. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3363. }
  3364. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3365. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3366. _content = $$("div", {
  3367. className: "U_MD_D_KO",
  3368. "onmousedown": U.UF.C.closure(function (obj) {
  3369. //防止拖动图标即打开了桌面应用
  3370. U.MD.D.click(this, obj);
  3371. }, [_gdjgAdminDeskIconInfo[i]]),
  3372. "onclick": U.UF.C.closure(function (obj) {
  3373. //防止拖动图标即打开了桌面应用
  3374. U.MD.D.click(this, obj);
  3375. }, [_gdjgAdminDeskIconInfo[i]])
  3376. }, _frag); //
  3377. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3378. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3379. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3380. }
  3381. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3382. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3383. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3384. continue
  3385. }
  3386. _content = $$("div", {
  3387. className: "U_MD_D_KO",
  3388. "onmousedown": U.UF.C.closure(function (obj) {
  3389. //防止拖动图标即打开了桌面应用
  3390. U.MD.D.click(this, obj);
  3391. }, [_gdjgTeacherDeskIconInfo[i]]),
  3392. "onclick": U.UF.C.closure(function (obj) {
  3393. //防止拖动图标即打开了桌面应用
  3394. U.MD.D.click(this, obj);
  3395. }, [_gdjgTeacherDeskIconInfo[i]])
  3396. }, _frag); //
  3397. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3398. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3399. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3400. }
  3401. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3402. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3403. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3404. continue
  3405. }
  3406. _content = $$("div", {
  3407. className: "U_MD_D_KO",
  3408. "onmousedown": U.UF.C.closure(function (obj) {
  3409. //防止拖动图标即打开了桌面应用
  3410. U.MD.D.click(this, obj);
  3411. }, [_szherTeacherDeskIconInfo[i]]),
  3412. "onclick": U.UF.C.closure(function (obj) {
  3413. //防止拖动图标即打开了桌面应用
  3414. U.MD.D.click(this, obj);
  3415. }, [_szherTeacherDeskIconInfo[i]])
  3416. }, _frag); //
  3417. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3418. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3419. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3420. }
  3421. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3422. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3423. _content = $$("div", {
  3424. className: "U_MD_D_KO",
  3425. "onmousedown": U.UF.C.closure(function (obj) {
  3426. //防止拖动图标即打开了桌面应用
  3427. U.MD.D.click(this, obj);
  3428. }, [_heyuannAdminDeskIconInfo[i]]),
  3429. "onclick": U.UF.C.closure(function (obj) {
  3430. //防止拖动图标即打开了桌面应用
  3431. U.MD.D.click(this, obj);
  3432. }, [_heyuannAdminDeskIconInfo[i]])
  3433. }, _frag); //
  3434. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3435. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3436. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3437. }
  3438. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3439. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3440. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3441. continue
  3442. }
  3443. _content = $$("div", {
  3444. className: "U_MD_D_KO",
  3445. "onmousedown": U.UF.C.closure(function (obj) {
  3446. //防止拖动图标即打开了桌面应用
  3447. U.MD.D.click(this, obj);
  3448. }, [_heyuanTeacherDeskIconInfo[i]]),
  3449. "onclick": U.UF.C.closure(function (obj) {
  3450. //防止拖动图标即打开了桌面应用
  3451. U.MD.D.click(this, obj);
  3452. }, [_heyuanTeacherDeskIconInfo[i]])
  3453. }, _frag); //
  3454. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3455. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3456. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3457. } //
  3458. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3459. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3460. _content = $$("div", {
  3461. className: "U_MD_D_KO",
  3462. "onmousedown": U.UF.C.closure(function (obj) {
  3463. //防止拖动图标即打开了桌面应用
  3464. U.MD.D.click(this, obj);
  3465. }, [_dseiAdminDeskIconInfo[i]]),
  3466. "onclick": U.UF.C.closure(function (obj) {
  3467. //防止拖动图标即打开了桌面应用
  3468. U.MD.D.click(this, obj);
  3469. }, [_dseiAdminDeskIconInfo[i]])
  3470. }, _frag); //
  3471. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3472. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3473. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3474. }
  3475. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3476. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3477. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3478. continue
  3479. }
  3480. _content = $$("div", {
  3481. className: "U_MD_D_KO",
  3482. "onmousedown": U.UF.C.closure(function (obj) {
  3483. //防止拖动图标即打开了桌面应用
  3484. U.MD.D.click(this, obj);
  3485. }, [_dseiTeacherDeskIconInfo[i]]),
  3486. "onclick": U.UF.C.closure(function (obj) {
  3487. //防止拖动图标即打开了桌面应用
  3488. U.MD.D.click(this, obj);
  3489. }, [_dseiTeacherDeskIconInfo[i]])
  3490. }, _frag); //
  3491. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3492. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3493. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3494. } //
  3495. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3496. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3497. _content = $$("div", {
  3498. className: "U_MD_D_KO",
  3499. "onmousedown": U.UF.C.closure(function (obj) {
  3500. //防止拖动图标即打开了桌面应用
  3501. U.MD.D.click(this, obj);
  3502. }, [_chjyjAdminDeskIconInfo[i]]),
  3503. "onclick": U.UF.C.closure(function (obj) {
  3504. //防止拖动图标即打开了桌面应用
  3505. U.MD.D.click(this, obj);
  3506. }, [_chjyjAdminDeskIconInfo[i]])
  3507. }, _frag); //
  3508. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3509. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3510. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3511. }//
  3512. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3513. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3514. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3515. continue
  3516. }
  3517. _content = $$("div", {
  3518. className: "U_MD_D_KO",
  3519. "onmousedown": U.UF.C.closure(function (obj) {
  3520. //防止拖动图标即打开了桌面应用
  3521. U.MD.D.click(this, obj);
  3522. }, [_chjyjTeacherDeskIconInfo[i]]),
  3523. "onclick": U.UF.C.closure(function (obj) {
  3524. //防止拖动图标即打开了桌面应用
  3525. U.MD.D.click(this, obj);
  3526. }, [_chjyjTeacherDeskIconInfo[i]])
  3527. }, _frag); //
  3528. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3529. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3530. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3531. }
  3532. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3533. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3534. _content = $$("div", {
  3535. className: "U_MD_D_KO",
  3536. "onmousedown": U.UF.C.closure(function (obj) {
  3537. //防止拖动图标即打开了桌面应用
  3538. U.MD.D.click(this, obj);
  3539. }, [_szjkyAdminDeskIconInfo[i]]),
  3540. "onclick": U.UF.C.closure(function (obj) {
  3541. //防止拖动图标即打开了桌面应用
  3542. U.MD.D.click(this, obj);
  3543. }, [_szjkyAdminDeskIconInfo[i]])
  3544. }, _frag); //
  3545. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3546. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3547. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3548. }//
  3549. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3550. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3551. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3552. continue
  3553. }
  3554. _content = $$("div", {
  3555. className: "U_MD_D_KO",
  3556. "onmousedown": U.UF.C.closure(function (obj) {
  3557. //防止拖动图标即打开了桌面应用
  3558. U.MD.D.click(this, obj);
  3559. }, [_szjkyTeacherDeskIconInfo[i]]),
  3560. "onclick": U.UF.C.closure(function (obj) {
  3561. //防止拖动图标即打开了桌面应用
  3562. U.MD.D.click(this, obj);
  3563. }, [_szjkyTeacherDeskIconInfo[i]])
  3564. }, _frag); //
  3565. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3566. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3567. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3568. }
  3569. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3570. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3571. _content = $$("div", {
  3572. className: "U_MD_D_KO",
  3573. "onmousedown": U.UF.C.closure(function (obj) {
  3574. //防止拖动图标即打开了桌面应用
  3575. U.MD.D.click(this, obj);
  3576. }, [_x020201AdminDeskIconInfo[i]]),
  3577. "onclick": U.UF.C.closure(function (obj) {
  3578. //防止拖动图标即打开了桌面应用
  3579. U.MD.D.click(this, obj);
  3580. }, [_x020201AdminDeskIconInfo[i]])
  3581. }, _frag); //
  3582. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3583. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3584. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3585. }//
  3586. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3587. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3588. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3589. continue
  3590. }
  3591. _content = $$("div", {
  3592. className: "U_MD_D_KO",
  3593. "onmousedown": U.UF.C.closure(function (obj) {
  3594. //防止拖动图标即打开了桌面应用
  3595. U.MD.D.click(this, obj);
  3596. }, [_x020201TeacherDeskIconInfo[i]]),
  3597. "onclick": U.UF.C.closure(function (obj) {
  3598. //防止拖动图标即打开了桌面应用
  3599. U.MD.D.click(this, obj);
  3600. }, [_x020201TeacherDeskIconInfo[i]])
  3601. }, _frag); //
  3602. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3603. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3604. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3605. }
  3606. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3607. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3608. _content = $$("div", {
  3609. className: "U_MD_D_KO",
  3610. "onmousedown": U.UF.C.closure(function (obj) {
  3611. //防止拖动图标即打开了桌面应用
  3612. U.MD.D.click(this, obj);
  3613. }, [_SCNUETAdminDeskIconInfo[i]]),
  3614. "onclick": U.UF.C.closure(function (obj) {
  3615. //防止拖动图标即打开了桌面应用
  3616. U.MD.D.click(this, obj);
  3617. }, [_SCNUETAdminDeskIconInfo[i]])
  3618. }, _frag); //
  3619. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3620. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3621. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3622. }//
  3623. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3624. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3625. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3626. continue
  3627. }
  3628. _content = $$("div", {
  3629. className: "U_MD_D_KO",
  3630. "onmousedown": U.UF.C.closure(function (obj) {
  3631. //防止拖动图标即打开了桌面应用
  3632. U.MD.D.click(this, obj);
  3633. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3634. "onclick": U.UF.C.closure(function (obj) {
  3635. //防止拖动图标即打开了桌面应用
  3636. U.MD.D.click(this, obj);
  3637. }, [_SCNUETTeacherDeskIconInfo[i]])
  3638. }, _frag); //
  3639. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3640. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3641. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3642. }
  3643. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3644. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3645. _content = $$("div", {
  3646. className: "U_MD_D_KO",
  3647. "onmousedown": U.UF.C.closure(function (obj) {
  3648. //防止拖动图标即打开了桌面应用
  3649. U.MD.D.click(this, obj);
  3650. }, [_futianAdminDeskIconInfo[i]]),
  3651. "onclick": U.UF.C.closure(function (obj) {
  3652. //防止拖动图标即打开了桌面应用
  3653. U.MD.D.click(this, obj);
  3654. }, [_futianAdminDeskIconInfo[i]])
  3655. }, _frag); //
  3656. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3657. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3658. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3659. }
  3660. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3661. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3662. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3663. continue
  3664. }
  3665. _content = $$("div", {
  3666. className: "U_MD_D_KO",
  3667. "onmousedown": U.UF.C.closure(function (obj) {
  3668. //防止拖动图标即打开了桌面应用
  3669. U.MD.D.click(this, obj);
  3670. }, [_futianTeacherDeskIconInfo[i]]),
  3671. "onclick": U.UF.C.closure(function (obj) {
  3672. //防止拖动图标即打开了桌面应用
  3673. U.MD.D.click(this, obj);
  3674. }, [_futianTeacherDeskIconInfo[i]])
  3675. }, _frag); //
  3676. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3677. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3678. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3679. }
  3680. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3681. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3682. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3683. continue
  3684. }
  3685. _content = $$("div", {
  3686. className: "U_MD_D_KO",
  3687. "onmousedown": U.UF.C.closure(function (obj) {
  3688. //防止拖动图标即打开了桌面应用
  3689. U.MD.D.click(this, obj);
  3690. }, [_MingdeTeacherDeskIcon[i]]),
  3691. "onclick": U.UF.C.closure(function (obj) {
  3692. //防止拖动图标即打开了桌面应用
  3693. U.MD.D.click(this, obj);
  3694. }, [_MingdeTeacherDeskIcon[i]])
  3695. }, _frag); //
  3696. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3697. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3698. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3699. }
  3700. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3701. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3702. _content = $$("div", {
  3703. className: "U_MD_D_KO",
  3704. "onmousedown": U.UF.C.closure(function (obj) {
  3705. //防止拖动图标即打开了桌面应用
  3706. U.MD.D.click(this, obj);
  3707. }, [_lhsAdminDesktopIconInfo[i]]),
  3708. "onclick": U.UF.C.closure(function (obj) {
  3709. //防止拖动图标即打开了桌面应用
  3710. U.MD.D.click(this, obj);
  3711. }, [_lhsAdminDesktopIconInfo[i]])
  3712. }, _frag); //
  3713. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3714. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3715. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3716. }
  3717. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3718. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3719. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3720. continue
  3721. }
  3722. _content = $$("div", {
  3723. className: "U_MD_D_KO",
  3724. "onmousedown": U.UF.C.closure(function (obj) {
  3725. //防止拖动图标即打开了桌面应用
  3726. U.MD.D.click(this, obj);
  3727. }, [_lhsteacherDesktopIconInfo[i]]),
  3728. "onclick": U.UF.C.closure(function (obj) {
  3729. //防止拖动图标即打开了桌面应用
  3730. U.MD.D.click(this, obj);
  3731. }, [_lhsteacherDesktopIconInfo[i]])
  3732. }, _frag); //
  3733. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3734. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3735. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3736. }
  3737. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3738. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3739. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3740. continue
  3741. }
  3742. _content = $$("div", {
  3743. className: "U_MD_D_KO",
  3744. "onmousedown": U.UF.C.closure(function (obj) {
  3745. //防止拖动图标即打开了桌面应用
  3746. U.MD.D.click(this, obj);
  3747. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3748. "onclick": U.UF.C.closure(function (obj) {
  3749. //防止拖动图标即打开了桌面应用
  3750. U.MD.D.click(this, obj);
  3751. }, [_zhoujiateacherDesktopIconInfo[i]])
  3752. }, _frag); //
  3753. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3754. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3755. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3756. }
  3757. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3758. for (i = 0; i < _hanDeskIcon.length; i++) {
  3759. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3760. continue
  3761. }
  3762. _content = $$("div", {
  3763. className: "U_MD_D_KO",
  3764. "onmousedown": U.UF.C.closure(function (obj) {
  3765. //防止拖动图标即打开了桌面应用
  3766. U.MD.D.click(this, obj);
  3767. }, [_hanDeskIcon[i]]),
  3768. "onclick": U.UF.C.closure(function (obj) {
  3769. //防止拖动图标即打开了桌面应用
  3770. U.MD.D.click(this, obj);
  3771. }, [_hanDeskIcon[i]])
  3772. }, _frag); //
  3773. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3774. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3775. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3776. }
  3777. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3778. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3779. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3780. continue
  3781. }
  3782. _content = $$("div", {
  3783. className: "U_MD_D_KO",
  3784. "onmousedown": U.UF.C.closure(function (obj) {
  3785. //防止拖动图标即打开了桌面应用
  3786. U.MD.D.click(this, obj);
  3787. }, [_orgStemDeskIcon[i]]),
  3788. "onclick": U.UF.C.closure(function (obj) {
  3789. //防止拖动图标即打开了桌面应用
  3790. U.MD.D.click(this, obj);
  3791. }, [_orgStemDeskIcon[i]])
  3792. }, _frag); //
  3793. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3794. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3795. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3796. }
  3797. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3798. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3799. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3800. continue
  3801. }
  3802. _content = $$("div", {
  3803. className: "U_MD_D_KO",
  3804. "onmousedown": U.UF.C.closure(function (obj) {
  3805. //防止拖动图标即打开了桌面应用
  3806. U.MD.D.click(this, obj);
  3807. }, [_szulsDeskIcon[i]]),
  3808. "onclick": U.UF.C.closure(function (obj) {
  3809. //防止拖动图标即打开了桌面应用
  3810. U.MD.D.click(this, obj);
  3811. }, [_szulsDeskIcon[i]])
  3812. }, _frag); //
  3813. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3814. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3815. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3816. }
  3817. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3818. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3819. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3820. continue
  3821. }
  3822. _content = $$("div", {
  3823. className: "U_MD_D_KO",
  3824. "onmousedown": U.UF.C.closure(function (obj) {
  3825. //防止拖动图标即打开了桌面应用
  3826. U.MD.D.click(this, obj);
  3827. }, [_orgDesktopIconInfo[i]]),
  3828. "onclick": U.UF.C.closure(function (obj) {
  3829. //防止拖动图标即打开了桌面应用
  3830. U.MD.D.click(this, obj);
  3831. }, [_orgDesktopIconInfo[i]])
  3832. }, _frag); //
  3833. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3834. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3835. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3836. }
  3837. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3838. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3839. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3840. continue
  3841. }
  3842. _content = $$("div", {
  3843. className: "U_MD_D_KO",
  3844. "onmousedown": U.UF.C.closure(function (obj) {
  3845. //防止拖动图标即打开了桌面应用
  3846. U.MD.D.click(this, obj);
  3847. }, [_schoolDesktopIconInfo[i]]),
  3848. "onclick": U.UF.C.closure(function (obj) {
  3849. //防止拖动图标即打开了桌面应用
  3850. U.MD.D.click(this, obj);
  3851. }, [_schoolDesktopIconInfo[i]])
  3852. }, _frag); //
  3853. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3854. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3855. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3856. }
  3857. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3858. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3859. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3860. continue
  3861. }
  3862. _content = $$("div", {
  3863. className: "U_MD_D_KO",
  3864. "onmousedown": U.UF.C.closure(function (obj) {
  3865. //防止拖动图标即打开了桌面应用
  3866. U.MD.D.click(this, obj);
  3867. }, [_GMteacherDesktopIconInfo[i]]),
  3868. "onclick": U.UF.C.closure(function (obj) {
  3869. //防止拖动图标即打开了桌面应用
  3870. U.MD.D.click(this, obj);
  3871. }, [_GMteacherDesktopIconInfo[i]])
  3872. }, _frag); //
  3873. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3874. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3875. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3876. }
  3877. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3878. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3879. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3880. continue
  3881. }
  3882. _content = $$("div", {
  3883. className: "U_MD_D_KO",
  3884. "onmousedown": U.UF.C.closure(function (obj) {
  3885. //防止拖动图标即打开了桌面应用
  3886. U.MD.D.click(this, obj);
  3887. }, [_SONGteacherDesktopIconInfo[i]]),
  3888. "onclick": U.UF.C.closure(function (obj) {
  3889. //防止拖动图标即打开了桌面应用
  3890. U.MD.D.click(this, obj);
  3891. }, [_SONGteacherDesktopIconInfo[i]])
  3892. }, _frag); //
  3893. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3894. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3895. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3896. }
  3897. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3898. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3899. _content = $$("div", {
  3900. className: "U_MD_D_KO",
  3901. "onmousedown": U.UF.C.closure(function (obj) {
  3902. //防止拖动图标即打开了桌面应用
  3903. U.MD.D.click(this, obj);
  3904. }, [_GMstudentDesktopIconInfo[i]]),
  3905. "onclick": U.UF.C.closure(function (obj) {
  3906. //防止拖动图标即打开了桌面应用
  3907. U.MD.D.click(this, obj);
  3908. }, [_GMstudentDesktopIconInfo[i]])
  3909. }, _frag); //
  3910. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3911. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3912. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3913. }
  3914. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3915. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3916. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3917. continue
  3918. }
  3919. _content = $$("div", {
  3920. className: "U_MD_D_KO",
  3921. "onmousedown": U.UF.C.closure(function (obj) {
  3922. //防止拖动图标即打开了桌面应用
  3923. U.MD.D.click(this, obj);
  3924. }, [_tcTeacherDeskIconInfo[i]]),
  3925. "onclick": U.UF.C.closure(function (obj) {
  3926. //防止拖动图标即打开了桌面应用
  3927. U.MD.D.click(this, obj);
  3928. }, [_tcTeacherDeskIconInfo[i]])
  3929. }, _frag); //
  3930. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3931. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3932. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3933. }
  3934. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3935. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3936. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3937. continue
  3938. }
  3939. _content = $$("div", {
  3940. className: "U_MD_D_KO",
  3941. "onmousedown": U.UF.C.closure(function (obj) {
  3942. //防止拖动图标即打开了桌面应用
  3943. U.MD.D.click(this, obj);
  3944. }, [_tcOrganizerDeskIconInfo[i]]),
  3945. "onclick": U.UF.C.closure(function (obj) {
  3946. //防止拖动图标即打开了桌面应用
  3947. U.MD.D.click(this, obj);
  3948. }, [_tcOrganizerDeskIconInfo[i]])
  3949. }, _frag); //
  3950. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3951. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3952. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3953. }
  3954. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3955. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3956. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3957. continue
  3958. }
  3959. _content = $$("div", {
  3960. className: "U_MD_D_KO",
  3961. "onmousedown": U.UF.C.closure(function (obj) {
  3962. //防止拖动图标即打开了桌面应用
  3963. U.MD.D.click(this, obj);
  3964. }, [_szscTeacherDeskIconInfo[i]]),
  3965. "onclick": U.UF.C.closure(function (obj) {
  3966. //防止拖动图标即打开了桌面应用
  3967. U.MD.D.click(this, obj);
  3968. }, [_szscTeacherDeskIconInfo[i]])
  3969. }, _frag); //
  3970. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3971. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3972. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3973. }
  3974. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3975. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3976. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3977. continue
  3978. }
  3979. _content = $$("div", {
  3980. className: "U_MD_D_KO",
  3981. "onmousedown": U.UF.C.closure(function (obj) {
  3982. //防止拖动图标即打开了桌面应用
  3983. U.MD.D.click(this, obj);
  3984. }, [_szscOrganizerDeskIconInfo[i]]),
  3985. "onclick": U.UF.C.closure(function (obj) {
  3986. //防止拖动图标即打开了桌面应用
  3987. U.MD.D.click(this, obj);
  3988. }, [_szscOrganizerDeskIconInfo[i]])
  3989. }, _frag); //
  3990. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3991. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3992. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3993. }
  3994. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3995. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3996. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3997. continue
  3998. }
  3999. _content = $$("div", {
  4000. className: "U_MD_D_KO",
  4001. "onmousedown": U.UF.C.closure(function (obj) {
  4002. //防止拖动图标即打开了桌面应用
  4003. U.MD.D.click(this, obj);
  4004. }, [_nsfxTeacherDeskIconInfo[i]]),
  4005. "onclick": U.UF.C.closure(function (obj) {
  4006. //防止拖动图标即打开了桌面应用
  4007. U.MD.D.click(this, obj);
  4008. }, [_nsfxTeacherDeskIconInfo[i]])
  4009. }, _frag); //
  4010. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4011. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4012. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4013. }
  4014. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4015. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4016. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4017. continue
  4018. }
  4019. _content = $$("div", {
  4020. className: "U_MD_D_KO",
  4021. "onmousedown": U.UF.C.closure(function (obj) {
  4022. //防止拖动图标即打开了桌面应用
  4023. U.MD.D.click(this, obj);
  4024. }, [_stiaTeacherDeskIconInfo[i]]),
  4025. "onclick": U.UF.C.closure(function (obj) {
  4026. //防止拖动图标即打开了桌面应用
  4027. U.MD.D.click(this, obj);
  4028. }, [_stiaTeacherDeskIconInfo[i]])
  4029. }, _frag); //
  4030. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4031. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4032. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4033. }
  4034. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4035. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4036. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4037. continue
  4038. }
  4039. _content = $$("div", {
  4040. className: "U_MD_D_KO",
  4041. "onmousedown": U.UF.C.closure(function (obj) {
  4042. //防止拖动图标即打开了桌面应用
  4043. U.MD.D.click(this, obj);
  4044. }, [_szdjgTeacherDeskIconInfo[i]]),
  4045. "onclick": U.UF.C.closure(function (obj) {
  4046. //防止拖动图标即打开了桌面应用
  4047. U.MD.D.click(this, obj);
  4048. }, [_szdjgTeacherDeskIconInfo[i]])
  4049. }, _frag); //
  4050. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4051. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4052. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4053. }
  4054. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4055. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4056. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4057. continue
  4058. }
  4059. _content = $$("div", {
  4060. className: "U_MD_D_KO",
  4061. "onmousedown": U.UF.C.closure(function (obj) {
  4062. //防止拖动图标即打开了桌面应用
  4063. U.MD.D.click(this, obj);
  4064. }, [_x010607TeacherDeskIconInfo[i]]),
  4065. "onclick": U.UF.C.closure(function (obj) {
  4066. //防止拖动图标即打开了桌面应用
  4067. U.MD.D.click(this, obj);
  4068. }, [_x010607TeacherDeskIconInfo[i]])
  4069. }, _frag); //
  4070. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4071. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4072. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4073. }
  4074. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4075. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4076. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4077. continue
  4078. }
  4079. _content = $$("div", {
  4080. className: "U_MD_D_KO",
  4081. "onmousedown": U.UF.C.closure(function (obj) {
  4082. //防止拖动图标即打开了桌面应用
  4083. U.MD.D.click(this, obj);
  4084. }, [_xhlyTeacherDeskIconInfo[i]]),
  4085. "onclick": U.UF.C.closure(function (obj) {
  4086. //防止拖动图标即打开了桌面应用
  4087. U.MD.D.click(this, obj);
  4088. }, [_xhlyTeacherDeskIconInfo[i]])
  4089. }, _frag); //
  4090. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4091. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4092. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4093. }
  4094. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4095. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4096. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4097. continue
  4098. }
  4099. _content = $$("div", {
  4100. className: "U_MD_D_KO",
  4101. "onmousedown": U.UF.C.closure(function (obj) {
  4102. //防止拖动图标即打开了桌面应用
  4103. U.MD.D.click(this, obj);
  4104. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4105. "onclick": U.UF.C.closure(function (obj) {
  4106. //防止拖动图标即打开了桌面应用
  4107. U.MD.D.click(this, obj);
  4108. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4109. }, _frag); //
  4110. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4111. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4112. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4113. }
  4114. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4115. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4116. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4117. continue
  4118. }
  4119. _content = $$("div", {
  4120. className: "U_MD_D_KO",
  4121. "onmousedown": U.UF.C.closure(function (obj) {
  4122. //防止拖动图标即打开了桌面应用
  4123. U.MD.D.click(this, obj);
  4124. }, [_x010503TeacherDeskIconInfo[i]]),
  4125. "onclick": U.UF.C.closure(function (obj) {
  4126. //防止拖动图标即打开了桌面应用
  4127. U.MD.D.click(this, obj);
  4128. }, [_x010503TeacherDeskIconInfo[i]])
  4129. }, _frag); //
  4130. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4131. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4132. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4133. }
  4134. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4135. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4136. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4137. continue
  4138. }
  4139. _content = $$("div", {
  4140. className: "U_MD_D_KO",
  4141. "onmousedown": U.UF.C.closure(function (obj) {
  4142. //防止拖动图标即打开了桌面应用
  4143. U.MD.D.click(this, obj);
  4144. }, [_x010504TeacherDeskIconInfo[i]]),
  4145. "onclick": U.UF.C.closure(function (obj) {
  4146. //防止拖动图标即打开了桌面应用
  4147. U.MD.D.click(this, obj);
  4148. }, [_x010504TeacherDeskIconInfo[i]])
  4149. }, _frag); //
  4150. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4151. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4152. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4153. }
  4154. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4155. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4156. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4157. continue
  4158. }
  4159. _content = $$("div", {
  4160. className: "U_MD_D_KO",
  4161. "onmousedown": U.UF.C.closure(function (obj) {
  4162. //防止拖动图标即打开了桌面应用
  4163. U.MD.D.click(this, obj);
  4164. }, [_x010204TeacherDeskIconInfo[i]]),
  4165. "onclick": U.UF.C.closure(function (obj) {
  4166. //防止拖动图标即打开了桌面应用
  4167. U.MD.D.click(this, obj);
  4168. }, [_x010204TeacherDeskIconInfo[i]])
  4169. }, _frag); //
  4170. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4171. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4172. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4173. }
  4174. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4175. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4176. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4177. continue
  4178. }
  4179. _content = $$("div", {
  4180. className: "U_MD_D_KO",
  4181. "onmousedown": U.UF.C.closure(function (obj) {
  4182. //防止拖动图标即打开了桌面应用
  4183. U.MD.D.click(this, obj);
  4184. }, [_x320101TeacherDeskIconInfo[i]]),
  4185. "onclick": U.UF.C.closure(function (obj) {
  4186. //防止拖动图标即打开了桌面应用
  4187. U.MD.D.click(this, obj);
  4188. }, [_x320101TeacherDeskIconInfo[i]])
  4189. }, _frag); //
  4190. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4191. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4192. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4193. }
  4194. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4195. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4196. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4197. continue
  4198. }
  4199. _content = $$("div", {
  4200. className: "U_MD_D_KO",
  4201. "onmousedown": U.UF.C.closure(function (obj) {
  4202. //防止拖动图标即打开了桌面应用
  4203. U.MD.D.click(this, obj);
  4204. }, [_trailTeacherDeskIconInfo[i]]),
  4205. "onclick": U.UF.C.closure(function (obj) {
  4206. //防止拖动图标即打开了桌面应用
  4207. U.MD.D.click(this, obj);
  4208. }, [_trailTeacherDeskIconInfo[i]])
  4209. }, _frag); //
  4210. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4211. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4212. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4213. }
  4214. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4215. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4216. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4217. continue
  4218. }
  4219. _content = $$("div", {
  4220. className: "U_MD_D_KO",
  4221. "onmousedown": U.UF.C.closure(function (obj) {
  4222. //防止拖动图标即打开了桌面应用
  4223. U.MD.D.click(this, obj);
  4224. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4225. "onclick": U.UF.C.closure(function (obj) {
  4226. //防止拖动图标即打开了桌面应用
  4227. U.MD.D.click(this, obj);
  4228. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4229. }, _frag); //
  4230. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4231. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4232. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4233. }
  4234. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4235. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4236. if(_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4237. continue
  4238. }
  4239. _content = $$("div", {
  4240. className: "U_MD_D_KO",
  4241. "onmousedown": U.UF.C.closure(function (obj) {
  4242. //防止拖动图标即打开了桌面应用
  4243. U.MD.D.click(this, obj);
  4244. }, [_szsyTeacherDeskIconInfo[i]]),
  4245. "onclick": U.UF.C.closure(function (obj) {
  4246. //防止拖动图标即打开了桌面应用
  4247. U.MD.D.click(this, obj);
  4248. }, [_szsyTeacherDeskIconInfo[i]])
  4249. }, _frag); //
  4250. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4251. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4252. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4253. }
  4254. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4255. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4256. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4257. continue
  4258. }
  4259. _content = $$("div", {
  4260. className: "U_MD_D_KO",
  4261. "onmousedown": U.UF.C.closure(function (obj) {
  4262. //防止拖动图标即打开了桌面应用
  4263. U.MD.D.click(this, obj);
  4264. }, [_x010608TeacherDeskIconInfo[i]]),
  4265. "onclick": U.UF.C.closure(function (obj) {
  4266. //防止拖动图标即打开了桌面应用
  4267. U.MD.D.click(this, obj);
  4268. }, [_x010608TeacherDeskIconInfo[i]])
  4269. }, _frag); //
  4270. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4271. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4272. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4273. }
  4274. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4275. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4276. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4277. continue
  4278. }
  4279. _content = $$("div", {
  4280. className: "U_MD_D_KO",
  4281. "onmousedown": U.UF.C.closure(function (obj) {
  4282. //防止拖动图标即打开了桌面应用
  4283. U.MD.D.click(this, obj);
  4284. }, [_x010611TeacherDeskIconInfo[i]]),
  4285. "onclick": U.UF.C.closure(function (obj) {
  4286. //防止拖动图标即打开了桌面应用
  4287. U.MD.D.click(this, obj);
  4288. }, [_x010611TeacherDeskIconInfo[i]])
  4289. }, _frag); //
  4290. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4291. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4292. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4293. }
  4294. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4295. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4296. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4297. continue
  4298. }
  4299. _content = $$("div", {
  4300. className: "U_MD_D_KO",
  4301. "onmousedown": U.UF.C.closure(function (obj) {
  4302. //防止拖动图标即打开了桌面应用
  4303. U.MD.D.click(this, obj);
  4304. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4305. "onclick": U.UF.C.closure(function (obj) {
  4306. //防止拖动图标即打开了桌面应用
  4307. U.MD.D.click(this, obj);
  4308. }, [_tianyuanTeacherDeskIconInfo[i]])
  4309. }, _frag); //
  4310. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4311. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4312. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4313. }
  4314. } else {
  4315. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4316. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4317. continue
  4318. }
  4319. _content = $$("div", {
  4320. className: "U_MD_D_KO",
  4321. "onmousedown": U.UF.C.closure(function (obj) {
  4322. //防止拖动图标即打开了桌面应用
  4323. U.MD.D.click(this, obj);
  4324. }, [_teacherDesktopIconInfo[i]]),
  4325. "onclick": U.UF.C.closure(function (obj) {
  4326. //防止拖动图标即打开了桌面应用
  4327. U.MD.D.click(this, obj);
  4328. }, [_teacherDesktopIconInfo[i]])
  4329. }, _frag); //
  4330. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4331. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4332. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4333. }
  4334. }
  4335. } else {
  4336. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4337. _content = $$("div", {
  4338. className: "U_MD_D_KO",
  4339. style: { 'width': '124px', 'height': '145px' },
  4340. "onmousedown": U.UF.C.closure(function (obj) {
  4341. //防止拖动图标即打开了桌面应用
  4342. U.MD.D.click(this, obj);
  4343. }, [_easyDesktopIconInfo[i]]),
  4344. "onclick": U.UF.C.closure(function (obj) {
  4345. //防止拖动图标即打开了桌面应用
  4346. U.MD.D.click(this, obj);
  4347. }, [_easyDesktopIconInfo[i]])
  4348. }, _frag); //
  4349. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4350. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4351. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4352. }
  4353. }
  4354. if (type == 1) {
  4355. //加载好后给图标定位
  4356. U.MD.D.iconPostion($(_frag).Child());
  4357. } else {
  4358. //加载好后给图标定位
  4359. U.MD.D.iconPostion2($(_frag).Child());
  4360. }
  4361. //把图标加载到页面
  4362. el.appendChild(_frag);
  4363. }
  4364. /**
  4365. * 显示任务栏
  4366. *
  4367. * @param {element} 桌面元素
  4368. */
  4369. U.MD.D.I.displayTaskbar = function (el) {
  4370. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4371. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4372. //任务栏位置变化
  4373. U.selectEl(el).css({ "bottom": "0px" });
  4374. //桌面位置变话
  4375. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4376. }
  4377. }
  4378. //#region 桌面图标拖动逻辑
  4379. /**
  4380. * 桌面排列图标
  4381. *
  4382. * @param {element} 桌面元素
  4383. * @param {object} 上下相距的距离
  4384. * @param {object} 左右相距的距离
  4385. * @return {object} 命名空间
  4386. */
  4387. U.MD.D.iconPostion = function (childs, top, left) {
  4388. var i; //用于循环处理
  4389. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4390. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4391. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4392. for (i = 0; i < childs.length; i++) {
  4393. //如果竖排top超过了范围处理
  4394. if (top + 95 > US.height - 10) {
  4395. //left超过了页面范围处理,则向上重叠打印处理
  4396. if ((left + 180) > US.width) {
  4397. top -= 110;
  4398. left -= 90;
  4399. }
  4400. //没有超过范围,那么left+90添加到下一个竖排打印
  4401. else {
  4402. left += 90;
  4403. top = 15;
  4404. };
  4405. }
  4406. //给图标的位置赋值
  4407. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4408. if (i < childs.length - 1) {
  4409. //页面图标每次向下加95
  4410. top += 95;
  4411. }
  4412. }
  4413. //返回最后调用的图标的位置
  4414. return [top, left];
  4415. }
  4416. /**
  4417. * 桌面排列图标
  4418. *
  4419. * @param {element} 桌面元素
  4420. * @param {object} 上下相距的距离
  4421. * @param {object} 左右相距的距离
  4422. * @return {object} 命名空间
  4423. */
  4424. U.MD.D.iconPostion2 = function (childs, top, left) {
  4425. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4426. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4427. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4428. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4429. for (i = 0; i < childs.length; i++) {
  4430. //如果竖排top超过了范围处理
  4431. if (left + 150 > US.width - 10) {
  4432. //left超过了页面范围处理,则向上重叠打印处理
  4433. if ((top + 180) > US.Height) {
  4434. top -= 150;
  4435. left -= 150;
  4436. }
  4437. //没有超过范围,那么left+90添加到下一个竖排打印
  4438. else {
  4439. top += 150;
  4440. left = ol;
  4441. };
  4442. }
  4443. //给图标的位置赋值
  4444. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4445. if (i < childs.length - 1) {
  4446. //页面图标每次向下加95
  4447. left += 150;
  4448. }
  4449. }
  4450. //返回最后调用的图标的位置
  4451. return [top, left];
  4452. }
  4453. /**
  4454. * 桌面点击事件逻辑
  4455. *
  4456. * @param {element} 桌面元素
  4457. * @param {object} 上下相距的距离
  4458. * @param {object} 左右相距的距离
  4459. * @return {object} 命名空间
  4460. */
  4461. U.MD.D.click = function (el, obj) {
  4462. var _buttonnumber = event.button; //点击的按钮的事件值
  4463. var _userinfo = US.userInfo;
  4464. U.UF.EV.stopBubble(); //阻止向上冒泡
  4465. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4466. if (_buttonnumber < 2) {
  4467. //如果是click事件的处理
  4468. if (event.type == "click") {
  4469. //如果元素在mousemove事件中没有移动则出发click事件
  4470. if (!U.MD.D.I.IsDrag) {
  4471. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4472. U.alert("请先登录您的账号!");
  4473. setTimeout(() => {
  4474. U.MD.U.L.login();
  4475. }, 2000);
  4476. } else {
  4477. //打开应用处理
  4478. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4479. }
  4480. }
  4481. }
  4482. //如果是mouse事件的处理
  4483. else {
  4484. if (US.Config.type == '1') {
  4485. //拖动处理,添加拖动和拖动结束事件
  4486. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4487. }
  4488. }
  4489. U.MD.D.I.IsDrag = false;
  4490. }
  4491. }
  4492. /**
  4493. * 拖动的处理
  4494. *
  4495. */
  4496. U.MD.D.iconMove = function () {
  4497. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4498. U.MD.D.I.IsDrag = true;
  4499. }
  4500. /**
  4501. * 拖动结束后,这里是定位处理,以网状的形式定位
  4502. *
  4503. * @param {element} 拖动的元素
  4504. * @return {object} 命名空间
  4505. */
  4506. U.MD.D.iconUp = function (el) {
  4507. var _top = 15,
  4508. _left = 20,
  4509. _margin,
  4510. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4511. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4512. if (_positioninfo["OT"] > 15) {
  4513. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4514. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4515. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4516. }
  4517. if (_positioninfo["OL"] > 20) {
  4518. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4519. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4520. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4521. }
  4522. //while循环判断么一个重叠的元素
  4523. do {
  4524. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4525. _top = _positioninfo[0] + 95; //得到定位后的top
  4526. _left = _positioninfo[1]; //得到定位后的left
  4527. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4528. }
  4529. /**
  4530. * 判断拖动后图标是否重叠
  4531. *
  4532. * @param {element} 拖动的元素
  4533. * @param {element} 桌面所有的元素
  4534. * @param {array} 拖动元素的位置
  4535. ----------[0] 上 top
  4536. ----------[1] 左 left
  4537. * @return {object} 命名空间
  4538. */
  4539. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4540. //循环所有的图标
  4541. for (var i = 0; i < childs.length; i++) {
  4542. //判断有没有和该图标诶子重叠的元素
  4543. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4544. return childs[i]; //如果有返回
  4545. }
  4546. }
  4547. }
  4548. //#endregion
  4549. //#endregion
  4550. //#region 桌面应用
  4551. /**
  4552. * 打开应用
  4553. *
  4554. * @param {string} 类型
  4555. -----------------Disk 网盘系统
  4556. -----------------PDisk 学习系统网盘
  4557. -----------------Poto 图片
  4558. -----------------Video 视频
  4559. -----------------Music 音乐
  4560. -----------------Word word
  4561. -----------------Excel excel
  4562. -----------------Txt 记事本
  4563. -----------------PB 学习系统
  4564. -----------------Blog 朋友圈系统
  4565. -----------------FTP ftp系统
  4566. -----------------Group 好友群
  4567. -----------------SY 首页系统
  4568. -----------------Set 个人设置
  4569. -----------------XSet 系统设置
  4570. -----------------App 我们所有的app
  4571. -----------------BC c.1473.cn 平台
  4572. -----------------CWeb d.1473.cn 变成平台
  4573. -----------------其他的外联系统 我们统一用iframe打开
  4574. * @param {array} 类型
  4575. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4576. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4577. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4578. 如果第一个参数为其他,则无第二个参数
  4579. * @returns {array}
  4580. */
  4581. window.addEventListener('message', function (e) { // 监听 message 事件
  4582. // alert(e.data.type);
  4583. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4584. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4585. //3是展示全部阶段 2学生 1老师 4专家
  4586. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4587. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4588. //3是展示全部阶段 2学生 1老师 4专家
  4589. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4590. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4591. //3是展示全部阶段 2学生 1老师 4专家
  4592. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4593. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4594. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4595. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4596. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4597. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4598. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4599. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4600. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4601. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4602. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4603. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4604. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4605. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4606. //3是展示全部阶段 2学生 1老师 4专家
  4607. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4608. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4609. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4610. U.MD.D.I.selectUser();
  4611. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4612. var _formel = document.getElementById("study");
  4613. U.UF.F.windowZooming(_formel);
  4614. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4615. var _formel = document.getElementById("studyDetail");
  4616. U.UF.F.windowZooming(_formel);
  4617. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4618. var _formel = document.getElementById("studyDetail");
  4619. U.UF.F.windowZooming(_formel);
  4620. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4621. var _formel = document.getElementById("studentStudy");
  4622. U.UF.F.windowZooming(_formel);
  4623. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4624. // var _formel = document.getElementById("study");
  4625. //如果最大化了,那么就把他缩小
  4626. // if (_formel.ismaximize) {
  4627. // return;
  4628. // }
  4629. // U.UF.F.windowZooming(_formel);
  4630. // U.UF.F.topWindow(_formel);
  4631. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4632. // var _formel = document.getElementById("studyDetail");
  4633. //如果最大化了,那么就把他缩小
  4634. // if (_formel.ismaximize) {
  4635. // return;
  4636. // }
  4637. // U.UF.F.windowZooming(_formel);
  4638. // U.UF.F.topWindow(_formel);
  4639. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4640. // var _formel = document.getElementById("studentStudy");
  4641. // if (_formel.ismaximize) {
  4642. // return;
  4643. // }
  4644. // U.UF.F.windowZooming(_formel);
  4645. // U.UF.F.topWindow(_formel);
  4646. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4647. var _formel = document.getElementById("study");
  4648. // if (_formel.ismaximize) {
  4649. // return;
  4650. // }
  4651. // U.UF.F.windowZooming(_formel);
  4652. U.UF.F.topWindow(_formel);
  4653. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4654. var _formel = document.getElementById("studentIndex");
  4655. U.UF.F.windowZooming(_formel);
  4656. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4657. var _formel = document.getElementById("studyDetailS");
  4658. U.UF.F.windowZooming(_formel);
  4659. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4660. var _formel = document.getElementById("studioIndex");
  4661. U.UF.F.windowZooming(_formel);
  4662. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4663. var _formel = document.getElementById("studyDetailStudio");
  4664. U.UF.F.windowZooming(_formel);
  4665. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4666. var _formel = document.getElementById("studyDetailStudio");
  4667. U.UF.F.windowZooming(_formel);
  4668. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4669. var _formel = document.getElementById("studyDetailNT");
  4670. U.UF.F.windowZooming(_formel);
  4671. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4672. var _formel = document.getElementById("studyDetailS");
  4673. U.UF.F.windowZooming(_formel);
  4674. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4675. var _formel = document.getElementById("studyDetailS");
  4676. U.UF.F.topWindow(_formel);
  4677. } else if (e.data.tools && e.data.tools == "1") {
  4678. // U.MD.D.I.openApplication("whiteboard")
  4679. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4680. } else if (e.data.tools && e.data.tools == "2") {
  4681. U.MD.D.I.openApplication("note")
  4682. } else if (e.data.tools && e.data.tools == "3") {
  4683. // U.MD.D.I.openApplication("mind")
  4684. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4685. } else if (e.data.tools && e.data.tools == "4") {
  4686. U.MD.D.I.openApplication("investigation")
  4687. } else if (e.data.tools && e.data.tools == "6") {
  4688. // U.MD.D.I.openApplication("doc")
  4689. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4690. } else if (e.data.tools && e.data.tools == "7") {
  4691. // U.MD.D.I.openApplication("mindNetwork")
  4692. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4693. } else if (e.data.tools && e.data.tools == "8") {
  4694. U.MD.D.I.openApplication("library")
  4695. } else if (e.data.tools && e.data.tools == "17") {
  4696. U.MD.D.I.openApplication("stuLibrary")
  4697. } else if (e.data.tools && e.data.tools == "18") {
  4698. U.MD.D.I.openApplication("train")
  4699. } else if (e.data.tools && e.data.tools == "21") {
  4700. U.MD.D.I.openApplication("program")
  4701. } else if (e.data.tools && e.data.tools == "22") {
  4702. U.MD.D.I.openApplication("AIprogram2")
  4703. } else if (e.data.tools && e.data.tools == "23") {
  4704. U.MD.D.I.openApplication("Pythonprogram")
  4705. } else if (e.data.tools && e.data.tools == "24") {
  4706. U.MD.D.I.openApplication("AIprogram")
  4707. } else if (e.data.tools && e.data.tools == "25") {
  4708. U.MD.D.I.openApplication("sys")
  4709. } else if (e.data.tools && e.data.tools == "26") {
  4710. // U.MD.D.I.openApplication("courseDesign")
  4711. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4712. } else if (e.data.tools && e.data.tools == "31") {
  4713. U.MD.D.I.openApplication("netWorkPanel")
  4714. } else if (e.data.tools && e.data.tools == "32") {
  4715. U.MD.D.I.openApplication("codeEdit")
  4716. } else if (e.data.tools && e.data.tools == "57") {
  4717. U.MD.D.I.openApplication("CocoPi")
  4718. } else if (e.data.tools && e.data.tools == "63") {
  4719. U.MD.D.I.openApplication("Wood")
  4720. } else if (e.data.tools && e.data.tools == "58") {
  4721. U.MD.D.I.openApplication("car")
  4722. } else if (e.data.tools && e.data.tools == "59") {
  4723. U.MD.D.I.openApplication("lineSearch")
  4724. } else if (e.data.tools && e.data.tools == "60") {
  4725. U.MD.D.I.openApplication("deepLearning")
  4726. } else if (e.data.tools && e.data.tools == "61") {
  4727. U.MD.D.I.openApplication("allHistory")
  4728. } else if (e.data.tools && e.data.tools == "28") {
  4729. U.MD.D.I.openApplication("translation")
  4730. } else if (e.data.tools && e.data.tools == "37") {
  4731. U.MD.D.I.openApplication("mohe")
  4732. } else if (e.data.tools && e.data.tools == "38") {
  4733. U.MD.D.I.openApplication("24game")
  4734. } else if (e.data.tools && e.data.tools == "39") {
  4735. U.MD.D.I.openApplication("GeoGebra")
  4736. } else if (e.data.tools && e.data.tools == "43") {
  4737. U.MD.D.I.openApplication("studentEvaluate")
  4738. } else if (e.data.tools && e.data.tools == "44") {
  4739. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4740. } else if (e.data.tools && e.data.tools == "46") {
  4741. U.MD.D.I.openApplication("project")
  4742. } else if (e.data.tools && e.data.tools == "71") {
  4743. U.MD.D.I.openApplication("aigptCourse")
  4744. } else if (e.data.tools && e.data.tools == "1s") {
  4745. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4746. } else if (e.data.tools && e.data.tools == "3s") {
  4747. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4748. } else if (e.data.tools && e.data.tools == "6s") {
  4749. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4750. } else if (e.data.tools && e.data.tools == "1studio") {
  4751. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4752. } else if (e.data.tools && e.data.tools == "3studio") {
  4753. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4754. } else if (e.data.tools && e.data.tools == "6studio") {
  4755. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4756. } else if (e.data.tools && e.data.tools == "3y") {
  4757. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4758. } else if (e.data.tools && e.data.tools == "1y") {
  4759. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4760. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4761. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4762. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4763. U.MD.D.I.openApplication("AIAnalyse")
  4764. } else if (e.data.tools && e.data.tools == "1teacher") {
  4765. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4766. } else if (e.data.tools && e.data.tools == "3teacher") {
  4767. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4768. } else if (e.data.tools && e.data.tools == "7teacher") {
  4769. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4770. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4771. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4772. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4773. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4774. } else if (e.data.tools && e.data.tools == "1E") {
  4775. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4776. } else if (e.data.tools && e.data.tools == "3E") {
  4777. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4778. } else if (e.data.tools && e.data.tools == "57y") {
  4779. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4780. } else if (e.data.tools && e.data.tools == "57u") {
  4781. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4782. } else if (e.data.tools && e.data.tools == "57teacher") {
  4783. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4784. } else if (e.data.tools && e.data.tools == "64") {
  4785. U.MD.D.I.openApplication("AIChat")
  4786. } else if (e.data.tools && e.data.tools == "66") {
  4787. U.MD.D.I.openApplication("formulaEdi")
  4788. } else if (e.data.tools && e.data.tools == "67") {
  4789. U.MD.D.I.openApplication("molStr")
  4790. } else if (e.data.tools && e.data.tools == "68") {
  4791. U.MD.D.I.openApplication("timeAxis")
  4792. } else if (e.data.tools && e.data.tools == "openCourse") {
  4793. let _data = {
  4794. typea: e.data.typea || '',
  4795. typeb: e.data.typeb || '',
  4796. typed: e.data.typed || '',
  4797. }
  4798. U.MD.D.I.openInApplication("index", _data)
  4799. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4800. let _data = {
  4801. classid: e.data.classid || '',
  4802. }
  4803. U.MD.D.I.openInApplication("dataClass", _data)
  4804. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4805. let _data = {
  4806. cid: e.data.cid || '',
  4807. gid: e.data.gid || '',
  4808. }
  4809. U.MD.D.I.openInApplication("opencCscl", _data)
  4810. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4811. U.MD.D.I.openApplication("dataBoardTest")
  4812. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4813. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4814. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4815. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4816. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4817. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4818. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  4819. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  4820. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4821. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4822. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4823. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4824. }else if (e.data.tools && e.data.tools == "loginSz") {
  4825. U.MD.D.I.openInApplication("loginSz")
  4826. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4827. if($('#classroom_observation_board')[0]){
  4828. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4829. }
  4830. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4831. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4832. if($('#classroom_observation_ob_comment')[0]){
  4833. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4834. }
  4835. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4836. }else if (e.data.tools && e.data.tools == "logout"){
  4837. U.MD.U.LO.logoutSystem()
  4838. }else if (e.data.tools && e.data.tools == "getLogin"){
  4839. let _iframe = $('#UI_Login')[0];
  4840. if (_iframe) {
  4841. var userInfo = US.userInfo;
  4842. var type = 2
  4843. if(userInfo && userInfo.userid){
  4844. type = 1
  4845. }
  4846. _contentWindow = _iframe.contentWindow;
  4847. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  4848. }
  4849. }
  4850. });
  4851. U.MD.D.I.selectUser = function () {
  4852. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4853. if (res.value[0].length > 0) {
  4854. US.userInfo = res.value[0][0];
  4855. $(".userName")[0].innerHTML = US.userInfo.username;
  4856. }
  4857. }, [], { "type": "GET", "withCredentials": true });
  4858. }
  4859. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4860. var _userinfo = US.userInfo, //登录用户信息
  4861. _userid = US.userInfo.userid, //登录用户id
  4862. _oid = _userinfo.organizeid,
  4863. _type = US.userInfo.type,
  4864. _org = US.userInfo.org,
  4865. _role = US.userInfo.role,
  4866. _classId = US.userInfo.classid;
  4867. if (_type == 4) {
  4868. tType = 4
  4869. }
  4870. switch (str) {
  4871. case "studyDetailNT": //无终端模式
  4872. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4873. setTimeout(() => {
  4874. U.MD.U.L.login();
  4875. }, 2000);
  4876. } else {
  4877. _formdiv = new U.UF.UI.form(
  4878. "课程详情",
  4879. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailNT?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4880. "id": "studyDetailNT",
  4881. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4882. "onresize": function () { }
  4883. }, {
  4884. closecallback: function () { }
  4885. }, { "style": { "height": "36px" } }).form; //创建窗体
  4886. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4887. break;
  4888. }
  4889. case "studyDetail":
  4890. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4891. setTimeout(() => {
  4892. U.MD.U.L.login();
  4893. }, 2000);
  4894. } else {
  4895. _formdiv = new U.UF.UI.form(
  4896. "课程详情",
  4897. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetail?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4898. "id": "studyDetail",
  4899. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4900. "onresize": function () { }
  4901. }, {
  4902. closecallback: function () { }
  4903. }, { "style": { "height": "36px" } }).form; //创建窗体
  4904. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4905. break;
  4906. }
  4907. case "studyDetailTrain":
  4908. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4909. setTimeout(() => {
  4910. U.MD.U.L.login();
  4911. }, 2000);
  4912. } else {
  4913. _formdiv = new U.UF.UI.form(
  4914. "培训详情",
  4915. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailTrain?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4916. "id": "studyDetailTrain",
  4917. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4918. "onresize": function () { }
  4919. }, {
  4920. closecallback: function () { }
  4921. }, { "style": { "height": "36px" } }).form; //创建窗体
  4922. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4923. break;
  4924. }
  4925. case "studyDetailS":
  4926. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4927. setTimeout(() => {
  4928. U.MD.U.L.login();
  4929. }, 2000);
  4930. } else {
  4931. _formdiv = new U.UF.UI.form(
  4932. "项目详情",
  4933. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4934. "id": "studyDetailS",
  4935. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4936. "onresize": function () { }
  4937. }, {
  4938. closecallback: function () { }
  4939. }, { "style": { "height": "36px" } }).form; //创建窗体
  4940. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4941. break;
  4942. }
  4943. case "studyDetailStudio":
  4944. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4945. setTimeout(() => {
  4946. U.MD.U.L.login();
  4947. }, 2000);
  4948. } else {
  4949. _formdiv = new U.UF.UI.form(
  4950. "工作详情",
  4951. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailStudio?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4952. "id": "studyDetailStudio",
  4953. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4954. "onresize": function () { }
  4955. }, {
  4956. closecallback: function () { }
  4957. }, { "style": { "height": "36px" } }).form; //创建窗体
  4958. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioCourse.png)" }, "name": "工作详情", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4959. break;
  4960. }
  4961. case "studyDetailS5":
  4962. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4963. setTimeout(() => {
  4964. U.MD.U.L.login();
  4965. }, 2000);
  4966. } else {
  4967. _formdiv = new U.UF.UI.form(
  4968. "项目详情",
  4969. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/studyStudentS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4970. "id": "studyDetailS",
  4971. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4972. "onresize": function () { }
  4973. }, {
  4974. closecallback: function () { }
  4975. }, { "style": { "height": "36px" } }).form; //创建窗体
  4976. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4977. break;
  4978. }
  4979. case "studyDetailGM":
  4980. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4981. setTimeout(() => {
  4982. U.MD.U.L.login();
  4983. }, 2000);
  4984. } else {
  4985. _formdiv = new U.UF.UI.form(
  4986. "课程详情",
  4987. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4988. "id": "studyDetail",
  4989. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4990. "onresize": function () { }
  4991. }, {
  4992. closecallback: function () { }
  4993. }, { "style": { "height": "36px" } }).form; //创建窗体
  4994. _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); } }
  4995. break;
  4996. }
  4997. case "hanUrl":
  4998. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4999. setTimeout(() => {
  5000. U.MD.U.L.login();
  5001. }, 2000);
  5002. } else {
  5003. _formdiv = new U.UF.UI.form(
  5004. "汉字宫",
  5005. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//school.hanzigon.cn/?appid=734714090237947#/material/video?grade_id=62&lesson_code=621&id=2432" }), {
  5006. "id": "hanUrl",
  5007. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5008. "onresize": function () { }
  5009. }, {
  5010. closecallback: function () { }
  5011. }, { "style": { "height": "36px" } }).form; //创建窗体
  5012. _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); } }
  5013. break;
  5014. }
  5015. case "index":
  5016. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5017. setTimeout(() => {
  5018. U.MD.U.L.login();
  5019. }, 2000);
  5020. } else {
  5021. _formdiv = new U.UF.UI.form(
  5022. "课程中心",
  5023. $$("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 }), {
  5024. "id": "study",
  5025. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5026. "onresize": function () { }
  5027. }, {
  5028. closecallback: function () { }
  5029. }, { "style": { "height": "36px" } }).form; //创建窗体
  5030. _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); } }
  5031. break;
  5032. }
  5033. case "dataClass":
  5034. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5035. setTimeout(() => {
  5036. U.MD.U.L.login();
  5037. }, 2000);
  5038. } else {
  5039. _formdiv = new U.UF.UI.form(
  5040. "数据报告",
  5041. $$("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 }), {
  5042. "id": "dataClass",
  5043. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5044. "onresize": function () { }
  5045. }, {
  5046. closecallback: function () { }
  5047. }, { "style": { "height": "36px" } }).form; //创建窗体
  5048. _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); } }
  5049. break;
  5050. }
  5051. case "opencCscl":
  5052. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5053. setTimeout(() => {
  5054. U.MD.U.L.login();
  5055. }, 2000);
  5056. } else {
  5057. _formdiv = new U.UF.UI.form(
  5058. "协同建构",
  5059. $$("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 }), {
  5060. "id": "futureClass",
  5061. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5062. "onresize": function () { }
  5063. }, {
  5064. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5065. }, { "style": { "height": "36px" } }).form; //创建窗体
  5066. _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); } }
  5067. break;
  5068. }
  5069. case "openCourseUpdate":
  5070. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5071. setTimeout(() => {
  5072. U.MD.U.L.login();
  5073. }, 2000);
  5074. } else {
  5075. _formdiv = new U.UF.UI.form(
  5076. "课程管理",
  5077. $$("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 }), {
  5078. "id": "openCourseUpdate",
  5079. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5080. "onresize": function () { }
  5081. }, {
  5082. closecallback: function () { }
  5083. }, { "style": { "height": "36px" } }).form; //创建窗体
  5084. break;
  5085. }
  5086. case "openNewCourseUpdate":
  5087. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5088. setTimeout(() => {
  5089. U.MD.U.L.login();
  5090. }, 2000);
  5091. } else {
  5092. _formdiv = new U.UF.UI.form(
  5093. "课程管理",
  5094. $$("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 }), {
  5095. "id": "openCourseUpdate",
  5096. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5097. "onresize": function () { }
  5098. }, {
  5099. closecallback: function () { }
  5100. }, { "style": { "height": "36px" } }).form; //创建窗体
  5101. break;
  5102. }
  5103. case "openCourseEUpdate":
  5104. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5105. setTimeout(() => {
  5106. U.MD.U.L.login();
  5107. }, 2000);
  5108. } else {
  5109. _formdiv = new U.UF.UI.form(
  5110. "课程管理",
  5111. $$("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 }), {
  5112. "id": "openCourseUpdate",
  5113. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5114. "onresize": function () { }
  5115. }, {
  5116. closecallback: function () { }
  5117. }, { "style": { "height": "36px" } }).form; //创建窗体
  5118. break;
  5119. }
  5120. case "openCourseAiUpdate":
  5121. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5122. setTimeout(() => {
  5123. U.MD.U.L.login();
  5124. }, 2000);
  5125. } else {
  5126. _formdiv = new U.UF.UI.form(
  5127. "课程管理",
  5128. $$("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 }), {
  5129. "id": "openCourseUpdate",
  5130. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5131. "onresize": function () { }
  5132. }, {
  5133. closecallback: function () { }
  5134. }, { "style": { "height": "36px" } }).form; //创建窗体
  5135. break;
  5136. }
  5137. case "openCourseAiUpdate2":
  5138. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5139. setTimeout(() => {
  5140. U.MD.U.L.login();
  5141. }, 2000);
  5142. } else {
  5143. _formdiv = new U.UF.UI.form(
  5144. "课程管理",
  5145. $$("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 }), {
  5146. "id": "openCourseUpdate",
  5147. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5148. "onresize": function () { }
  5149. }, {
  5150. closecallback: function () { }
  5151. }, { "style": { "height": "36px" } }).form; //创建窗体
  5152. break;
  5153. }
  5154. case "openCourseNewUpdate":
  5155. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5156. setTimeout(() => {
  5157. U.MD.U.L.login();
  5158. }, 2000);
  5159. } else {
  5160. _formdiv = new U.UF.UI.form(
  5161. "课程管理",
  5162. $$("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 }), {
  5163. "id": "openCourseUpdate",
  5164. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5165. "onresize": function () { }
  5166. }, {
  5167. closecallback: function () { }
  5168. }, { "style": { "height": "36px" } }).form; //创建窗体
  5169. break;
  5170. }
  5171. case "inviteLoginSz":
  5172. _formdiv = new U.UF.UI.form(
  5173. "随机码登录",
  5174. $$("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 }), {
  5175. "id": "loginSz",
  5176. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5177. "onresize": function () { }
  5178. }, {
  5179. closecallback: function () { }
  5180. }, { "style": { "height": "36px" } }).form; //创建窗体
  5181. break;
  5182. case "loginSz":
  5183. _formdiv = new U.UF.UI.form(
  5184. "教师登录",
  5185. $$("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" }), {
  5186. "id": "loginSz",
  5187. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5188. "onresize": function () { }
  5189. }, {
  5190. closecallback: function () { }
  5191. }, { "style": { "height": "36px" } }).form; //创建窗体
  5192. break;
  5193. case "teacher":
  5194. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5195. setTimeout(() => {
  5196. U.MD.U.L.login();
  5197. }, 2000);
  5198. } else {
  5199. _formdiv = new U.UF.UI.form(
  5200. "教师管理",
  5201. $$("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 }), {
  5202. "id": "teacher",
  5203. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5204. "onresize": function () { }
  5205. }, {
  5206. closecallback: function () { }
  5207. }, { "style": { "height": "36px" } }).form; //创建窗体
  5208. break;
  5209. }
  5210. case "dataBoardSZArea":
  5211. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5212. setTimeout(() => {
  5213. U.MD.U.L.login();
  5214. }, 2000);
  5215. } else {
  5216. _formdiv = new U.UF.UI.form(
  5217. "综合数据看板",
  5218. $$("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 }), {
  5219. "id": "dataBoardSZArea",
  5220. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5221. "onresize": function () { }
  5222. }, {
  5223. closecallback: function () { }
  5224. }, { "style": { "height": "36px" } }).form; //创建窗体
  5225. break;
  5226. }
  5227. case "dataBoardSZCity":
  5228. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5229. setTimeout(() => {
  5230. U.MD.U.L.login();
  5231. }, 2000);
  5232. } else {
  5233. _formdiv = new U.UF.UI.form(
  5234. "综合数据看板",
  5235. $$("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 }), {
  5236. "id": "dataBoardSZCity",
  5237. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5238. "onresize": function () { }
  5239. }, {
  5240. closecallback: function () { }
  5241. }, { "style": { "height": "36px" } }).form; //创建窗体
  5242. break;
  5243. }
  5244. case "classroom_observation_board":
  5245. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5246. setTimeout(() => {
  5247. U.MD.U.L.login();
  5248. }, 2000);
  5249. } else {
  5250. _formdiv = new U.UF.UI.form(
  5251. "课堂观察",
  5252. $$("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 }), {
  5253. "id": "classroom_observation_board",
  5254. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5255. "onresize": function () { }
  5256. }, {
  5257. closecallback: function () { }
  5258. }, { "style": { "height": "36px" } }).form; //创建窗体
  5259. break;
  5260. }
  5261. case "classroom_observation_ob_comment":
  5262. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5263. setTimeout(() => {
  5264. U.MD.U.L.login();
  5265. }, 2000);
  5266. } else {
  5267. _formdiv = new U.UF.UI.form(
  5268. "课堂审核",
  5269. $$("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 }), {
  5270. "id": "classroom_observation_ob_comment",
  5271. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5272. "onresize": function () { }
  5273. }, {
  5274. closecallback: function () { }
  5275. }, { "style": { "height": "36px" } }).form; //创建窗体
  5276. break;
  5277. }
  5278. }
  5279. }
  5280. U.MD.D.I.openApplication = function (str, obj, info) {
  5281. obj = obj || {};
  5282. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5283. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5284. _userinfo = US.userInfo, //登录用户信息
  5285. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5286. _oid = obj.organizeid || _userinfo.organizeid,
  5287. _type = US.userInfo.type,
  5288. _org = US.userInfo.org,
  5289. _role = US.userInfo.role,
  5290. _classId = US.userInfo.classid,
  5291. _TscreenType = 1
  5292. _screenType = 2,
  5293. _SscreenType = 3;
  5294. let iframeBool = true
  5295. if(U.UF.UI.form.allForm[str]){
  5296. iframeBool = false
  5297. }
  5298. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5299. return;
  5300. }
  5301. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5302. switch (str) {
  5303. case "studnetProject": //好友打开
  5304. _formdiv = new U.UF.UI.form(
  5305. "我的项目",
  5306. $$("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 }), {
  5307. "id": "studnetProject",
  5308. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5309. "onresize": function () { }
  5310. }, {
  5311. closecallback: function () { }
  5312. }, { "style": { "height": "36px" } }).form; //创建窗体
  5313. _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); } }
  5314. break;
  5315. case "studentEvaluate": //好友打开
  5316. _formdiv = new U.UF.UI.form(
  5317. "我的评价",
  5318. $$("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 }), {
  5319. "id": "studentEvaluate",
  5320. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5321. "onresize": function () { }
  5322. }, {
  5323. closecallback: function () { }
  5324. }, { "style": { "height": "36px" } }).form; //创建窗体
  5325. _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); } }
  5326. break;
  5327. case "my":
  5328. _formdiv = new U.UF.UI.form(
  5329. "我的资料",
  5330. $$("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 }), {
  5331. "id": "my",
  5332. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5333. "onresize": function () { }
  5334. }, {
  5335. closecallback: function () { }
  5336. }, { "style": { "height": "36px" } }).form; //创建窗体
  5337. _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); } }
  5338. break;
  5339. case "program":
  5340. _formdiv = new U.UF.UI.form(
  5341. "编程平台",
  5342. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5343. "id": "program",
  5344. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5345. "onresize": function () { }
  5346. }, {
  5347. closecallback: function () { }
  5348. }, { "style": { "height": "36px" } }).form; //创建窗体
  5349. _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); } }
  5350. break;
  5351. case "library":
  5352. _formdiv = new U.UF.UI.form(
  5353. "素材库",
  5354. $$("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 }), {
  5355. "id": "library",
  5356. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5357. "onresize": function () { }
  5358. }, {
  5359. closecallback: function () { }
  5360. }, { "style": { "height": "36px" } }).form; //创建窗体
  5361. _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); } }
  5362. break;
  5363. case "whiteboard":
  5364. _formdiv = new U.UF.UI.form(
  5365. "电子白板",
  5366. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5367. "id": "whiteboard",
  5368. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5369. "onresize": function () { }
  5370. }, {
  5371. closecallback: function () { }
  5372. }, { "style": { "height": "36px" } }).form; //创建窗体
  5373. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5374. break;
  5375. case "investigation":
  5376. _formdiv = new U.UF.UI.form(
  5377. "问卷调查",
  5378. $$("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 }), {
  5379. "id": "investigation",
  5380. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5381. "onresize": function () { }
  5382. }, {
  5383. closecallback: function () { }
  5384. }, { "style": { "height": "36px" } }).form; //创建窗体
  5385. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5386. break;
  5387. case "note":
  5388. _formdiv = new U.UF.UI.form(
  5389. "便签分类",
  5390. $$("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 }), {
  5391. "id": "note",
  5392. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5393. "onresize": function () { }
  5394. }, {
  5395. closecallback: function () { }
  5396. }, { "style": { "height": "36px" } }).form; //创建窗体
  5397. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5398. break;
  5399. // case "score":
  5400. // _formdiv = new U.UF.UI.form(
  5401. // "量规评分",
  5402. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5403. // "id": "score",
  5404. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5405. // "onresize": function() {}
  5406. // }, {
  5407. // closecallback: function() {}
  5408. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5409. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  5410. // break;
  5411. case "mind":
  5412. _formdiv = new U.UF.UI.form(
  5413. "思维导图",
  5414. $$("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"
  5415. "id": "mind",
  5416. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5417. "onresize": function () { }
  5418. }, {
  5419. closecallback: function () { }
  5420. }, { "style": { "height": "36px" } }).form; //创建窗体
  5421. _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); } }
  5422. break;
  5423. case "doc":
  5424. // U.MD.D.I.isRoom();
  5425. _formdiv = new U.UF.UI.form(
  5426. "协同文档",
  5427. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5428. "id": "doc",
  5429. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5430. "onresize": function () { }
  5431. }, {
  5432. closecallback: function () { }
  5433. }, { "style": { "height": "36px" } }).form; //创建窗体
  5434. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5435. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5436. // })
  5437. _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); } }
  5438. break;
  5439. case "studentStudy":
  5440. _formdiv = new U.UF.UI.form(
  5441. "课程中心",
  5442. $$("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
  5443. "id": "studentStudy",
  5444. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5445. "onresize": function () { }
  5446. }, {
  5447. closecallback: function () { }
  5448. }, { "style": { "height": "36px" } }).form; //创建窗体
  5449. _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); } }
  5450. break;
  5451. case "train": //好友打开
  5452. _formdiv = new U.UF.UI.form(
  5453. "训练平台",
  5454. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5455. "id": "train",
  5456. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5457. "onresize": function () { }
  5458. }, {
  5459. closecallback: function () { }
  5460. }, { "style": { "height": "36px" } }).form; //创建窗体
  5461. _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); } }
  5462. break;
  5463. case "mindNetwork": //好友打开
  5464. _formdiv = new U.UF.UI.form(
  5465. "思维网格",
  5466. $$("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 }), {
  5467. "id": "mindNetwork",
  5468. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5469. "onresize": function () { }
  5470. }, {
  5471. closecallback: function () { }
  5472. }, { "style": { "height": "36px" } }).form; //创建窗体
  5473. _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); } }
  5474. break;
  5475. case "studentClassRoom": //好友打开
  5476. _formdiv = new U.UF.UI.form(
  5477. "实时课堂",
  5478. $$("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 }), {
  5479. "id": "studentClassRoom",
  5480. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5481. "onresize": function () { }
  5482. }, {
  5483. closecallback: function () { }
  5484. }, { "style": { "height": "36px" } }).form; //创建窗体
  5485. _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); } }
  5486. setTimeout(() => {
  5487. U.UF.F.windowZooming(_formdiv)
  5488. }, 0);
  5489. break;
  5490. }
  5491. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5492. switch (str) {
  5493. case "studnetProject": //好友打开
  5494. _formdiv = new U.UF.UI.form(
  5495. "我的项目",
  5496. $$("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 }), {
  5497. "id": "studnetProject",
  5498. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5499. "onresize": function () { }
  5500. }, {
  5501. closecallback: function () { }
  5502. }, { "style": { "height": "36px" } }).form; //创建窗体
  5503. _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); } }
  5504. break;
  5505. case "studentEvaluate": //好友打开
  5506. _formdiv = new U.UF.UI.form(
  5507. "我的评价",
  5508. $$("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 }), {
  5509. "id": "studentEvaluate",
  5510. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5511. "onresize": function () { }
  5512. }, {
  5513. closecallback: function () { }
  5514. }, { "style": { "height": "36px" } }).form; //创建窗体
  5515. _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); } }
  5516. break;
  5517. case "my":
  5518. _formdiv = new U.UF.UI.form(
  5519. "我的资料",
  5520. $$("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 }), {
  5521. "id": "my",
  5522. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5523. "onresize": function () { }
  5524. }, {
  5525. closecallback: function () { }
  5526. }, { "style": { "height": "36px" } }).form; //创建窗体
  5527. _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); } }
  5528. break;
  5529. case "program":
  5530. _formdiv = new U.UF.UI.form(
  5531. "编程平台",
  5532. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5533. "id": "program",
  5534. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5535. "onresize": function () { }
  5536. }, {
  5537. closecallback: function () { }
  5538. }, { "style": { "height": "36px" } }).form; //创建窗体
  5539. _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); } }
  5540. break;
  5541. case "library":
  5542. _formdiv = new U.UF.UI.form(
  5543. "素材库",
  5544. $$("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 }), {
  5545. "id": "library",
  5546. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5547. "onresize": function () { }
  5548. }, {
  5549. closecallback: function () { }
  5550. }, { "style": { "height": "36px" } }).form; //创建窗体
  5551. _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); } }
  5552. break;
  5553. case "whiteboard":
  5554. _formdiv = new U.UF.UI.form(
  5555. "电子白板",
  5556. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5557. "id": "whiteboard",
  5558. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5559. "onresize": function () { }
  5560. }, {
  5561. closecallback: function () { }
  5562. }, { "style": { "height": "36px" } }).form; //创建窗体
  5563. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5564. break;
  5565. case "investigation":
  5566. _formdiv = new U.UF.UI.form(
  5567. "问卷调查",
  5568. $$("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 }), {
  5569. "id": "investigation",
  5570. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5571. "onresize": function () { }
  5572. }, {
  5573. closecallback: function () { }
  5574. }, { "style": { "height": "36px" } }).form; //创建窗体
  5575. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5576. break;
  5577. case "note":
  5578. _formdiv = new U.UF.UI.form(
  5579. "便签分类",
  5580. $$("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 }), {
  5581. "id": "note",
  5582. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5583. "onresize": function () { }
  5584. }, {
  5585. closecallback: function () { }
  5586. }, { "style": { "height": "36px" } }).form; //创建窗体
  5587. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5588. break;
  5589. // case "score":
  5590. // _formdiv = new U.UF.UI.form(
  5591. // "量规评分",
  5592. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5593. // "id": "score",
  5594. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5595. // "onresize": function() {}
  5596. // }, {
  5597. // closecallback: function() {}
  5598. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5599. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  5600. // break;
  5601. case "mind":
  5602. _formdiv = new U.UF.UI.form(
  5603. "思维导图",
  5604. $$("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"
  5605. "id": "mind",
  5606. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5607. "onresize": function () { }
  5608. }, {
  5609. closecallback: function () { }
  5610. }, { "style": { "height": "36px" } }).form; //创建窗体
  5611. _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); } }
  5612. break;
  5613. case "doc":
  5614. // U.MD.D.I.isRoom();
  5615. _formdiv = new U.UF.UI.form(
  5616. "协同文档",
  5617. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5618. "id": "doc",
  5619. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5620. "onresize": function () { }
  5621. }, {
  5622. closecallback: function () { }
  5623. }, { "style": { "height": "36px" } }).form; //创建窗体
  5624. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5625. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5626. })
  5627. _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); } }
  5628. break;
  5629. case "train": //好友打开
  5630. _formdiv = new U.UF.UI.form(
  5631. "训练平台",
  5632. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5633. "id": "train",
  5634. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5635. "onresize": function () { }
  5636. }, {
  5637. closecallback: function () { }
  5638. }, { "style": { "height": "36px" } }).form; //创建窗体
  5639. _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); } }
  5640. break;
  5641. case "studentStudy":
  5642. _formdiv = new U.UF.UI.form(
  5643. "课程中心",
  5644. $$("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
  5645. "id": "studentStudy",
  5646. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5647. "onresize": function () { }
  5648. }, {
  5649. closecallback: function () { }
  5650. }, { "style": { "height": "36px" } }).form; //创建窗体
  5651. _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); } }
  5652. break;
  5653. case "mindNetwork": //好友打开
  5654. _formdiv = new U.UF.UI.form(
  5655. "思维网格",
  5656. $$("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 }), {
  5657. "id": "mindNetwork",
  5658. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5659. "onresize": function () { }
  5660. }, {
  5661. closecallback: function () { }
  5662. }, { "style": { "height": "36px" } }).form; //创建窗体
  5663. _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); } }
  5664. break;
  5665. case "studentClassRoom": //好友打开
  5666. _formdiv = new U.UF.UI.form(
  5667. "实时课堂",
  5668. $$("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 }), {
  5669. "id": "studentClassRoom",
  5670. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5671. "onresize": function () { }
  5672. }, {
  5673. closecallback: function () { }
  5674. }, { "style": { "height": "36px" } }).form; //创建窗体
  5675. _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); } }
  5676. setTimeout(() => {
  5677. U.UF.F.windowZooming(_formdiv)
  5678. }, 0);
  5679. break;
  5680. }
  5681. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5682. //选择应用处理
  5683. switch (str) {
  5684. case "project": //好友打开
  5685. _formdiv = new U.UF.UI.form(
  5686. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5687. $$("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 }), {
  5688. "id": "project",
  5689. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5690. "onresize": function () { }
  5691. }, {
  5692. closecallback: function () { }
  5693. }, { "style": { "height": "36px" } }).form; //创建窗体
  5694. _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); } }
  5695. break;
  5696. case "student":
  5697. _formdiv = new U.UF.UI.form(
  5698. "学生管理",
  5699. $$("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 }), {
  5700. "id": "student",
  5701. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5702. "onresize": function () { }
  5703. }, {
  5704. closecallback: function () { }
  5705. }, { "style": { "height": "36px" } }).form; //创建窗体
  5706. _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); } }
  5707. break;
  5708. case "evaluate":
  5709. _formdiv = new U.UF.UI.form(
  5710. "学生评价",
  5711. $$("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 }), {
  5712. "id": "evaluate",
  5713. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5714. "onresize": function () { }
  5715. }, {
  5716. closecallback: function () { }
  5717. }, { "style": { "height": "36px" } }).form; //创建窗体
  5718. _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); } }
  5719. break;
  5720. case "sys":
  5721. _formdiv = new U.UF.UI.form(
  5722. "目标管理",
  5723. $$("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 }), {
  5724. "id": "sys",
  5725. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5726. "onresize": function () { }
  5727. }, {
  5728. closecallback: function () { }
  5729. }, { "style": { "height": "36px" } }).form; //创建窗体
  5730. _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); } }
  5731. break;
  5732. case "courseDesign":
  5733. _formdiv = new U.UF.UI.form(
  5734. "项目设计",
  5735. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5736. "id": "courseDesign",
  5737. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5738. "onresize": function () { }
  5739. }, {
  5740. closecallback: function () { }
  5741. }, { "style": { "height": "36px" } }).form; //创建窗体
  5742. _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); } }
  5743. break;
  5744. case "program":
  5745. _formdiv = new U.UF.UI.form(
  5746. "编程平台",
  5747. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5748. "id": "program",
  5749. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5750. "onresize": function () { }
  5751. }, {
  5752. closecallback: function () { }
  5753. }, { "style": { "height": "36px" } }).form; //创建窗体
  5754. _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); } }
  5755. break;
  5756. case "class":
  5757. _formdiv = new U.UF.UI.form(
  5758. "班级管理",
  5759. $$("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 }), {
  5760. "id": "class",
  5761. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5762. "onresize": function () { }
  5763. }, {
  5764. closecallback: function () { }
  5765. }, { "style": { "height": "36px" } }).form; //创建窗体
  5766. _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); } }
  5767. break;
  5768. case "Grade":
  5769. _formdiv = new U.UF.UI.form(
  5770. "年级管理",
  5771. $$("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 }), {
  5772. "id": "Grade",
  5773. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5774. "onresize": function () { }
  5775. }, {
  5776. closecallback: function () { }
  5777. }, { "style": { "height": "36px" } }).form; //创建窗体
  5778. _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); } }
  5779. break;
  5780. case "teacherOffice":
  5781. _formdiv = new U.UF.UI.form(
  5782. "教研室",
  5783. $$("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 }), {
  5784. "id": "teacherOffice",
  5785. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5786. "onresize": function () { }
  5787. }, {
  5788. closecallback: function () { }
  5789. }, { "style": { "height": "36px" } }).form; //创建窗体
  5790. _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); } }
  5791. break;
  5792. case "my":
  5793. _formdiv = new U.UF.UI.form(
  5794. "我的资料",
  5795. $$("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 }), {
  5796. "id": "my",
  5797. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5798. "onresize": function () { }
  5799. }, {
  5800. closecallback: function () { }
  5801. }, { "style": { "height": "36px" } }).form; //创建窗体
  5802. _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); } }
  5803. break;
  5804. case "notice":
  5805. _formdiv = new U.UF.UI.form(
  5806. "通知公告",
  5807. $$("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 }), {
  5808. "id": "notice",
  5809. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5810. "onresize": function () { }
  5811. }, {
  5812. closecallback: function () { }
  5813. }, { "style": { "height": "36px" } }).form; //创建窗体
  5814. _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); } }
  5815. break;
  5816. case "library":
  5817. _formdiv = new U.UF.UI.form(
  5818. "素材库",
  5819. $$("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 }), {
  5820. "id": "library",
  5821. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5822. "onresize": function () { }
  5823. }, {
  5824. closecallback: function () { }
  5825. }, { "style": { "height": "36px" } }).form; //创建窗体
  5826. _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); } }
  5827. break;
  5828. case "whiteboard":
  5829. _formdiv = new U.UF.UI.form(
  5830. "电子白板",
  5831. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5832. "id": "whiteboard",
  5833. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5834. "onresize": function () { }
  5835. }, {
  5836. closecallback: function () { }
  5837. }, { "style": { "height": "36px" } }).form; //创建窗体
  5838. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5839. break;
  5840. case "investigation":
  5841. _formdiv = new U.UF.UI.form(
  5842. "问卷调查",
  5843. $$("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 }), {
  5844. "id": "investigation",
  5845. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5846. "onresize": function () { }
  5847. }, {
  5848. closecallback: function () { }
  5849. }, { "style": { "height": "36px" } }).form; //创建窗体
  5850. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5851. break;
  5852. case "note":
  5853. _formdiv = new U.UF.UI.form(
  5854. "便签分类",
  5855. $$("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 }), {
  5856. "id": "note",
  5857. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5858. "onresize": function () { }
  5859. }, {
  5860. closecallback: function () { }
  5861. }, { "style": { "height": "36px" } }).form; //创建窗体
  5862. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5863. break;
  5864. // case "score":
  5865. // _formdiv = new U.UF.UI.form(
  5866. // "量规评分",
  5867. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5868. // "id": "score",
  5869. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5870. // "onresize": function() {}
  5871. // }, {
  5872. // closecallback: function() {}
  5873. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5874. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  5875. // break;
  5876. case "mind":
  5877. _formdiv = new U.UF.UI.form(
  5878. "思维导图",
  5879. $$("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"
  5880. "id": "mind",
  5881. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5882. "onresize": function () { }
  5883. }, {
  5884. closecallback: function () { }
  5885. }, { "style": { "height": "36px" } }).form; //创建窗体
  5886. _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); } }
  5887. break;
  5888. case "doc":
  5889. // U.MD.D.I.isRoom();
  5890. _formdiv = new U.UF.UI.form(
  5891. "协同文档",
  5892. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5893. "id": "doc",
  5894. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5895. "onresize": function () { }
  5896. }, {
  5897. closecallback: function () { }
  5898. }, { "style": { "height": "36px" } }).form; //创建窗体
  5899. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5900. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5901. })
  5902. _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); } }
  5903. break;
  5904. case "study":
  5905. _formdiv = new U.UF.UI.form(
  5906. "课程中心",
  5907. $$("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
  5908. "id": "study",
  5909. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5910. "onresize": function () { }
  5911. }, {
  5912. closecallback: function () { }
  5913. }, { "style": { "height": "36px" } }).form; //创建窗体
  5914. _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); } }
  5915. break;
  5916. case "mindNetwork": //好友打开
  5917. _formdiv = new U.UF.UI.form(
  5918. "思维网格",
  5919. $$("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 }), {
  5920. "id": "mindNetwork",
  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/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5927. break;
  5928. case "train": //好友打开
  5929. _formdiv = new U.UF.UI.form(
  5930. "训练平台",
  5931. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5932. "id": "mindNetwork",
  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/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5939. break;
  5940. case "teacherClassRoom": //好友打开
  5941. _formdiv = new U.UF.UI.form(
  5942. "实时课堂",
  5943. $$("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 }), {
  5944. "id": "teacherClassRoom",
  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/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5951. setTimeout(() => {
  5952. U.UF.F.windowZooming(_formdiv)
  5953. }, 0);
  5954. break;
  5955. }
  5956. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5957. switch (str) {
  5958. case "project": //好友打开
  5959. _formdiv = new U.UF.UI.form(
  5960. "课程管理",
  5961. $$("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 }), {
  5962. "id": "project",
  5963. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5964. "onresize": function () { }
  5965. }, {
  5966. closecallback: function () { }
  5967. }, { "style": { "height": "36px" } }).form; //创建窗体
  5968. _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); } }
  5969. break;
  5970. case "evaluate":
  5971. _formdiv = new U.UF.UI.form(
  5972. "学生评价",
  5973. $$("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 }), {
  5974. "id": "evaluate",
  5975. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5976. "onresize": function () { }
  5977. }, {
  5978. closecallback: function () { }
  5979. }, { "style": { "height": "36px" } }).form; //创建窗体
  5980. _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); } }
  5981. break;
  5982. case "notice":
  5983. _formdiv = new U.UF.UI.form(
  5984. "通知公告",
  5985. $$("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 }), {
  5986. "id": "notice",
  5987. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5988. "onresize": function () { }
  5989. }, {
  5990. closecallback: function () { }
  5991. }, { "style": { "height": "36px" } }).form; //创建窗体
  5992. _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); } }
  5993. break;
  5994. case "stuLibrary":
  5995. _formdiv = new U.UF.UI.form(
  5996. "学习资料",
  5997. $$("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 }), {
  5998. "id": "stuLibrary",
  5999. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6000. "onresize": function () { }
  6001. }, {
  6002. closecallback: function () { }
  6003. }, { "style": { "height": "36px" } }).form; //创建窗体
  6004. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/stuLibrary.png)" }, "name": "学习资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6005. break;
  6006. case "program":
  6007. _formdiv = new U.UF.UI.form(
  6008. "编程平台",
  6009. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6010. "id": "program",
  6011. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6012. "onresize": function () { }
  6013. }, {
  6014. closecallback: function () { }
  6015. }, { "style": { "height": "36px" } }).form; //创建窗体
  6016. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6017. break;
  6018. case "whiteboard":
  6019. _formdiv = new U.UF.UI.form(
  6020. "电子白板",
  6021. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6022. "id": "whiteboard",
  6023. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6024. "onresize": function () { }
  6025. }, {
  6026. closecallback: function () { }
  6027. }, { "style": { "height": "36px" } }).form; //创建窗体
  6028. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6029. break;
  6030. case "investigation":
  6031. _formdiv = new U.UF.UI.form(
  6032. "问卷调查",
  6033. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  6034. "id": "investigation",
  6035. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6036. "onresize": function () { }
  6037. }, {
  6038. closecallback: function () { }
  6039. }, { "style": { "height": "36px" } }).form; //创建窗体
  6040. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6041. break;
  6042. case "mind":
  6043. _formdiv = new U.UF.UI.form(
  6044. "思维导图",
  6045. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  6046. "id": "mind",
  6047. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6048. "onresize": function () { }
  6049. }, {
  6050. closecallback: function () { }
  6051. }, { "style": { "height": "36px" } }).form; //创建窗体
  6052. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6053. break;
  6054. case "doc":
  6055. // U.MD.D.I.isRoom();
  6056. _formdiv = new U.UF.UI.form(
  6057. "协同文档",
  6058. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6059. "id": "doc",
  6060. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6061. "onresize": function () { }
  6062. }, {
  6063. closecallback: function () { }
  6064. }, { "style": { "height": "36px" } }).form; //创建窗体
  6065. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6066. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6067. })
  6068. _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); } }
  6069. break;
  6070. case "study":
  6071. _formdiv = new U.UF.UI.form(
  6072. "课程中心",
  6073. $$("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
  6074. "id": "study",
  6075. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6076. "onresize": function () { }
  6077. }, {
  6078. closecallback: function () { }
  6079. }, { "style": { "height": "36px" } }).form; //创建窗体
  6080. _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); } }
  6081. break;
  6082. case "mindNetwork": //好友打开
  6083. _formdiv = new U.UF.UI.form(
  6084. "思维网格",
  6085. $$("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 }), {
  6086. "id": "mindNetwork",
  6087. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6088. "onresize": function () { }
  6089. }, {
  6090. closecallback: function () { }
  6091. }, { "style": { "height": "36px" } }).form; //创建窗体
  6092. _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); } }
  6093. break;
  6094. case "train": //好友打开
  6095. _formdiv = new U.UF.UI.form(
  6096. "训练平台",
  6097. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6098. "id": "train",
  6099. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6100. "onresize": function () { }
  6101. }, {
  6102. closecallback: function () { }
  6103. }, { "style": { "height": "36px" } }).form; //创建窗体
  6104. _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); } }
  6105. break;
  6106. case "sys":
  6107. _formdiv = new U.UF.UI.form(
  6108. "目标管理",
  6109. $$("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 }), {
  6110. "id": "sys",
  6111. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6112. "onresize": function () { }
  6113. }, {
  6114. closecallback: function () { }
  6115. }, { "style": { "height": "36px" } }).form; //创建窗体
  6116. _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); } }
  6117. break;
  6118. case "courseDesign":
  6119. _formdiv = new U.UF.UI.form(
  6120. "项目设计",
  6121. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6122. "id": "courseDesign",
  6123. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6124. "onresize": function () { }
  6125. }, {
  6126. closecallback: function () { }
  6127. }, { "style": { "height": "36px" } }).form; //创建窗体
  6128. _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); } }
  6129. break;
  6130. }
  6131. } else if (!_type) {
  6132. switch (str) {
  6133. case "my":
  6134. _formdiv = new U.UF.UI.form(
  6135. "我的资料",
  6136. $$("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 }), {
  6137. "id": "my",
  6138. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6139. "onresize": function () { }
  6140. }, {
  6141. closecallback: function () { }
  6142. }, { "style": { "height": "36px" } }).form; //创建窗体
  6143. _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); } }
  6144. break;
  6145. }
  6146. }
  6147. switch (str) {
  6148. // AIprogram2 AI体验 aihub.cocorobo.cn
  6149. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6150. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6151. case "formulaEdi": //公式编辑
  6152. _formdiv = new U.UF.UI.form(
  6153. "公式编辑",
  6154. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6155. "id": "formulaEdi",
  6156. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6157. "onresize": function () { }
  6158. }, {
  6159. closecallback: function () { }
  6160. }, { "style": { "height": "36px" } }).form; //创建窗体
  6161. _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); } }
  6162. break;
  6163. case "molStr": //分子结构
  6164. _formdiv = new U.UF.UI.form(
  6165. "分子结构",
  6166. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6167. "id": "molStr",
  6168. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6169. "onresize": function () { }
  6170. }, {
  6171. closecallback: function () { }
  6172. }, { "style": { "height": "36px" } }).form; //创建窗体
  6173. _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); } }
  6174. break;
  6175. case "timeAxis": //时间轴
  6176. _formdiv = new U.UF.UI.form(
  6177. "时间轴",
  6178. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6179. "id": "timeAxis",
  6180. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6181. "onresize": function () { }
  6182. }, {
  6183. closecallback: function () { }
  6184. }, { "style": { "height": "36px" } }).form; //创建窗体
  6185. _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); } }
  6186. break;
  6187. case "AIprogram2": //AI体验
  6188. _formdiv = new U.UF.UI.form(
  6189. "AI体验",
  6190. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6191. "id": "AIprogram2",
  6192. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6193. "onresize": function () { }
  6194. }, {
  6195. closecallback: function () { }
  6196. }, { "style": { "height": "36px" } }).form; //创建窗体
  6197. _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); } }
  6198. break;
  6199. case "Pythonprogram": //python编程
  6200. _formdiv = new U.UF.UI.form(
  6201. "Python编程",
  6202. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6203. "id": "Pythonprogram",
  6204. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6205. "onresize": function () { }
  6206. }, {
  6207. closecallback: function () { }
  6208. }, { "style": { "height": "36px" } }).form; //创建窗体
  6209. _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); } }
  6210. break;
  6211. case "AIprogram": //ai编程
  6212. _formdiv = new U.UF.UI.form(
  6213. "AI编程平台",
  6214. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6215. "id": "AIprogram",
  6216. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6217. "onresize": function () { }
  6218. }, {
  6219. closecallback: function () { }
  6220. }, { "style": { "height": "36px" } }).form; //创建窗体
  6221. _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); } }
  6222. break;
  6223. case "CocoPi": //CocoPi
  6224. _formdiv = new U.UF.UI.form(
  6225. "CocoPi",
  6226. $$("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" }), {
  6227. "id": "CocoPi",
  6228. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6229. "onresize": function () { }
  6230. }, {
  6231. closecallback: function () { }
  6232. }, { "style": { "height": "36px" } }).form; //创建窗体
  6233. _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); } }
  6234. break;
  6235. case "Wood": //Wood
  6236. _formdiv = new U.UF.UI.form(
  6237. "海龟编程",
  6238. $$("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/" }), {
  6239. "id": "Wood",
  6240. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6241. "onresize": function () { }
  6242. }, {
  6243. closecallback: function () { }
  6244. }, { "style": { "height": "36px" } }).form; //创建窗体
  6245. _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); } }
  6246. break;
  6247. case "car": //模拟驾驶
  6248. _formdiv = new U.UF.UI.form(
  6249. "模拟驾驶",
  6250. $$("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/" }), {
  6251. "id": "car",
  6252. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6253. "onresize": function () { }
  6254. }, {
  6255. closecallback: function () { }
  6256. }, { "style": { "height": "36px" } }).form; //创建窗体
  6257. _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); } }
  6258. break;
  6259. case "lineSearch": //路径搜索
  6260. _formdiv = new U.UF.UI.form(
  6261. "路径搜索",
  6262. $$("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/" }), {
  6263. "id": "lineSearch",
  6264. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6265. "onresize": function () { }
  6266. }, {
  6267. closecallback: function () { }
  6268. }, { "style": { "height": "36px" } }).form; //创建窗体
  6269. _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); } }
  6270. break;
  6271. case "deepLearning": //深度学习
  6272. _formdiv = new U.UF.UI.form(
  6273. "深度学习",
  6274. $$("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/#" }), {
  6275. "id": "deepLearning",
  6276. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6277. "onresize": function () { }
  6278. }, {
  6279. closecallback: function () { }
  6280. }, { "style": { "height": "36px" } }).form; //创建窗体
  6281. _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); } }
  6282. break;
  6283. case "allHistory": //深度学习
  6284. _formdiv = new U.UF.UI.form(
  6285. "全历史",
  6286. $$("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/" }), {
  6287. "id": "allHistory",
  6288. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6289. "onresize": function () { }
  6290. }, {
  6291. closecallback: function () { }
  6292. }, { "style": { "height": "36px" } }).form; //创建窗体
  6293. _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); } }
  6294. break;
  6295. case "chatPDF": //ai编程
  6296. _formdiv = new U.UF.UI.form(
  6297. "chatPDF",
  6298. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6299. "id": "chatPDF",
  6300. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6301. "onresize": function () { }
  6302. }, {
  6303. closecallback: function () { }
  6304. }, { "style": { "height": "36px" } }).form; //创建窗体
  6305. _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); } }
  6306. break;
  6307. case "resources": //国家教育
  6308. _formdiv = new U.UF.UI.form(
  6309. "国家教育",
  6310. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6311. "id": "resources",
  6312. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6313. "onresize": function () { }
  6314. }, {
  6315. closecallback: function () { }
  6316. }, { "style": { "height": "36px" } }).form; //创建窗体
  6317. _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); } }
  6318. break;
  6319. case "codeEdit": //源码编辑
  6320. _formdiv = new U.UF.UI.form(
  6321. "源码编辑",
  6322. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6323. "id": "codeEdit",
  6324. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6325. "onresize": function () { }
  6326. }, {
  6327. closecallback: function () { }
  6328. }, { "style": { "height": "36px" } }).form; //创建窗体
  6329. _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); } }
  6330. break; //
  6331. case "MindMap": //MindMap
  6332. _formdiv = new U.UF.UI.form(
  6333. "MindMap",
  6334. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6335. "id": "MindMap",
  6336. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6337. "onresize": function () { }
  6338. }, {
  6339. closecallback: function () { }
  6340. }, { "style": { "height": "36px" } }).form; //创建窗体
  6341. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/MIndMap.png)" }, "name": "MindMap", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6342. break;
  6343. case "netWorkPanel": //netWorkPanel
  6344. _formdiv = new U.UF.UI.form(
  6345. "netWorkPanel",
  6346. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6347. "id": "netWorkPanel",
  6348. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6349. "onresize": function () { }
  6350. }, {
  6351. closecallback: function () { }
  6352. }, { "style": { "height": "36px" } }).form; //创建窗体
  6353. _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); } }
  6354. break;
  6355. case "GeoGebra": //GeoGebra
  6356. _formdiv = new U.UF.UI.form(
  6357. "GeoGebra",
  6358. $$("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" }), {
  6359. "id": "GeoGebra",
  6360. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6361. "onresize": function () { }
  6362. }, {
  6363. closecallback: function () { }
  6364. }, { "style": { "height": "36px" } }).form; //创建窗体
  6365. _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); } }
  6366. break;
  6367. case "translation": //翻译
  6368. _formdiv = new U.UF.UI.form(
  6369. "翻译",
  6370. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6371. "id": "translation",
  6372. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6373. "onresize": function () { }
  6374. }, {
  6375. closecallback: function () { }
  6376. }, { "style": { "height": "36px" } }).form; //创建窗体
  6377. _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); } }
  6378. break;
  6379. case "mohe": //魔盒
  6380. _formdiv = new U.UF.UI.form(
  6381. "魔盒识字",
  6382. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6383. "id": "mohe",
  6384. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6385. "onresize": function () { }
  6386. }, {
  6387. closecallback: function () { }
  6388. }, { "style": { "height": "36px" } }).form; //创建窗体
  6389. _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); } }
  6390. break;
  6391. case "24game": //24点
  6392. _formdiv = new U.UF.UI.form(
  6393. "24点",
  6394. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6395. "id": "24game",
  6396. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6397. "onresize": function () { }
  6398. }, {
  6399. closecallback: function () { }
  6400. }, { "style": { "height": "36px" } }).form; //创建窗体
  6401. _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); } }
  6402. break;
  6403. case "case":
  6404. _formdiv = new U.UF.UI.form(
  6405. "课程进展",
  6406. $$("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 }), {
  6407. "id": "case",
  6408. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6409. "onresize": function () { }
  6410. }, {
  6411. closecallback: function () { }
  6412. }, { "style": { "height": "36px" } }).form; //创建窗体
  6413. _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); } }
  6414. break;
  6415. case "snf":
  6416. _formdiv = new U.UF.UI.form(
  6417. "赛诺梵",
  6418. $$("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" }), {
  6419. "id": "snf",
  6420. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6421. "onresize": function () { }
  6422. }, {
  6423. closecallback: function () { }
  6424. }, { "style": { "height": "36px" } }).form; //创建窗体
  6425. _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); } }
  6426. break;
  6427. case "hanFamily":
  6428. _formdiv = new U.UF.UI.form(
  6429. "汉字家族",
  6430. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6431. "id": "hanFamily",
  6432. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6433. "onresize": function () { }
  6434. }, {
  6435. closecallback: function () { }
  6436. }, { "style": { "height": "36px" } }).form; //创建窗体
  6437. _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); } }
  6438. break;
  6439. case "hanClassics":
  6440. _formdiv = new U.UF.UI.form(
  6441. "国学经典",
  6442. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6443. "id": "hanClassics",
  6444. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6445. "onresize": function () { }
  6446. }, {
  6447. closecallback: function () { }
  6448. }, { "style": { "height": "36px" } }).form; //创建窗体
  6449. _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); } }
  6450. break;
  6451. case "hanTraining":
  6452. _formdiv = new U.UF.UI.form(
  6453. "笔画训练",
  6454. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6455. "id": "hanTraining",
  6456. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6457. "onresize": function () { }
  6458. }, {
  6459. closecallback: function () { }
  6460. }, { "style": { "height": "36px" } }).form; //创建窗体
  6461. _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); } }
  6462. break;
  6463. case "hanClass":
  6464. _formdiv = new U.UF.UI.form(
  6465. "书法课堂",
  6466. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6467. "id": "hanClass",
  6468. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6469. "onresize": function () { }
  6470. }, {
  6471. closecallback: function () { }
  6472. }, { "style": { "height": "36px" } }).form; //创建窗体
  6473. _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); } }
  6474. break;
  6475. case "han":
  6476. _formdiv = new U.UF.UI.form(
  6477. "汉字宫",
  6478. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6479. "id": "han",
  6480. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6481. "onresize": function () { }
  6482. }, {
  6483. closecallback: function () { }
  6484. }, { "style": { "height": "36px" } }).form; //创建窗体
  6485. _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); } }
  6486. break;
  6487. case "projectGM": //课程管理
  6488. _formdiv = new U.UF.UI.form(
  6489. "课程管理",
  6490. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/courseGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6491. "id": "projectGM",
  6492. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6493. "onresize": function () { }
  6494. }, {
  6495. closecallback: function () { }
  6496. }, { "style": { "height": "36px" } }).form; //创建窗体
  6497. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/courseMange.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6498. break;
  6499. case "studyGM": //课程中心
  6500. _formdiv = new U.UF.UI.form(
  6501. "课程中心",
  6502. $$("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
  6503. "id": "study",
  6504. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6505. "onresize": function () { }
  6506. }, {
  6507. closecallback: function () { }
  6508. }, { "style": { "height": "36px" } }).form; //创建窗体
  6509. _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); } }
  6510. break;
  6511. // studentGM
  6512. case "studentGM": //学生管理
  6513. _formdiv = new U.UF.UI.form(
  6514. "学生管理",
  6515. $$("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 }), {
  6516. "id": "studentGM",
  6517. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6518. "onresize": function () { }
  6519. }, {
  6520. closecallback: function () { }
  6521. }, { "style": { "height": "36px" } }).form; //创建窗体
  6522. _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); } }
  6523. break;
  6524. case "evaluateGM": //学生评价
  6525. _formdiv = new U.UF.UI.form(
  6526. "学生评价",
  6527. $$("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 }), {
  6528. "id": "evaluateGM",
  6529. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6530. "onresize": function () { }
  6531. }, {
  6532. closecallback: function () { }
  6533. }, { "style": { "height": "36px" } }).form; //创建窗体
  6534. _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); } }
  6535. break;
  6536. // classGM
  6537. case "classGM": //班级管理
  6538. _formdiv = new U.UF.UI.form(
  6539. "班级管理",
  6540. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/classGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6541. "id": "classGM",
  6542. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6543. "onresize": function () { }
  6544. }, {
  6545. closecallback: function () { }
  6546. }, { "style": { "height": "36px" } }).form; //创建窗体
  6547. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6548. break;
  6549. // dataGM
  6550. case "dataGM":
  6551. _formdiv = new U.UF.UI.form(
  6552. "我的资料",
  6553. $$("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 }), {
  6554. "id": "dataGM",
  6555. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6556. "onresize": function () { }
  6557. }, {
  6558. closecallback: function () { }
  6559. }, { "style": { "height": "36px" } }).form; //创建窗体
  6560. _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); } }
  6561. break;
  6562. // caseGM
  6563. case "caseGM": //课程进展
  6564. _formdiv = new U.UF.UI.form(
  6565. "课程进展",
  6566. $$("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 }), {
  6567. "id": "caseGM",
  6568. "style": { "width": "90%", "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/gm/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6574. break;
  6575. // meterialGM
  6576. case "meterialGM": //素材库
  6577. _formdiv = new U.UF.UI.form(
  6578. "素材库",
  6579. $$("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 }), {
  6580. "id": "meterialGM",
  6581. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6582. "onresize": function () { }
  6583. }, {
  6584. closecallback: function () { }
  6585. }, { "style": { "height": "36px" } }).form; //创建窗体
  6586. _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); } }
  6587. break;
  6588. // evaluateSGM
  6589. case "evaluateSGM": //我的评价
  6590. _formdiv = new U.UF.UI.form(
  6591. "我的评价",
  6592. $$("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 }), {
  6593. "id": "evaluateSGM",
  6594. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6595. "onresize": function () { }
  6596. }, {
  6597. closecallback: function () { }
  6598. }, { "style": { "height": "36px" } }).form; //创建窗体
  6599. _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); } }
  6600. break;
  6601. case "jupyter": //jupyter
  6602. _formdiv = new U.UF.UI.form(
  6603. "jupyter",
  6604. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6605. "id": "jupyter",
  6606. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6607. "onresize": function () { }
  6608. }, {
  6609. closecallback: function () { }
  6610. }, { "style": { "height": "36px" } }).form; //创建窗体
  6611. _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); } }
  6612. break;
  6613. case "number": //数字实验室
  6614. _formdiv = new U.UF.UI.form(
  6615. "数字实验室",
  6616. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6617. "id": "number",
  6618. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6619. "onresize": function () { }
  6620. }, {
  6621. closecallback: function () { }
  6622. }, { "style": { "height": "36px" } }).form; //创建窗体
  6623. _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); } }
  6624. break;
  6625. case "studentCourse": //项目管理 学生
  6626. _formdiv = new U.UF.UI.form(
  6627. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6628. $$("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 }), {
  6629. "id": "studentCourse",
  6630. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6631. "onresize": function () { }
  6632. }, {
  6633. closecallback: function () { }
  6634. }, { "style": { "height": "36px" } }).form; //创建窗体
  6635. _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); } }
  6636. break;
  6637. case "studentCourseS": //项目管理 老师
  6638. _formdiv = new U.UF.UI.form(
  6639. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6640. $$("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 }), {
  6641. "id": "studentCourseS",
  6642. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6643. "onresize": function () { }
  6644. }, {
  6645. closecallback: function () { }
  6646. }, { "style": { "height": "36px" } }).form; //创建窗体
  6647. _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); } }
  6648. break;
  6649. case "studentIndex": //项目中心
  6650. _formdiv = new U.UF.UI.form(
  6651. "项目中心",
  6652. $$("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 }), {
  6653. "id": "studentIndex",
  6654. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6655. "onresize": function () { }
  6656. }, {
  6657. closecallback: function () { }
  6658. }, { "style": { "height": "36px" } }).form; //创建窗体
  6659. _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); } }
  6660. break;
  6661. case "CaseDesignS":
  6662. _formdiv = new U.UF.UI.form(
  6663. "项目进展",
  6664. $$("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 }), {
  6665. "id": "case",
  6666. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6667. "onresize": function () { }
  6668. }, {
  6669. closecallback: function () { }
  6670. }, { "style": { "height": "36px" } }).form; //创建窗体
  6671. _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); } }
  6672. break;
  6673. case "tcStudent": //腾讯学生管理
  6674. _formdiv = new U.UF.UI.form(
  6675. "学生管理",
  6676. $$("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 }), {
  6677. "id": "tcStudent",
  6678. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6679. "onresize": function () { }
  6680. }, {
  6681. closecallback: function () { }
  6682. }, { "style": { "height": "36px" } }).form; //创建窗体
  6683. _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); } }
  6684. break;
  6685. case "tcSchool": //腾讯学校管理
  6686. _formdiv = new U.UF.UI.form(
  6687. "学校管理",
  6688. $$("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 }), {
  6689. "id": "tcSchool",
  6690. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6691. "onresize": function () { }
  6692. }, {
  6693. closecallback: function () { }
  6694. }, { "style": { "height": "36px" } }).form; //创建窗体
  6695. _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); } }
  6696. break;
  6697. case "tcTeacher": //腾讯学校管理
  6698. _formdiv = new U.UF.UI.form(
  6699. "教师管理",
  6700. $$("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 }), {
  6701. "id": "tcTeacher",
  6702. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6703. "onresize": function () { }
  6704. }, {
  6705. closecallback: function () { }
  6706. }, { "style": { "height": "36px" } }).form; //创建窗体
  6707. _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); } }
  6708. break;
  6709. case "teacher":
  6710. _formdiv = new U.UF.UI.form(
  6711. "教师管理",
  6712. $$("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 }), {
  6713. "id": "teacher",
  6714. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6715. "onresize": function () { }
  6716. }, {
  6717. closecallback: function () { }
  6718. }, { "style": { "height": "36px" } }).form; //创建窗体
  6719. _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); } }
  6720. break;
  6721. case "tcData": //腾讯我的资料
  6722. _formdiv = new U.UF.UI.form(
  6723. "我的资料",
  6724. $$("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 }), {
  6725. "id": "tcData",
  6726. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6727. "onresize": function () { }
  6728. }, {
  6729. closecallback: function () { }
  6730. }, { "style": { "height": "36px" } }).form; //创建窗体
  6731. _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); } }
  6732. break;
  6733. case "tcNotice": //腾讯消息通知
  6734. _formdiv = new U.UF.UI.form(
  6735. "消息通知",
  6736. $$("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 }), {
  6737. "id": "tcNotice",
  6738. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6739. "onresize": function () { }
  6740. }, {
  6741. closecallback: function () { }
  6742. }, { "style": { "height": "36px" } }).form; //创建窗体
  6743. _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); } }
  6744. break;
  6745. case "myReport": //好友打开
  6746. _formdiv = new U.UF.UI.form(
  6747. "我的评价",
  6748. $$("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 }), {
  6749. "id": "myReport",
  6750. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6751. "onresize": function () { }
  6752. }, {
  6753. closecallback: function () { }
  6754. }, { "style": { "height": "36px" } }).form; //创建窗体
  6755. _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); } }
  6756. break;
  6757. case "learnAna": //好友打开
  6758. _formdiv = new U.UF.UI.form(
  6759. "学习分析",
  6760. $$("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 }), {
  6761. "id": "learnAna",
  6762. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6763. "onresize": function () { }
  6764. }, {
  6765. closecallback: function () { }
  6766. }, { "style": { "height": "36px" } }).form; //创建窗体
  6767. _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); } }
  6768. break;
  6769. case "AIChat": //AI共创
  6770. _formdiv = new U.UF.UI.form(
  6771. "AI共创",
  6772. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6773. "id": "AIChat",
  6774. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6775. "onresize": function () { }
  6776. }, {
  6777. istop: true,
  6778. closecallback: function () { $("#aichat_icon").remove(); },
  6779. narrowcallback: function () {
  6780. if (!$("#aichat_icon")[0]) {
  6781. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6782. }
  6783. },
  6784. }, { "style": { "height": "36px" } }).form; //创建窗体
  6785. _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); } }
  6786. break;
  6787. case "ainew": //AI共创
  6788. _formdiv = new U.UF.UI.form(
  6789. "AI协同",
  6790. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6791. "id": "ainew",
  6792. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6793. "onresize": function () { }
  6794. }, {
  6795. closecallback: function () { }
  6796. }, { "style": { "height": "36px" } }).form; //创建窗体
  6797. _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); } }
  6798. break;
  6799. case "gpt4": //gpt4
  6800. _formdiv = new U.UF.UI.form(
  6801. "AI助手",
  6802. $$("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 }), {
  6803. "id": "gpt4",
  6804. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6805. "onresize": function () { }
  6806. }, {
  6807. closecallback: function () { }
  6808. }, { "style": { "height": "36px" } }).form; //创建窗体
  6809. _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); } }
  6810. break;
  6811. case "aigpt": //gpt4
  6812. _formdiv = new U.UF.UI.form(
  6813. "AI助手+",
  6814. $$("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 }), {
  6815. "id": "aigpt",
  6816. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6817. "onresize": function () { }
  6818. }, {
  6819. closecallback: function () {
  6820. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6821. }
  6822. }, { "style": { "height": "36px" } }).form; //创建窗体
  6823. _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); } }
  6824. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6825. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6826. })
  6827. break;
  6828. case "aiKnowledge": //aiKnowledge
  6829. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  6830. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  6831. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  6832. }
  6833. _formdiv = new U.UF.UI.form(
  6834. "知识建构",
  6835. $$("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 }), {
  6836. "id": "aiKnowledge",
  6837. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6838. "onresize": function () { }
  6839. }, {
  6840. closecallback: function () { }
  6841. }, { "style": { "height": "36px" } }).form; //创建窗体
  6842. _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); } }
  6843. break;
  6844. case "futureClass": //AI共创
  6845. _formdiv = new U.UF.UI.form(
  6846. "协同建构",
  6847. $$("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
  6848. "id": "synergyCourse",
  6849. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6850. "onresize": function () { }
  6851. }, {
  6852. closecallback: function () {
  6853. $("iframe", _formdiv)[0].contentWindow.loginout();
  6854. }
  6855. }, { "style": { "height": "36px" } }).form; //创建窗体
  6856. _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); } }
  6857. break;
  6858. case "aiagent": //ai agent
  6859. _formdiv = new U.UF.UI.form(
  6860. "AI Agent",
  6861. $$("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" }), {
  6862. "id": "AIAgent",
  6863. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6864. "onresize": function () { }
  6865. }, {
  6866. closecallback: function () { }
  6867. }, { "style": { "height": "36px" } }).form; //创建窗体
  6868. _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); } }
  6869. break;
  6870. case "dataBoard": //数据看板
  6871. _formdiv = new U.UF.UI.form(
  6872. "数据看板",
  6873. $$("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 }), {
  6874. "id": "dataBoard",
  6875. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6876. "onresize": function () { }
  6877. }, {
  6878. closecallback: function () { }
  6879. }, { "style": { "height": "36px" } }).form; //创建窗体
  6880. _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); } }
  6881. break;
  6882. case "dataBoardSies": //数据融合
  6883. _formdiv = new U.UF.UI.form(
  6884. "数据融合",
  6885. $$("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 }), {
  6886. "id": "dataBoardSies",
  6887. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6888. "onresize": function () { }
  6889. }, {
  6890. closecallback: function () { }
  6891. }, { "style": { "height": "36px" } }).form; //创建窗体
  6892. _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); } }
  6893. break;
  6894. case "dataBoardNew": //数据看板
  6895. _formdiv = new U.UF.UI.form(
  6896. "综合看板",
  6897. $$("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 }), {
  6898. "id": "dataBoardNew",
  6899. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6900. "onresize": function () { }
  6901. }, {
  6902. closecallback: function () { }
  6903. }, { "style": { "height": "36px" } }).form; //创建窗体
  6904. _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); } }
  6905. break;
  6906. case "dataBoardTest": //数据看板
  6907. _formdiv = new U.UF.UI.form(
  6908. "评测看板",
  6909. $$("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 }), {
  6910. "id": "dataBoardTest",
  6911. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6912. "onresize": function () { }
  6913. }, {
  6914. closecallback: function () { }
  6915. }, { "style": { "height": "36px" } }).form; //创建窗体
  6916. _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); } }
  6917. break;
  6918. case "AIAnalyse": //AI共创
  6919. _formdiv = new U.UF.UI.form(
  6920. "AI分析",
  6921. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6922. "id": "AIAnalyse",
  6923. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6924. "onresize": function () { }
  6925. }, {
  6926. closecallback: function () { }
  6927. }, { "style": { "height": "36px" } }).form; //创建窗体
  6928. _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); } }
  6929. break;
  6930. case "studioCourse": //AI共创
  6931. _formdiv = new U.UF.UI.form(
  6932. "工作管理",
  6933. $$("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 }), {
  6934. "id": "studioCourse",
  6935. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6936. "onresize": function () { }
  6937. }, {
  6938. closecallback: function () { }
  6939. }, { "style": { "height": "36px" } }).form; //创建窗体
  6940. _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); } }
  6941. break;
  6942. case "studioIndex": //AI共创
  6943. _formdiv = new U.UF.UI.form(
  6944. "工作中心",
  6945. $$("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 }), {
  6946. "id": "studioIndex",
  6947. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6948. "onresize": function () { }
  6949. }, {
  6950. closecallback: function () { }
  6951. }, { "style": { "height": "36px" } }).form; //创建窗体
  6952. _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); } }
  6953. break;
  6954. case "source":
  6955. _formdiv = new U.UF.UI.form(
  6956. "教学资源",
  6957. $$("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 }), {
  6958. "id": "source",
  6959. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6960. "onresize": function () { }
  6961. }, {
  6962. closecallback: function () { }
  6963. }, { "style": { "height": "36px" } }).form; //创建窗体
  6964. _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); } }
  6965. break;
  6966. case "testTeacher":
  6967. _formdiv = new U.UF.UI.form(
  6968. "智能表单",
  6969. $$("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 }), {
  6970. "id": "testTeacher",
  6971. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6972. "onresize": function () { }
  6973. }, {
  6974. closecallback: function () { }
  6975. }, { "style": { "height": "36px" } }).form; //创建窗体
  6976. _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); } }
  6977. break;
  6978. case "testStudent":
  6979. _formdiv = new U.UF.UI.form(
  6980. "教师中心",
  6981. $$("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 }), {
  6982. "id": "testStudent",
  6983. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6984. "onresize": function () { }
  6985. }, {
  6986. closecallback: function () { }
  6987. }, { "style": { "height": "36px" } }).form; //创建窗体
  6988. _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); } }
  6989. break;
  6990. case "testTeacherSies":
  6991. _formdiv = new U.UF.UI.form(
  6992. "教师管理",
  6993. $$("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 }), {
  6994. "id": "testTeacherSies",
  6995. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6996. "onresize": function () { }
  6997. }, {
  6998. closecallback: function () { }
  6999. }, { "style": { "height": "36px" } }).form; //创建窗体
  7000. _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); } }
  7001. break;
  7002. case "testStudentSies":
  7003. _formdiv = new U.UF.UI.form(
  7004. "教师中心",
  7005. $$("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 }), {
  7006. "id": "testStudentSies",
  7007. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7008. "onresize": function () { }
  7009. }, {
  7010. closecallback: function () { }
  7011. }, { "style": { "height": "36px" } }).form; //创建窗体
  7012. _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); } }
  7013. break;
  7014. case "ytpbl": //消息通知
  7015. _formdiv = new U.UF.UI.form(
  7016. "案例征集",
  7017. $$("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 }), {
  7018. "id": "ytpbl",
  7019. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7020. "onresize": function () { }
  7021. }, {
  7022. closecallback: function () { }
  7023. }, { "style": { "height": "36px" } }).form; //创建窗体
  7024. _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); } }
  7025. // 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");
  7026. break;
  7027. case "aiCourseResource": //人工智能窗体
  7028. _formdiv = new U.UF.UI.form(
  7029. false,
  7030. $$("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 }), {
  7031. "id": "aiCourseResource",
  7032. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7033. "onresize": function () { },
  7034. "isdrag": false,
  7035. }, {
  7036. closecallback: function () { }
  7037. }, { "style": { "height": "36px" } }).form; //创建窗体
  7038. _taskbar = ''
  7039. break;
  7040. case "szdjgCocooroboX": //图形化编程
  7041. _formdiv = new U.UF.UI.form(
  7042. "图形化编程",
  7043. $$("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" }), {
  7044. "id": "szdjgCocooroboX",
  7045. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7046. "onresize": function () { }
  7047. }, {
  7048. closecallback: function () { }
  7049. }, { "style": { "height": "36px" } }).form; //创建窗体
  7050. _taskbar = ''
  7051. break;
  7052. case "szdjgPython": //python编程
  7053. _formdiv = new U.UF.UI.form(
  7054. "Python编程",
  7055. $$("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" }), {
  7056. "id": "szdjgPython",
  7057. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7058. "onresize": function () { }
  7059. }, {
  7060. closecallback: function () { }
  7061. }, { "style": { "height": "36px" } }).form; //创建窗体
  7062. _taskbar = ''
  7063. break;
  7064. case "Record":
  7065. _formdiv = new U.UF.UI.form(
  7066. "观察记录",
  7067. $$("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 }), {
  7068. "id": "Record",
  7069. "style": { "width": "90%", "height": "90%", "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/Record.png)" }, "name": "观察记录", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7075. break;
  7076. case "aigptCourse":
  7077. _formdiv = new U.UF.UI.form(
  7078. "AI智能体",
  7079. $$("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' }), {
  7080. "id": "aigptCourse",
  7081. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7082. "onresize": function () { }
  7083. }, {
  7084. closecallback: function () { }
  7085. }, { "style": { "height": "36px" } }).form; //创建窗体
  7086. _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); } }
  7087. break;
  7088. case "classroomObservation":
  7089. _formdiv = new U.UF.UI.form(
  7090. "课堂观察",
  7091. $$("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 }), {
  7092. "id": "classroomObservation",
  7093. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7094. "onresize": function () { }
  7095. }, {
  7096. closecallback: function () { }
  7097. }, { "style": { "height": "36px" } }).form; //创建窗体
  7098. _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); } }
  7099. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7100. break;
  7101. case "pblCourse":
  7102. _formdiv = new U.UF.UI.form(
  7103. "学生PBL",
  7104. $$("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 }), {
  7105. "id": "pblCourse",
  7106. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7107. "onresize": function () { }
  7108. }, {
  7109. closecallback: function () { }
  7110. }, { "style": { "height": "36px" } }).form; //创建窗体
  7111. _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); } }
  7112. break;
  7113. case "appStore":
  7114. _formdiv = new U.UF.UI.form(
  7115. "CocoFlow",
  7116. $$("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": "//cloud.cocorobo.cn/aigpt/#/WorkSpace?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7117. "id": "appStore",
  7118. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7119. "onresize": function () { }
  7120. }, {
  7121. closecallback: function () { }
  7122. }, { "style": { "height": "36px" } }).form; //创建窗体
  7123. _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); } }
  7124. break;
  7125. case "sassPlatform":
  7126. _formdiv = new U.UF.UI.form(
  7127. "Sass通用后台管理",
  7128. $$("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 }), {
  7129. "id": "sassPlatform",
  7130. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7131. "onresize": function () { }
  7132. }, {
  7133. closecallback: function () { }
  7134. }, { "style": { "height": "36px" } }).form; //创建窗体
  7135. _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); } }
  7136. break;
  7137. case "EDU":
  7138. _formdiv = new U.UF.UI.form(
  7139. "EDU",
  7140. $$("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" }), {
  7141. "id": "EDU",
  7142. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7143. "onresize": function () { }
  7144. }, {
  7145. closecallback: function () { }
  7146. }, { "style": { "height": "36px" } }).form; //创建窗体
  7147. _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); } }
  7148. break;
  7149. case "knowledge":
  7150. _formdiv = new U.UF.UI.form(
  7151. "知识库",
  7152. $$("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 }), {
  7153. "id": "knowledge",
  7154. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7155. "onresize": function () { }
  7156. }, {
  7157. closecallback: function () { }
  7158. }, { "style": { "height": "36px" } }).form; //创建窗体
  7159. _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); } }
  7160. break;
  7161. case "userExamine":
  7162. _formdiv = new U.UF.UI.form(
  7163. "账号申请",
  7164. $$("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" }), {
  7165. "id": "userExamine",
  7166. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7167. "onresize": function () { }
  7168. }, {
  7169. closecallback: function () { }
  7170. }, { "style": { "height": "36px" } }).form; //创建窗体
  7171. break;
  7172. }
  7173. //U.MD.D.I.openClick(str);
  7174. //如果有任务栏信息
  7175. if (_taskbar) {
  7176. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7177. }
  7178. // if(iframeBool){
  7179. // U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7180. // // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7181. // // console.log("iframe进入");
  7182. // // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7183. // // };
  7184. // setTimeout(() => {
  7185. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7186. // }, 2000);
  7187. // }
  7188. }
  7189. // U.MD.D.I.openClick = function(str){
  7190. // var click = '';
  7191. // switch(str){
  7192. // case 'friend':
  7193. // click = '我的好友';
  7194. // break;
  7195. // case 'domain':
  7196. // click = '域名管理';
  7197. // break;
  7198. // case 'disk':
  7199. // click = '我的云盘';
  7200. // break;
  7201. // case 'word':
  7202. // click = 'Word';
  7203. // break;
  7204. // case 'excel':
  7205. // click = 'Execl';
  7206. // break;
  7207. // case 'txt':
  7208. // click = '文本文件';
  7209. // break;
  7210. // case 'lookupFriend':
  7211. // click = '查找好友';
  7212. // break;
  7213. // case 'ftp':
  7214. // click = 'FTP';
  7215. // break;
  7216. // case 'group':
  7217. // click = '群组';
  7218. // break;
  7219. // case 'set':
  7220. // click = '我的设置';
  7221. // break;
  7222. // case 'systemSet':
  7223. // click = '系统设置';
  7224. // break;
  7225. // case 'boomYun':
  7226. // click = '互联办公';
  7227. // break;
  7228. // case 'xz':
  7229. // click = '云端下载';
  7230. // break;
  7231. // case 'client':
  7232. // click = '有思浏览器';
  7233. // break;
  7234. // case 'backEndProgramming':
  7235. // click = '在线后台编程';
  7236. // break;
  7237. // case 'frontEndProgramming':
  7238. // click = '在线前端编程';
  7239. // break;
  7240. // default: break;
  7241. // }
  7242. // if(U.MD.D.I.Ip && click){
  7243. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7244. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7245. // })
  7246. // }
  7247. // }
  7248. /**
  7249. *函数作用:ajax简易函数,使用post格式
  7250. *@param url {data} 后台地址
  7251. *@param data {data} 参数json
  7252. *@param fn {data} 回调函数
  7253. *
  7254. */
  7255. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7256. // var xhr = new XMLHttpRequest();
  7257. // xhr.open("GET",url,true);
  7258. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7259. // xhr.onreadystatechange = function(){
  7260. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7261. // fn.call(this,xhr.responseText);
  7262. // }
  7263. // };
  7264. // xhr.send();
  7265. // }
  7266. /*判断是否是内网IP*/
  7267. // U.MD.D.I.isInnerIPFn = function(str){
  7268. // var curPageUrl = str;
  7269. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7270. // curPageUrl =curPageUrl.replace(reg1,'');
  7271. // // console.log('curPageUrl-1 '+curPageUrl);
  7272. // var reg2 = /\:+/g;//替换冒号为一点
  7273. // curPageUrl =curPageUrl.replace(reg2,'.');
  7274. // // console.log('curPageUrl-2 '+curPageUrl);
  7275. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7276. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7277. // if(curPageUrl[2] != '16'){
  7278. // return ipAddress;
  7279. // }else{
  7280. // return false;
  7281. // }
  7282. // }
  7283. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7284. // //compatibility for firefox and chrome
  7285. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7286. // var pc = new myPeerConnection({
  7287. // iceServers: []
  7288. // }),
  7289. // noop = function() {},
  7290. // localIPs = {},
  7291. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7292. // key;
  7293. // function iterateIP(ip) {
  7294. // if (!localIPs[ip]) onNewIP(ip);
  7295. // localIPs[ip] = true;
  7296. // }
  7297. // //create a bogus data channel
  7298. // pc.createDataChannel("");
  7299. // // create offer and set local description
  7300. // pc.createOffer().then(function(sdp) {
  7301. // sdp.sdp.split('\n').forEach(function(line) {
  7302. // if (line.indexOf('candidate') < 0) return;
  7303. // line.match(ipRegex).forEach(iterateIP);
  7304. // });
  7305. // pc.setLocalDescription(sdp, noop, noop);
  7306. // }).catch(function(reason) {
  7307. // // An error occurred, so handle the failure to connect
  7308. // });
  7309. // //sten for candidate events
  7310. // pc.onicecandidate = function(ice) {
  7311. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7312. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7313. // };
  7314. // }
  7315. // U.MD.D.I.getUserIpBool = function(callback){
  7316. // U.MD.D.I.getUserIP(function(ip){
  7317. // alert("Got IP! :" + ip);
  7318. // });
  7319. //}
  7320. //#endregion
  7321. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7322. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7323. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7324. _userinfo = US.userInfo, //登录用户信息
  7325. _userid = US.userInfo.userid //登录用户id
  7326. let _iframe;
  7327. let _cid = cid,
  7328. _stage = stage,
  7329. _task = task,
  7330. _tool = tool;
  7331. var _jie = $$("div", {
  7332. "style": {
  7333. "position": "absolute",
  7334. "bottom": "50px",
  7335. "right": "50px",
  7336. "zIndex": "9999",
  7337. "backgroundColor": "#2268bc",
  7338. "color": "#fff",
  7339. "padding": "12px 20px",
  7340. "cursor": "pointer",
  7341. "borderRadius": "4px",
  7342. },
  7343. "innerHTML": "提交作业"
  7344. })
  7345. let aTool = ''
  7346. let _loading = document.createElement('div')
  7347. _loading.style = "width:100%;height:100%;background:#00000000;position:absolute;top:0;left:0;z-index:99999999999999;display: none;justify-content: center;align-items: center;"
  7348. // _loading.id = "";
  7349. let _lchild = document.createElement('div')
  7350. let _limg = document.createElement('img')
  7351. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7352. _limg.style = "width: 26px;margin-right: 10px;"
  7353. _lchild.appendChild(_limg)
  7354. let _lspan = document.createElement('span')
  7355. _lspan.innerHTML = "上传中..."
  7356. _lchild.appendChild(_lspan)
  7357. _lchild.style = "color: rgb(255, 255, 255);padding: 15px;background: rgba(0, 0, 0, 0.44);font-size: 18px;display: flex;align-items: center;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);"
  7358. _loading.appendChild(_lchild)
  7359. var _box = $$('div', {
  7360. "style": {
  7361. "position": "relative",
  7362. "width": "100%",
  7363. "height": "100%",
  7364. },
  7365. })
  7366. _box.appendChild(_loading)
  7367. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7368. switch (str) {
  7369. case "whiteboard":
  7370. aTool = 1;
  7371. _iframe = $$("iframe", {
  7372. "frameborder": "no",
  7373. "border": "0",
  7374. "scrolling ": "no",
  7375. "style": {
  7376. "cssText": "border:0;width:100%;height:100%"
  7377. },
  7378. "src": "https://beta.iwb.cocorobo.cn/"
  7379. })
  7380. _box.appendChild(_iframe);
  7381. _box.appendChild(_jie);
  7382. _formdiv = new U.UF.UI.form(
  7383. "电子白板",
  7384. _box, {
  7385. "id": "whiteboard" + cid + stage + task + tool,
  7386. "style": {
  7387. "width": "90%",
  7388. "height": "90%",
  7389. "overflow": 'hidden'
  7390. },
  7391. "onresize": function () { }
  7392. }, {
  7393. closecallback: function () { }
  7394. }, {
  7395. "style": {
  7396. "height": "36px"
  7397. }
  7398. }).form; //创建窗体
  7399. _taskbar = {
  7400. "id": str + _formdiv.id,
  7401. "style": {
  7402. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7403. },
  7404. "name": "电子白板",
  7405. "forms": _formdiv,
  7406. "click": function () {
  7407. U.MD.D.I.openApplication(str, obj, info);
  7408. }
  7409. }
  7410. break;
  7411. case "mind":
  7412. aTool = 3;
  7413. _iframe = $$("iframe", {
  7414. "frameborder": "no",
  7415. "border": "0",
  7416. "scrolling ": "no",
  7417. "style": {
  7418. "cssText": "border:0;width:100%;height:100%"
  7419. },
  7420. "src": "/kityminder-editor/dist/index.html"
  7421. })
  7422. _box.appendChild(_iframe);
  7423. _box.appendChild(_jie);
  7424. _formdiv = new U.UF.UI.form(
  7425. "思维导图",
  7426. _box, { //"/jsmind/example/demo.html"
  7427. "id": "mind" + cid + stage + task + tool,
  7428. "style": {
  7429. "width": "90%",
  7430. "height": "90%",
  7431. "overflow": 'hidden'
  7432. },
  7433. "onresize": function () { }
  7434. }, {
  7435. closecallback: function () { }
  7436. }, {
  7437. "style": {
  7438. "height": "36px"
  7439. }
  7440. }).form; //创建窗体
  7441. _taskbar = {
  7442. "id": str + _formdiv.id,
  7443. "style": {
  7444. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7445. },
  7446. "name": "思维导图",
  7447. "forms": _formdiv,
  7448. "click": function () {
  7449. U.MD.D.I.openApplication(str, obj, info);
  7450. }
  7451. }
  7452. break;
  7453. case "MindMap":
  7454. aTool = 3;
  7455. _iframe = $$("iframe", {
  7456. "frameborder": "no",
  7457. "border": "0",
  7458. "scrolling ": "no",
  7459. "style": {
  7460. "cssText": "border:0;width:100%;height:100%"
  7461. },
  7462. "src": "//cloud.cocorobo.cn/mind/"
  7463. })
  7464. _box.appendChild(_iframe);
  7465. _box.appendChild(_jie);
  7466. _formdiv = new U.UF.UI.form(
  7467. "思维导图",
  7468. _box, { //"/jsmind/example/demo.html"
  7469. "id": "mind" + cid + stage + task + tool,
  7470. "style": {
  7471. "width": "90%",
  7472. "height": "90%",
  7473. "overflow": 'hidden'
  7474. },
  7475. "onresize": function () { }
  7476. }, {
  7477. closecallback: function () { }
  7478. }, {
  7479. "style": {
  7480. "height": "36px"
  7481. }
  7482. }).form; //创建窗体
  7483. _taskbar = {
  7484. "id": str + _formdiv.id,
  7485. "style": {
  7486. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7487. },
  7488. "name": "思维导图",
  7489. "forms": _formdiv,
  7490. "click": function () {
  7491. U.MD.D.I.openApplication(str, obj, info);
  7492. }
  7493. }
  7494. break;
  7495. case "doc":
  7496. aTool = 6;
  7497. _iframe = $$("iframe", {
  7498. "frameborder": "no",
  7499. "border": "0",
  7500. "scrolling ": "no",
  7501. "style": {
  7502. "cssText": "border:0;width:100%;height:100%"
  7503. },
  7504. "src": "/Office/Word/WordEditArea.htm"
  7505. })
  7506. _box.appendChild(_iframe);
  7507. _box.appendChild(_jie);
  7508. _formdiv = new U.UF.UI.form(
  7509. "协同文档",
  7510. _box, {
  7511. "id": "doc" + cid + stage + task + tool,
  7512. "style": {
  7513. "width": "90%",
  7514. "height": "90%",
  7515. "overflow": 'hidden'
  7516. },
  7517. "onresize": function () { }
  7518. }, {
  7519. closecallback: function () { }
  7520. }, {
  7521. "style": {
  7522. "height": "36px"
  7523. }
  7524. }).form; //创建窗体
  7525. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7526. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7527. })
  7528. _taskbar = {
  7529. "id": str + _formdiv.id,
  7530. "style": {
  7531. "backgroundImage": "url(/img/icon/doc.png)"
  7532. },
  7533. "name": "协同文档",
  7534. "forms": _formdiv,
  7535. "click": function () {
  7536. U.MD.D.I.openApplication(str, obj, info);
  7537. }
  7538. }
  7539. break;
  7540. case "mindNetwork": //好友打开
  7541. aTool = 7;
  7542. _iframe = $$("iframe", {
  7543. "webkitallowfullscreen": "",
  7544. "mozallowfullscreen": "",
  7545. "allowfullscreen": "",
  7546. "frameborder": "no",
  7547. "border": "0",
  7548. "scrolling ": "no",
  7549. "style": {
  7550. "cssText": "border:0; width:100%; height:100%;"
  7551. },
  7552. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7553. })
  7554. _box.appendChild(_iframe);
  7555. _box.appendChild(_jie);
  7556. _formdiv = new U.UF.UI.form(
  7557. "思维网格",
  7558. _box, {
  7559. "id": "mindNetwork" + cid + stage + task + tool,
  7560. "style": {
  7561. "width": "90%",
  7562. "height": "90%",
  7563. "overflow": 'hidden'
  7564. },
  7565. "onresize": function () { }
  7566. }, {
  7567. closecallback: function () { }
  7568. }, {
  7569. "style": {
  7570. "height": "36px"
  7571. }
  7572. }).form; //创建窗体
  7573. _taskbar = {
  7574. "id": str + _formdiv.id,
  7575. "style": {
  7576. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7577. },
  7578. "name": "思维网格",
  7579. "forms": _formdiv,
  7580. "click": function () {
  7581. U.MD.D.I.openApplication(str, obj, info);
  7582. }
  7583. }
  7584. break;
  7585. case "courseDesign":
  7586. _iframe = $$("iframe", {
  7587. "webkitallowfullscreen": "",
  7588. "mozallowfullscreen": "",
  7589. "allowfullscreen": "",
  7590. "frameborder": "no",
  7591. "border": "0",
  7592. "scrolling ": "no",
  7593. "style": {
  7594. "cssText": "border:0; width:100%; height:100%;"
  7595. },
  7596. "src": "/course-design-vue"
  7597. })
  7598. _box.appendChild(_iframe);
  7599. _box.appendChild(_jie);
  7600. _formdiv = new U.UF.UI.form(
  7601. "项目设计",
  7602. _box, {
  7603. "id": "courseDesign" + cid + stage + task + tool,
  7604. "style": {
  7605. "width": "90%",
  7606. "height": "90%",
  7607. "overflow": 'hidden'
  7608. },
  7609. "onresize": function () { }
  7610. }, {
  7611. closecallback: function () { }
  7612. }, {
  7613. "style": {
  7614. "height": "36px"
  7615. }
  7616. }).form; //创建窗体
  7617. _taskbar = {
  7618. "id": str + _formdiv.id,
  7619. "style": {
  7620. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7621. },
  7622. "name": "项目设计",
  7623. "forms": _formdiv,
  7624. "click": function () {
  7625. U.MD.D.I.openApplication(str, obj, info);
  7626. }
  7627. }
  7628. break;
  7629. }
  7630. const script1 = document.createElement("script");
  7631. script1.type = "text/javascript";
  7632. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7633. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7634. const script2 = document.createElement("script");
  7635. script2.type = "text/javascript";
  7636. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7637. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7638. const script3 = document.createElement("script");
  7639. script3.type = "text/javascript";
  7640. script3.charset = "UTF-8";
  7641. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7642. const script4 = document.createElement("script");
  7643. script4.type = "text/javascript";
  7644. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7645. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7646. if (_iframe) {
  7647. if (str == 'doc') {
  7648. _iframe = _formdiv.querySelector('iframe')
  7649. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7650. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7651. _iframe.contentWindow.document.body.appendChild(script1);
  7652. _iframe.contentWindow.document.body.appendChild(script2);
  7653. // _iframe.contentWindow.document.body.appendChild(script3);
  7654. _iframe.contentWindow.document.body.appendChild(script4);
  7655. })
  7656. if (onloadListener) {
  7657. _iframe.contentDocument.location.reload()
  7658. } else {
  7659. _iframe.contentDocument.location.reload()
  7660. }
  7661. } else if (str == 'courseDesign') {
  7662. U.UF.DL.iframeLoad(_iframe, function () {
  7663. // _iframe.contentWindow.U.MD.O.W.load();
  7664. // _iframe.contentWindow.document.body.appendChild(script1);
  7665. _iframe.contentWindow.document.body.appendChild(script2);
  7666. _iframe.contentWindow.document.body.appendChild(script4);
  7667. })
  7668. } else if (str == 'mind') {
  7669. _iframe = _formdiv.querySelector('iframe')
  7670. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7671. //
  7672. _iframe.contentWindow.document.body.appendChild(script1);
  7673. _iframe.contentWindow.document.body.appendChild(script2);
  7674. _iframe.contentWindow.document.body.appendChild(script4);
  7675. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7676. })
  7677. if (onloadListener) {
  7678. _iframe.contentDocument.location.reload()
  7679. } else {
  7680. _iframe.contentDocument.location.reload()
  7681. }
  7682. } else if (str == 'whiteboard') {
  7683. _iframe = _formdiv.querySelector('iframe')
  7684. let onloadListener = _iframe.onload = () => {
  7685. _iframe.contentWindow.document.body.appendChild(script1);
  7686. _iframe.contentWindow.document.body.appendChild(script2);
  7687. _iframe.contentWindow.document.body.appendChild(script4);
  7688. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7689. };
  7690. // if (onloadListener) {
  7691. // try {
  7692. // _iframe.src += "?cocorobo="+new Date().getTime()
  7693. // _iframe.contentWindow.document.location.reload()
  7694. // } catch (error) {
  7695. // }
  7696. // } else {
  7697. // _iframe.contentDocument.location.reload()
  7698. // }
  7699. } else {
  7700. _iframe.onload = () => {
  7701. _iframe.contentWindow.document.body.appendChild(script1);
  7702. _iframe.contentWindow.document.body.appendChild(script2);
  7703. // _iframe.contentWindow.document.body.appendChild(script3);
  7704. _iframe.contentWindow.document.body.appendChild(script4);
  7705. };
  7706. }
  7707. _jie.onclick = async () => {
  7708. let text = ''
  7709. if (aTool == 1) {
  7710. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7711. } else if (aTool == 6) {
  7712. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7713. } else if (aTool == 3) {
  7714. text = await U.MD.D.I.getEditorContent(_iframe);
  7715. }
  7716. _loading.style.display = 'flex'
  7717. console.log(_loading);
  7718. var _ajs = _iframe.contentWindow.document.createElement("script");
  7719. _ajs.type = "text/javascript";
  7720. _ajs.innerHTML =
  7721. // 'console.log(' + _loading + ');\n' +
  7722. 'var _js = document.createElement("script");\n' +
  7723. '_js.type="text/javascript";\n' +
  7724. '_js.charset="UTF-8";\n' +
  7725. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7726. "_js.onload = function(){\n" +
  7727. ' var a = document.getElementsByTagName("img")\n' +
  7728. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7729. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7730. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7731. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7732. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7733. "beforeUpload_shishi(file," +
  7734. "'" +
  7735. _userid +
  7736. "'" +
  7737. ", " +
  7738. "'" +
  7739. _cid +
  7740. "'" +
  7741. ", " +
  7742. "'" +
  7743. _stage +
  7744. "'" +
  7745. ", " +
  7746. "'" +
  7747. _task +
  7748. "'" +
  7749. ", " +
  7750. "'" +
  7751. _tool +
  7752. "'" +
  7753. ", " +
  7754. "'" +
  7755. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7756. "'" +
  7757. ", " +
  7758. "'" +
  7759. aTool +
  7760. "'" +
  7761. ", " +
  7762. "`" +
  7763. text +
  7764. "`" +
  7765. ")\n" +
  7766. " });\n" +
  7767. "}\n" +
  7768. "document.head.appendChild(_js);\n";
  7769. _iframe.contentWindow.document.head.appendChild(_ajs);
  7770. }
  7771. }
  7772. //U.MD.D.I.openClick(str);
  7773. //如果有任务栏信息
  7774. // if (_taskbar) {
  7775. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7776. // }
  7777. }
  7778. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7779. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7780. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7781. _userinfo = US.userInfo, //登录用户信息
  7782. _userid = US.userInfo.userid //登录用户id
  7783. let _iframe;
  7784. let _cid = cid,
  7785. _stage = stage,
  7786. _task = task,
  7787. _tool = tool;
  7788. var _jie = $$("div", {
  7789. "style": {
  7790. "position": "absolute",
  7791. "bottom": "50px",
  7792. "right": "50px",
  7793. "zIndex": "9999",
  7794. "backgroundColor": "#2268bc",
  7795. "color": "#fff",
  7796. "padding": "12px 20px",
  7797. "cursor": "pointer",
  7798. "borderRadius": "4px",
  7799. },
  7800. "innerHTML": "提交作业"
  7801. })
  7802. let aTool = ''
  7803. let _loading = document.createElement('div')
  7804. _loading.style = "width:100%;height:100%;background:#00000000;position:absolute;top:0;left:0;z-index:99999999999999;display: none;justify-content: center;align-items: center;"
  7805. // _loading.id = "";
  7806. let _lchild = document.createElement('div')
  7807. let _limg = document.createElement('img')
  7808. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7809. _limg.style = "width: 26px;margin-right: 10px;"
  7810. _lchild.appendChild(_limg)
  7811. let _lspan = document.createElement('span')
  7812. _lspan.innerHTML = "上传中..."
  7813. _lchild.appendChild(_lspan)
  7814. _lchild.style = "color: rgb(255, 255, 255);padding: 15px;background: rgba(0, 0, 0, 0.44);font-size: 18px;display: flex;align-items: center;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);"
  7815. _loading.appendChild(_lchild)
  7816. let _box = $$('div', {
  7817. "style": {
  7818. "position": "relative",
  7819. "width": "100%",
  7820. "height": "100%",
  7821. },
  7822. })
  7823. _box.appendChild(_loading)
  7824. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7825. switch (str) {
  7826. case "whiteboard":
  7827. aTool = 1;
  7828. _iframe = $$("iframe", {
  7829. "frameborder": "no",
  7830. "border": "0",
  7831. "scrolling ": "no",
  7832. "style": {
  7833. "cssText": "border:0;width:100%;height:100%"
  7834. },
  7835. "src": "https://beta.iwb.cocorobo.cn/"
  7836. })
  7837. _box.appendChild(_iframe);
  7838. _box.appendChild(_jie);
  7839. _formdiv = new U.UF.UI.form(
  7840. "电子白板",
  7841. _box, {
  7842. "id": "whiteboard" + cid + stage + task + tool,
  7843. "style": {
  7844. "width": "90%",
  7845. "height": "90%",
  7846. "overflow": 'hidden'
  7847. },
  7848. "onresize": function () { }
  7849. }, {
  7850. closecallback: function () { }
  7851. }, {
  7852. "style": {
  7853. "height": "36px"
  7854. }
  7855. }).form; //创建窗体
  7856. _taskbar = {
  7857. "id": str + _formdiv.id,
  7858. "style": {
  7859. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7860. },
  7861. "name": "电子白板",
  7862. "forms": _formdiv,
  7863. "click": function () {
  7864. U.MD.D.I.openApplication(str, obj, info);
  7865. }
  7866. }
  7867. break;
  7868. case "mind":
  7869. aTool = 3;
  7870. _iframe = $$("iframe", {
  7871. "frameborder": "no",
  7872. "border": "0",
  7873. "scrolling ": "no",
  7874. "style": {
  7875. "cssText": "border:0;width:100%;height:100%"
  7876. },
  7877. "src": "/kityminder-editor/dist/index.html"
  7878. })
  7879. _box.appendChild(_iframe);
  7880. _box.appendChild(_jie);
  7881. _formdiv = new U.UF.UI.form(
  7882. "思维导图",
  7883. _box, { //"/jsmind/example/demo.html"
  7884. "id": "mind" + cid + stage + task + tool,
  7885. "style": {
  7886. "width": "90%",
  7887. "height": "90%",
  7888. "overflow": 'hidden'
  7889. },
  7890. "onresize": function () { }
  7891. }, {
  7892. closecallback: function () { }
  7893. }, {
  7894. "style": {
  7895. "height": "36px"
  7896. }
  7897. }).form; //创建窗体
  7898. _taskbar = {
  7899. "id": str + _formdiv.id,
  7900. "style": {
  7901. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7902. },
  7903. "name": "思维导图",
  7904. "forms": _formdiv,
  7905. "click": function () {
  7906. U.MD.D.I.openApplication(str, obj, info);
  7907. }
  7908. }
  7909. break;
  7910. case "MindMap":
  7911. aTool = 3;
  7912. _iframe = $$("iframe", {
  7913. "frameborder": "no",
  7914. "border": "0",
  7915. "scrolling ": "no",
  7916. "style": {
  7917. "cssText": "border:0;width:100%;height:100%"
  7918. },
  7919. "src": "//cloud.cocorobo.cn/mind/"
  7920. })
  7921. _box.appendChild(_iframe);
  7922. _box.appendChild(_jie);
  7923. _formdiv = new U.UF.UI.form(
  7924. "思维导图",
  7925. _box, { //"/jsmind/example/demo.html"
  7926. "id": "mind" + cid + stage + task + tool,
  7927. "style": {
  7928. "width": "90%",
  7929. "height": "90%",
  7930. "overflow": 'hidden'
  7931. },
  7932. "onresize": function () { }
  7933. }, {
  7934. closecallback: function () { }
  7935. }, {
  7936. "style": {
  7937. "height": "36px"
  7938. }
  7939. }).form; //创建窗体
  7940. _taskbar = {
  7941. "id": str + _formdiv.id,
  7942. "style": {
  7943. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7944. },
  7945. "name": "思维导图",
  7946. "forms": _formdiv,
  7947. "click": function () {
  7948. U.MD.D.I.openApplication(str, obj, info);
  7949. }
  7950. }
  7951. break;
  7952. case "doc":
  7953. aTool = 6;
  7954. _iframe = $$("iframe", {
  7955. "frameborder": "no",
  7956. "border": "0",
  7957. "scrolling ": "no",
  7958. "style": {
  7959. "cssText": "border:0;width:100%;height:100%"
  7960. },
  7961. "src": "/Office/Word/WordEditArea.htm"
  7962. })
  7963. _box.appendChild(_iframe);
  7964. _box.appendChild(_jie);
  7965. _formdiv = new U.UF.UI.form(
  7966. "协同文档",
  7967. _box, {
  7968. "id": "doc" + cid + stage + task + tool,
  7969. "style": {
  7970. "width": "90%",
  7971. "height": "90%",
  7972. "overflow": 'hidden'
  7973. },
  7974. "onresize": function () { }
  7975. }, {
  7976. closecallback: function () { }
  7977. }, {
  7978. "style": {
  7979. "height": "36px"
  7980. }
  7981. }).form; //创建窗体
  7982. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7983. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7984. })
  7985. _taskbar = {
  7986. "id": str + _formdiv.id,
  7987. "style": {
  7988. "backgroundImage": "url(/img/icon/doc.png)"
  7989. },
  7990. "name": "协同文档",
  7991. "forms": _formdiv,
  7992. "click": function () {
  7993. U.MD.D.I.openApplication(str, obj, info);
  7994. }
  7995. }
  7996. break;
  7997. case "mindNetwork": //好友打开
  7998. aTool = 7;
  7999. _iframe = $$("iframe", {
  8000. "webkitallowfullscreen": "",
  8001. "mozallowfullscreen": "",
  8002. "allowfullscreen": "",
  8003. "frameborder": "no",
  8004. "border": "0",
  8005. "scrolling ": "no",
  8006. "style": {
  8007. "cssText": "border:0; width:100%; height:100%;"
  8008. },
  8009. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8010. })
  8011. _box.appendChild(_iframe);
  8012. _box.appendChild(_jie);
  8013. _formdiv = new U.UF.UI.form(
  8014. "思维网格",
  8015. _box, {
  8016. "id": "mindNetwork" + cid + stage + task + tool,
  8017. "style": {
  8018. "width": "90%",
  8019. "height": "90%",
  8020. "overflow": 'hidden'
  8021. },
  8022. "onresize": function () { }
  8023. }, {
  8024. closecallback: function () { }
  8025. }, {
  8026. "style": {
  8027. "height": "36px"
  8028. }
  8029. }).form; //创建窗体
  8030. _taskbar = {
  8031. "id": str + _formdiv.id,
  8032. "style": {
  8033. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8034. },
  8035. "name": "思维网格",
  8036. "forms": _formdiv,
  8037. "click": function () {
  8038. U.MD.D.I.openApplication(str, obj, info);
  8039. }
  8040. }
  8041. break;
  8042. case "courseDesign":
  8043. _iframe = $$("iframe", {
  8044. "webkitallowfullscreen": "",
  8045. "mozallowfullscreen": "",
  8046. "allowfullscreen": "",
  8047. "frameborder": "no",
  8048. "border": "0",
  8049. "scrolling ": "no",
  8050. "style": {
  8051. "cssText": "border:0; width:100%; height:100%;"
  8052. },
  8053. "src": "/course-design-vue"
  8054. })
  8055. _box.appendChild(_iframe);
  8056. _box.appendChild(_jie);
  8057. _formdiv = new U.UF.UI.form(
  8058. "项目设计",
  8059. _box, {
  8060. "id": "courseDesign" + cid + stage + task + tool,
  8061. "style": {
  8062. "width": "90%",
  8063. "height": "90%",
  8064. "overflow": 'hidden'
  8065. },
  8066. "onresize": function () { }
  8067. }, {
  8068. closecallback: function () { }
  8069. }, {
  8070. "style": {
  8071. "height": "36px"
  8072. }
  8073. }).form; //创建窗体
  8074. _taskbar = {
  8075. "id": str + _formdiv.id,
  8076. "style": {
  8077. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8078. },
  8079. "name": "项目设计",
  8080. "forms": _formdiv,
  8081. "click": function () {
  8082. U.MD.D.I.openApplication(str, obj, info);
  8083. }
  8084. }
  8085. break;
  8086. }
  8087. const script1 = document.createElement("script");
  8088. script1.type = "text/javascript";
  8089. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8090. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8091. const script2 = document.createElement("script");
  8092. script2.type = "text/javascript";
  8093. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8094. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8095. const script3 = document.createElement("script");
  8096. script3.type = "text/javascript";
  8097. script3.charset = "UTF-8";
  8098. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8099. const script4 = document.createElement("script");
  8100. script4.type = "text/javascript";
  8101. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8102. script4.src = window.origin + "/js/Common/jietu2E.js";
  8103. if (_iframe) {
  8104. if (str == 'doc') {
  8105. _iframe = _formdiv.querySelector('iframe')
  8106. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8107. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8108. _iframe.contentWindow.document.body.appendChild(script1);
  8109. _iframe.contentWindow.document.body.appendChild(script2);
  8110. // _iframe.contentWindow.document.body.appendChild(script3);
  8111. _iframe.contentWindow.document.body.appendChild(script4);
  8112. })
  8113. if (onloadListener) {
  8114. _iframe.contentDocument.location.reload()
  8115. } else {
  8116. _iframe.contentDocument.location.reload()
  8117. }
  8118. } else if (str == 'courseDesign') {
  8119. U.UF.DL.iframeLoad(_iframe, function () {
  8120. // _iframe.contentWindow.U.MD.O.W.load();
  8121. // _iframe.contentWindow.document.body.appendChild(script1);
  8122. _iframe.contentWindow.document.body.appendChild(script2);
  8123. _iframe.contentWindow.document.body.appendChild(script4);
  8124. })
  8125. } else if (str == 'mind') {
  8126. _iframe = _formdiv.querySelector('iframe')
  8127. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8128. //
  8129. _iframe.contentWindow.document.body.appendChild(script1);
  8130. _iframe.contentWindow.document.body.appendChild(script2);
  8131. _iframe.contentWindow.document.body.appendChild(script4);
  8132. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8133. })
  8134. if (onloadListener) {
  8135. _iframe.contentDocument.location.reload()
  8136. } else {
  8137. _iframe.contentDocument.location.reload()
  8138. }
  8139. } else if (str == 'whiteboard') {
  8140. _iframe = _formdiv.querySelector('iframe')
  8141. let onloadListener = _iframe.onload = () => {
  8142. _iframe.contentWindow.document.body.appendChild(script1);
  8143. _iframe.contentWindow.document.body.appendChild(script2);
  8144. _iframe.contentWindow.document.body.appendChild(script4);
  8145. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8146. };
  8147. // if (onloadListener) {
  8148. // try {
  8149. // _iframe.src += "?cocorobo="+new Date().getTime()
  8150. // _iframe.contentWindow.document.location.reload()
  8151. // } catch (error) {
  8152. // }
  8153. // } else {
  8154. // _iframe.contentDocument.location.reload()
  8155. // }
  8156. } else {
  8157. _iframe.onload = () => {
  8158. _iframe.contentWindow.document.body.appendChild(script1);
  8159. _iframe.contentWindow.document.body.appendChild(script2);
  8160. // _iframe.contentWindow.document.body.appendChild(script3);
  8161. _iframe.contentWindow.document.body.appendChild(script4);
  8162. };
  8163. }
  8164. _jie.onclick = async () => {
  8165. let text = ''
  8166. if (aTool == 1) {
  8167. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8168. } else if (aTool == 6) {
  8169. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8170. } else if (aTool == 3) {
  8171. text = await U.MD.D.I.getEditorContent(_iframe);
  8172. }
  8173. _loading.style.display = 'flex'
  8174. console.log(_loading);
  8175. var _ajs = _iframe.contentWindow.document.createElement("script");
  8176. _ajs.type = "text/javascript";
  8177. _ajs.innerHTML =
  8178. // 'console.log(' + _loading + ');\n' +
  8179. 'var _js = document.createElement("script");\n' +
  8180. '_js.type="text/javascript";\n' +
  8181. '_js.charset="UTF-8";\n' +
  8182. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8183. "_js.onload = function(){\n" +
  8184. ' var a = document.getElementsByTagName("img")\n' +
  8185. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8186. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8187. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8188. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8189. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8190. "beforeUpload_shishi(file," +
  8191. "'" +
  8192. _userid +
  8193. "'" +
  8194. ", " +
  8195. "'" +
  8196. _cid +
  8197. "'" +
  8198. ", " +
  8199. "'" +
  8200. _stage +
  8201. "'" +
  8202. ", " +
  8203. "'" +
  8204. _task +
  8205. "'" +
  8206. ", " +
  8207. "'" +
  8208. _tool +
  8209. "'" +
  8210. ", " +
  8211. "'" +
  8212. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8213. "'" +
  8214. ", " +
  8215. "'" +
  8216. aTool +
  8217. "'" +
  8218. ", " +
  8219. "`" +
  8220. text +
  8221. "`" +
  8222. ")\n" +
  8223. " });\n" +
  8224. "}\n" +
  8225. "document.head.appendChild(_js);\n";
  8226. _iframe.contentWindow.document.head.appendChild(_ajs);
  8227. }
  8228. }
  8229. //U.MD.D.I.openClick(str);
  8230. //如果有任务栏信息
  8231. // if (_taskbar) {
  8232. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8233. // }
  8234. }
  8235. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8236. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8237. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8238. _userid = student.userid, //登录用户id
  8239. _username = student.student //用户名字
  8240. let _iframe;
  8241. let _cid = cid,
  8242. _stage = stage,
  8243. _task = task,
  8244. _tool = tool;
  8245. var _jie = $$("div", {
  8246. "style": {
  8247. "position": "absolute",
  8248. "bottom": "50px",
  8249. "right": "50px",
  8250. "zIndex": "9999",
  8251. "backgroundColor": "#2268bc",
  8252. "color": "#fff",
  8253. "padding": "12px 20px",
  8254. "cursor": "pointer",
  8255. "borderRadius": "4px",
  8256. },
  8257. "innerHTML": "提交作业"
  8258. })
  8259. let aTool = ''
  8260. let _loading = document.createElement('div')
  8261. _loading.style = "width:100%;height:100%;background:#00000000;position:absolute;top:0;left:0;z-index:99999999999999;display: none;justify-content: center;align-items: center;"
  8262. // _loading.id = "";
  8263. let _lchild = document.createElement('div')
  8264. let _limg = document.createElement('img')
  8265. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8266. _limg.style = "width: 26px;margin-right: 10px;"
  8267. _lchild.appendChild(_limg)
  8268. let _lspan = document.createElement('span')
  8269. _lspan.innerHTML = "上传中..."
  8270. _lchild.appendChild(_lspan)
  8271. _lchild.style = "color: rgb(255, 255, 255);padding: 15px;background: rgba(0, 0, 0, 0.44);font-size: 18px;display: flex;align-items: center;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);"
  8272. _loading.appendChild(_lchild)
  8273. var _box = $$('div', {
  8274. "style": {
  8275. "position": "relative",
  8276. "width": "100%",
  8277. "height": "100%",
  8278. },
  8279. })
  8280. _box.appendChild(_loading)
  8281. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8282. switch (str) {
  8283. case "whiteboard":
  8284. aTool = 1;
  8285. _iframe = $$("iframe", {
  8286. "frameborder": "no",
  8287. "border": "0",
  8288. "scrolling ": "no",
  8289. "style": {
  8290. "cssText": "border:0;width:100%;height:100%"
  8291. },
  8292. "src": "https://beta.iwb.cocorobo.cn/"
  8293. })
  8294. _box.appendChild(_iframe);
  8295. _box.appendChild(_jie);
  8296. _formdiv = new U.UF.UI.form(
  8297. "电子白板-" + _username,
  8298. _box, {
  8299. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8300. "style": {
  8301. "width": "90%",
  8302. "height": "90%",
  8303. "overflow": 'hidden'
  8304. },
  8305. "onresize": function () { }
  8306. }, {
  8307. closecallback: function () { }
  8308. }, {
  8309. "style": {
  8310. "height": "36px"
  8311. }
  8312. }).form; //创建窗体
  8313. _taskbar = {
  8314. "id": str + _formdiv.id,
  8315. "style": {
  8316. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8317. },
  8318. "name": "电子白板",
  8319. "forms": _formdiv,
  8320. "click": function () {
  8321. U.MD.D.I.openApplication(str, obj, info);
  8322. }
  8323. }
  8324. break;
  8325. case "mind":
  8326. aTool = 3;
  8327. _iframe = $$("iframe", {
  8328. "frameborder": "no",
  8329. "border": "0",
  8330. "scrolling ": "no",
  8331. "style": {
  8332. "cssText": "border:0;width:100%;height:100%"
  8333. },
  8334. "src": "/kityminder-editor/dist/index.html"
  8335. })
  8336. _box.appendChild(_iframe);
  8337. _box.appendChild(_jie);
  8338. _formdiv = new U.UF.UI.form(
  8339. "思维导图-" + _username,
  8340. _box, { //"/jsmind/example/demo.html"
  8341. "id": "mind" + cid + stage + task + tool + _userid,
  8342. "style": {
  8343. "width": "90%",
  8344. "height": "90%",
  8345. "overflow": 'hidden'
  8346. },
  8347. "onresize": function () { }
  8348. }, {
  8349. closecallback: function () { }
  8350. }, {
  8351. "style": {
  8352. "height": "36px"
  8353. }
  8354. }).form; //创建窗体
  8355. _taskbar = {
  8356. "id": str + _formdiv.id,
  8357. "style": {
  8358. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8359. },
  8360. "name": "思维导图",
  8361. "forms": _formdiv,
  8362. "click": function () {
  8363. U.MD.D.I.openApplication(str, obj, info);
  8364. }
  8365. }
  8366. break;
  8367. case "MindMap":
  8368. aTool = 3;
  8369. _iframe = $$("iframe", {
  8370. "frameborder": "no",
  8371. "border": "0",
  8372. "scrolling ": "no",
  8373. "style": {
  8374. "cssText": "border:0;width:100%;height:100%"
  8375. },
  8376. "src": "//cloud.cocorobo.cn/mind/"
  8377. })
  8378. _box.appendChild(_iframe);
  8379. _box.appendChild(_jie);
  8380. _formdiv = new U.UF.UI.form(
  8381. "思维导图-" + _username,
  8382. _box, { //"/jsmind/example/demo.html"
  8383. "id": "mind" + cid + stage + task + tool + _userid,
  8384. "style": {
  8385. "width": "90%",
  8386. "height": "90%",
  8387. "overflow": 'hidden'
  8388. },
  8389. "onresize": function () { }
  8390. }, {
  8391. closecallback: function () { }
  8392. }, {
  8393. "style": {
  8394. "height": "36px"
  8395. }
  8396. }).form; //创建窗体
  8397. _taskbar = {
  8398. "id": str + _formdiv.id,
  8399. "style": {
  8400. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8401. },
  8402. "name": "思维导图",
  8403. "forms": _formdiv,
  8404. "click": function () {
  8405. U.MD.D.I.openApplication(str, obj, info);
  8406. }
  8407. }
  8408. break;
  8409. case "doc":
  8410. aTool = 6;
  8411. _iframe = $$("iframe", {
  8412. "frameborder": "no",
  8413. "border": "0",
  8414. "scrolling ": "no",
  8415. "style": {
  8416. "cssText": "border:0;width:100%;height:100%"
  8417. },
  8418. "src": "/Office/Word/WordEditArea.htm"
  8419. })
  8420. _box.appendChild(_iframe);
  8421. _box.appendChild(_jie);
  8422. _formdiv = new U.UF.UI.form(
  8423. "协同文档-" + _username,
  8424. _box, {
  8425. "id": "doc" + cid + stage + task + tool + _userid,
  8426. "style": {
  8427. "width": "90%",
  8428. "height": "90%",
  8429. "overflow": 'hidden'
  8430. },
  8431. "onresize": function () { }
  8432. }, {
  8433. closecallback: function () { }
  8434. }, {
  8435. "style": {
  8436. "height": "36px"
  8437. }
  8438. }).form; //创建窗体
  8439. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8440. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8441. })
  8442. _taskbar = {
  8443. "id": str + _formdiv.id,
  8444. "style": {
  8445. "backgroundImage": "url(/img/icon/doc.png)"
  8446. },
  8447. "name": "协同文档",
  8448. "forms": _formdiv,
  8449. "click": function () {
  8450. U.MD.D.I.openApplication(str, obj, info);
  8451. }
  8452. }
  8453. break;
  8454. case "mindNetwork": //好友打开
  8455. aTool = 7;
  8456. _iframe = $$("iframe", {
  8457. "webkitallowfullscreen": "",
  8458. "mozallowfullscreen": "",
  8459. "allowfullscreen": "",
  8460. "frameborder": "no",
  8461. "border": "0",
  8462. "scrolling ": "no",
  8463. "style": {
  8464. "cssText": "border:0; width:100%; height:100%;"
  8465. },
  8466. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8467. })
  8468. _box.appendChild(_iframe);
  8469. _box.appendChild(_jie);
  8470. _formdiv = new U.UF.UI.form(
  8471. "思维网格-" + _username,
  8472. _box, {
  8473. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8474. "style": {
  8475. "width": "90%",
  8476. "height": "90%",
  8477. "overflow": 'hidden'
  8478. },
  8479. "onresize": function () { }
  8480. }, {
  8481. closecallback: function () { }
  8482. }, {
  8483. "style": {
  8484. "height": "36px"
  8485. }
  8486. }).form; //创建窗体
  8487. _taskbar = {
  8488. "id": str + _formdiv.id,
  8489. "style": {
  8490. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8491. },
  8492. "name": "思维网格",
  8493. "forms": _formdiv,
  8494. "click": function () {
  8495. U.MD.D.I.openApplication(str, obj, info);
  8496. }
  8497. }
  8498. break;
  8499. case "courseDesign":
  8500. _iframe = $$("iframe", {
  8501. "webkitallowfullscreen": "",
  8502. "mozallowfullscreen": "",
  8503. "allowfullscreen": "",
  8504. "frameborder": "no",
  8505. "border": "0",
  8506. "scrolling ": "no",
  8507. "style": {
  8508. "cssText": "border:0; width:100%; height:100%;"
  8509. },
  8510. "src": "/course-design-vue"
  8511. })
  8512. _box.appendChild(_iframe);
  8513. _box.appendChild(_jie);
  8514. _formdiv = new U.UF.UI.form(
  8515. "项目设计-" + _username,
  8516. _box, {
  8517. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8518. "style": {
  8519. "width": "90%",
  8520. "height": "90%",
  8521. "overflow": 'hidden'
  8522. },
  8523. "onresize": function () { }
  8524. }, {
  8525. closecallback: function () { }
  8526. }, {
  8527. "style": {
  8528. "height": "36px"
  8529. }
  8530. }).form; //创建窗体
  8531. _taskbar = {
  8532. "id": str + _formdiv.id,
  8533. "style": {
  8534. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8535. },
  8536. "name": "项目设计",
  8537. "forms": _formdiv,
  8538. "click": function () {
  8539. U.MD.D.I.openApplication(str, obj, info);
  8540. }
  8541. }
  8542. break;
  8543. }
  8544. const script1 = document.createElement("script");
  8545. script1.type = "text/javascript";
  8546. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8547. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8548. const script2 = document.createElement("script");
  8549. script2.type = "text/javascript";
  8550. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8551. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8552. const script3 = document.createElement("script");
  8553. script3.type = "text/javascript";
  8554. script3.charset = "UTF-8";
  8555. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8556. const script4 = document.createElement("script");
  8557. script4.type = "text/javascript";
  8558. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8559. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8560. if (_iframe) {
  8561. if (str == 'doc') {
  8562. _iframe = _formdiv.querySelector('iframe')
  8563. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8564. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8565. _iframe.contentWindow.document.body.appendChild(script1);
  8566. _iframe.contentWindow.document.body.appendChild(script2);
  8567. // _iframe.contentWindow.document.body.appendChild(script3);
  8568. _iframe.contentWindow.document.body.appendChild(script4);
  8569. })
  8570. if (onloadListener) {
  8571. _iframe.contentDocument.location.reload()
  8572. } else {
  8573. _iframe.contentDocument.location.reload()
  8574. }
  8575. } else if (str == 'courseDesign') {
  8576. U.UF.DL.iframeLoad(_iframe, function () {
  8577. // _iframe.contentWindow.U.MD.O.W.load();
  8578. // _iframe.contentWindow.document.body.appendChild(script1);
  8579. _iframe.contentWindow.document.body.appendChild(script2);
  8580. _iframe.contentWindow.document.body.appendChild(script4);
  8581. })
  8582. } else if (str == 'mind') {
  8583. _iframe = _formdiv.querySelector('iframe')
  8584. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8585. //
  8586. _iframe.contentWindow.document.body.appendChild(script1);
  8587. _iframe.contentWindow.document.body.appendChild(script2);
  8588. _iframe.contentWindow.document.body.appendChild(script4);
  8589. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8590. })
  8591. if (onloadListener) {
  8592. _iframe.contentDocument.location.reload()
  8593. } else {
  8594. _iframe.contentDocument.location.reload()
  8595. }
  8596. } else if (str == 'whiteboard') {
  8597. _iframe = _formdiv.querySelector('iframe')
  8598. let onloadListener = _iframe.onload = () => {
  8599. _iframe.contentWindow.document.body.appendChild(script1);
  8600. _iframe.contentWindow.document.body.appendChild(script2);
  8601. _iframe.contentWindow.document.body.appendChild(script4);
  8602. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8603. };
  8604. // if (onloadListener) {
  8605. // try {
  8606. // _iframe.src += "?cocorobo="+new Date().getTime()
  8607. // _iframe.contentWindow.document.location.reload()
  8608. // } catch (error) {
  8609. // }
  8610. // } else {
  8611. // _iframe.contentDocument.location.reload()
  8612. // }
  8613. } else {
  8614. _iframe.onload = () => {
  8615. _iframe.contentWindow.document.body.appendChild(script1);
  8616. _iframe.contentWindow.document.body.appendChild(script2);
  8617. // _iframe.contentWindow.document.body.appendChild(script3);
  8618. _iframe.contentWindow.document.body.appendChild(script4);
  8619. };
  8620. }
  8621. _jie.onclick = async () => {
  8622. let text = ''
  8623. if (aTool == 1) {
  8624. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8625. } else if (aTool == 6) {
  8626. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8627. } else if (aTool == 3) {
  8628. text = await U.MD.D.I.getEditorContent(_iframe);
  8629. }
  8630. _loading.style.display = 'flex'
  8631. console.log(_loading);
  8632. var _ajs = _iframe.contentWindow.document.createElement("script");
  8633. _ajs.type = "text/javascript";
  8634. _ajs.innerHTML =
  8635. // 'console.log(' + _loading + ');\n' +
  8636. 'var _js = document.createElement("script");\n' +
  8637. '_js.type="text/javascript";\n' +
  8638. '_js.charset="UTF-8";\n' +
  8639. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8640. "_js.onload = function(){\n" +
  8641. ' var a = document.getElementsByTagName("img")\n' +
  8642. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8643. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8644. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8645. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8646. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8647. "beforeUpload_shishi(file," +
  8648. "'" +
  8649. _userid +
  8650. "'" +
  8651. ", " +
  8652. "'" +
  8653. _cid +
  8654. "'" +
  8655. ", " +
  8656. "'" +
  8657. _stage +
  8658. "'" +
  8659. ", " +
  8660. "'" +
  8661. _task +
  8662. "'" +
  8663. ", " +
  8664. "'" +
  8665. _tool +
  8666. "'" +
  8667. ", " +
  8668. "'" +
  8669. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8670. "'" +
  8671. ", " +
  8672. "'" +
  8673. aTool +
  8674. "'" +
  8675. ", " +
  8676. "`" +
  8677. text +
  8678. "`" +
  8679. ")\n" +
  8680. " });\n" +
  8681. "}\n" +
  8682. "document.head.appendChild(_js);\n";
  8683. _iframe.contentWindow.document.head.appendChild(_ajs);
  8684. }
  8685. }
  8686. }
  8687. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8688. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8689. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8690. _userid = student.userid, //登录用户id
  8691. _username = student.student //用户名字
  8692. let _iframe;
  8693. let _cid = cid,
  8694. _stage = stage,
  8695. _task = task,
  8696. _tool = tool;
  8697. var _jie = $$("div", {
  8698. "style": {
  8699. "position": "absolute",
  8700. "bottom": "50px",
  8701. "right": "50px",
  8702. "zIndex": "9999",
  8703. "backgroundColor": "#2268bc",
  8704. "color": "#fff",
  8705. "padding": "12px 20px",
  8706. "cursor": "pointer",
  8707. "borderRadius": "4px",
  8708. },
  8709. "innerHTML": "提交作业"
  8710. })
  8711. let aTool = ''
  8712. let _loading = document.createElement('div')
  8713. _loading.style = "width:100%;height:100%;background:#00000000;position:absolute;top:0;left:0;z-index:99999999999999;display: none;justify-content: center;align-items: center;"
  8714. // _loading.id = "";
  8715. let _lchild = document.createElement('div')
  8716. let _limg = document.createElement('img')
  8717. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8718. _limg.style = "width: 26px;margin-right: 10px;"
  8719. _lchild.appendChild(_limg)
  8720. let _lspan = document.createElement('span')
  8721. _lspan.innerHTML = "上传中..."
  8722. _lchild.appendChild(_lspan)
  8723. _lchild.style = "color: rgb(255, 255, 255);padding: 15px;background: rgba(0, 0, 0, 0.44);font-size: 18px;display: flex;align-items: center;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);"
  8724. _loading.appendChild(_lchild)
  8725. var _box = $$('div', {
  8726. "style": {
  8727. "position": "relative",
  8728. "width": "100%",
  8729. "height": "100%",
  8730. },
  8731. })
  8732. _box.appendChild(_loading)
  8733. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8734. switch (str) {
  8735. case "whiteboard":
  8736. aTool = 1;
  8737. _iframe = $$("iframe", {
  8738. "frameborder": "no",
  8739. "border": "0",
  8740. "scrolling ": "no",
  8741. "style": {
  8742. "cssText": "border:0;width:100%;height:100%"
  8743. },
  8744. "src": "https://beta.iwb.cocorobo.cn/"
  8745. })
  8746. _box.appendChild(_iframe);
  8747. _box.appendChild(_jie);
  8748. _formdiv = new U.UF.UI.form(
  8749. "电子白板-" + _username,
  8750. _box, {
  8751. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8752. "style": {
  8753. "width": "90%",
  8754. "height": "90%",
  8755. "overflow": 'hidden'
  8756. },
  8757. "onresize": function () { }
  8758. }, {
  8759. closecallback: function () { }
  8760. }, {
  8761. "style": {
  8762. "height": "36px"
  8763. }
  8764. }).form; //创建窗体
  8765. _taskbar = {
  8766. "id": str + _formdiv.id,
  8767. "style": {
  8768. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8769. },
  8770. "name": "电子白板",
  8771. "forms": _formdiv,
  8772. "click": function () {
  8773. U.MD.D.I.openApplication(str, obj, info);
  8774. }
  8775. }
  8776. break;
  8777. case "mind":
  8778. aTool = 3;
  8779. _iframe = $$("iframe", {
  8780. "frameborder": "no",
  8781. "border": "0",
  8782. "scrolling ": "no",
  8783. "style": {
  8784. "cssText": "border:0;width:100%;height:100%"
  8785. },
  8786. "src": "/kityminder-editor/dist/index.html"
  8787. })
  8788. _box.appendChild(_iframe);
  8789. _box.appendChild(_jie);
  8790. _formdiv = new U.UF.UI.form(
  8791. "思维导图-" + _username,
  8792. _box, { //"/jsmind/example/demo.html"
  8793. "id": "mind" + cid + stage + task + tool + _userid,
  8794. "style": {
  8795. "width": "90%",
  8796. "height": "90%",
  8797. "overflow": 'hidden'
  8798. },
  8799. "onresize": function () { }
  8800. }, {
  8801. closecallback: function () { }
  8802. }, {
  8803. "style": {
  8804. "height": "36px"
  8805. }
  8806. }).form; //创建窗体
  8807. _taskbar = {
  8808. "id": str + _formdiv.id,
  8809. "style": {
  8810. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8811. },
  8812. "name": "思维导图",
  8813. "forms": _formdiv,
  8814. "click": function () {
  8815. U.MD.D.I.openApplication(str, obj, info);
  8816. }
  8817. }
  8818. break;
  8819. case "MindMap":
  8820. aTool = 3;
  8821. _iframe = $$("iframe", {
  8822. "frameborder": "no",
  8823. "border": "0",
  8824. "scrolling ": "no",
  8825. "style": {
  8826. "cssText": "border:0;width:100%;height:100%"
  8827. },
  8828. "src": "//cloud.cocorobo.cn/mind/"
  8829. })
  8830. _box.appendChild(_iframe);
  8831. _box.appendChild(_jie);
  8832. _formdiv = new U.UF.UI.form(
  8833. "思维导图-" + _username,
  8834. _box, { //"/jsmind/example/demo.html"
  8835. "id": "mind" + cid + stage + task + tool + _userid,
  8836. "style": {
  8837. "width": "90%",
  8838. "height": "90%",
  8839. "overflow": 'hidden'
  8840. },
  8841. "onresize": function () { }
  8842. }, {
  8843. closecallback: function () { }
  8844. }, {
  8845. "style": {
  8846. "height": "36px"
  8847. }
  8848. }).form; //创建窗体
  8849. _taskbar = {
  8850. "id": str + _formdiv.id,
  8851. "style": {
  8852. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8853. },
  8854. "name": "思维导图",
  8855. "forms": _formdiv,
  8856. "click": function () {
  8857. U.MD.D.I.openApplication(str, obj, info);
  8858. }
  8859. }
  8860. break;
  8861. case "doc":
  8862. aTool = 6;
  8863. _iframe = $$("iframe", {
  8864. "frameborder": "no",
  8865. "border": "0",
  8866. "scrolling ": "no",
  8867. "style": {
  8868. "cssText": "border:0;width:100%;height:100%"
  8869. },
  8870. "src": "/Office/Word/WordEditArea.htm"
  8871. })
  8872. _box.appendChild(_iframe);
  8873. _box.appendChild(_jie);
  8874. _formdiv = new U.UF.UI.form(
  8875. "协同文档-" + _username,
  8876. _box, {
  8877. "id": "doc" + cid + stage + task + tool + _userid,
  8878. "style": {
  8879. "width": "90%",
  8880. "height": "90%",
  8881. "overflow": 'hidden'
  8882. },
  8883. "onresize": function () { }
  8884. }, {
  8885. closecallback: function () { }
  8886. }, {
  8887. "style": {
  8888. "height": "36px"
  8889. }
  8890. }).form; //创建窗体
  8891. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8892. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8893. })
  8894. _taskbar = {
  8895. "id": str + _formdiv.id,
  8896. "style": {
  8897. "backgroundImage": "url(/img/icon/doc.png)"
  8898. },
  8899. "name": "协同文档",
  8900. "forms": _formdiv,
  8901. "click": function () {
  8902. U.MD.D.I.openApplication(str, obj, info);
  8903. }
  8904. }
  8905. break;
  8906. case "mindNetwork": //好友打开
  8907. aTool = 7;
  8908. _iframe = $$("iframe", {
  8909. "webkitallowfullscreen": "",
  8910. "mozallowfullscreen": "",
  8911. "allowfullscreen": "",
  8912. "frameborder": "no",
  8913. "border": "0",
  8914. "scrolling ": "no",
  8915. "style": {
  8916. "cssText": "border:0; width:100%; height:100%;"
  8917. },
  8918. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8919. })
  8920. _box.appendChild(_iframe);
  8921. _box.appendChild(_jie);
  8922. _formdiv = new U.UF.UI.form(
  8923. "思维网格-" + _username,
  8924. _box, {
  8925. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8926. "style": {
  8927. "width": "90%",
  8928. "height": "90%",
  8929. "overflow": 'hidden'
  8930. },
  8931. "onresize": function () { }
  8932. }, {
  8933. closecallback: function () { }
  8934. }, {
  8935. "style": {
  8936. "height": "36px"
  8937. }
  8938. }).form; //创建窗体
  8939. _taskbar = {
  8940. "id": str + _formdiv.id,
  8941. "style": {
  8942. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8943. },
  8944. "name": "思维网格",
  8945. "forms": _formdiv,
  8946. "click": function () {
  8947. U.MD.D.I.openApplication(str, obj, info);
  8948. }
  8949. }
  8950. break;
  8951. case "courseDesign":
  8952. _iframe = $$("iframe", {
  8953. "webkitallowfullscreen": "",
  8954. "mozallowfullscreen": "",
  8955. "allowfullscreen": "",
  8956. "frameborder": "no",
  8957. "border": "0",
  8958. "scrolling ": "no",
  8959. "style": {
  8960. "cssText": "border:0; width:100%; height:100%;"
  8961. },
  8962. "src": "/course-design-vue"
  8963. })
  8964. _box.appendChild(_iframe);
  8965. _box.appendChild(_jie);
  8966. _formdiv = new U.UF.UI.form(
  8967. "项目设计-" + _username,
  8968. _box, {
  8969. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8970. "style": {
  8971. "width": "90%",
  8972. "height": "90%",
  8973. "overflow": 'hidden'
  8974. },
  8975. "onresize": function () { }
  8976. }, {
  8977. closecallback: function () { }
  8978. }, {
  8979. "style": {
  8980. "height": "36px"
  8981. }
  8982. }).form; //创建窗体
  8983. _taskbar = {
  8984. "id": str + _formdiv.id,
  8985. "style": {
  8986. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8987. },
  8988. "name": "项目设计",
  8989. "forms": _formdiv,
  8990. "click": function () {
  8991. U.MD.D.I.openApplication(str, obj, info);
  8992. }
  8993. }
  8994. break;
  8995. }
  8996. const script1 = document.createElement("script");
  8997. script1.type = "text/javascript";
  8998. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8999. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9000. const script2 = document.createElement("script");
  9001. script2.type = "text/javascript";
  9002. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9003. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9004. const script3 = document.createElement("script");
  9005. script3.type = "text/javascript";
  9006. script3.charset = "UTF-8";
  9007. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9008. const script4 = document.createElement("script");
  9009. script4.type = "text/javascript";
  9010. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9011. script4.src = window.origin + "/js/Common/jietu2E.js";
  9012. if (_iframe) {
  9013. if (str == 'doc') {
  9014. _iframe = _formdiv.querySelector('iframe')
  9015. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9016. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9017. _iframe.contentWindow.document.body.appendChild(script1);
  9018. _iframe.contentWindow.document.body.appendChild(script2);
  9019. // _iframe.contentWindow.document.body.appendChild(script3);
  9020. _iframe.contentWindow.document.body.appendChild(script4);
  9021. })
  9022. if (onloadListener) {
  9023. _iframe.contentDocument.location.reload()
  9024. } else {
  9025. _iframe.contentDocument.location.reload()
  9026. }
  9027. } else if (str == 'courseDesign') {
  9028. U.UF.DL.iframeLoad(_iframe, function () {
  9029. // _iframe.contentWindow.U.MD.O.W.load();
  9030. // _iframe.contentWindow.document.body.appendChild(script1);
  9031. _iframe.contentWindow.document.body.appendChild(script2);
  9032. _iframe.contentWindow.document.body.appendChild(script4);
  9033. })
  9034. } else if (str == 'mind') {
  9035. _iframe = _formdiv.querySelector('iframe')
  9036. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9037. //
  9038. _iframe.contentWindow.document.body.appendChild(script1);
  9039. _iframe.contentWindow.document.body.appendChild(script2);
  9040. _iframe.contentWindow.document.body.appendChild(script4);
  9041. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9042. })
  9043. if (onloadListener) {
  9044. _iframe.contentDocument.location.reload()
  9045. } else {
  9046. _iframe.contentDocument.location.reload()
  9047. }
  9048. } else if (str == 'whiteboard') {
  9049. _iframe = _formdiv.querySelector('iframe')
  9050. let onloadListener = _iframe.onload = () => {
  9051. _iframe.contentWindow.document.body.appendChild(script1);
  9052. _iframe.contentWindow.document.body.appendChild(script2);
  9053. _iframe.contentWindow.document.body.appendChild(script4);
  9054. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9055. };
  9056. // if (onloadListener) {
  9057. // try {
  9058. // _iframe.src += "?cocorobo="+new Date().getTime()
  9059. // _iframe.contentWindow.document.location.reload()
  9060. // } catch (error) {
  9061. // }
  9062. // } else {
  9063. // _iframe.contentDocument.location.reload()
  9064. // }
  9065. } else {
  9066. _iframe.onload = () => {
  9067. _iframe.contentWindow.document.body.appendChild(script1);
  9068. _iframe.contentWindow.document.body.appendChild(script2);
  9069. // _iframe.contentWindow.document.body.appendChild(script3);
  9070. _iframe.contentWindow.document.body.appendChild(script4);
  9071. };
  9072. }
  9073. _jie.onclick = async () => {
  9074. let text = ''
  9075. if (aTool == 1) {
  9076. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9077. } else if (aTool == 6) {
  9078. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9079. } else if (aTool == 3) {
  9080. text = await U.MD.D.I.getEditorContent(_iframe);
  9081. }
  9082. _loading.style.display = 'flex'
  9083. console.log(_loading);
  9084. var _ajs = _iframe.contentWindow.document.createElement("script");
  9085. _ajs.type = "text/javascript";
  9086. _ajs.innerHTML =
  9087. // 'console.log(' + _loading + ');\n' +
  9088. 'var _js = document.createElement("script");\n' +
  9089. '_js.type="text/javascript";\n' +
  9090. '_js.charset="UTF-8";\n' +
  9091. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9092. "_js.onload = function(){\n" +
  9093. ' var a = document.getElementsByTagName("img")\n' +
  9094. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9095. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9096. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9097. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9098. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9099. "beforeUpload_shishi(file," +
  9100. "'" +
  9101. _userid +
  9102. "'" +
  9103. ", " +
  9104. "'" +
  9105. _cid +
  9106. "'" +
  9107. ", " +
  9108. "'" +
  9109. _stage +
  9110. "'" +
  9111. ", " +
  9112. "'" +
  9113. _task +
  9114. "'" +
  9115. ", " +
  9116. "'" +
  9117. _tool +
  9118. "'" +
  9119. ", " +
  9120. "'" +
  9121. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9122. "'" +
  9123. ", " +
  9124. "'" +
  9125. aTool +
  9126. "'" +
  9127. ", " +
  9128. "`" +
  9129. text +
  9130. "`" +
  9131. ")\n" +
  9132. " });\n" +
  9133. "}\n" +
  9134. "document.head.appendChild(_js);\n";
  9135. _iframe.contentWindow.document.head.appendChild(_ajs);
  9136. }
  9137. }
  9138. }
  9139. U.MD.D.I.getEditorContent = function (iframe) {
  9140. return new Promise((resolve, reject) => {
  9141. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9142. console.log(content);
  9143. resolve(content)
  9144. });
  9145. });
  9146. }
  9147. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9148. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9149. // if (res.value[0].length > 0) {
  9150. // // resolve(res.value[0][0].text);
  9151. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9152. // $(fileInput).val('');
  9153. // });
  9154. // }
  9155. // }, [], { "type": "GET", "withCredentials": true });
  9156. var xmlhttp;
  9157. var Mac, Sn, DeviceId
  9158. if (window.XMLHttpRequest) {
  9159. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9160. xmlhttp = new XMLHttpRequest();
  9161. } else {
  9162. // IE6, IE5 浏览器执行代码
  9163. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9164. }
  9165. xmlhttp.onreadystatechange = function () {
  9166. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9167. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9168. // resolve(res.value[0][0].text);
  9169. if (type == '2') {
  9170. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9171. } else if (type == '3') {
  9172. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9173. }
  9174. } else {
  9175. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9176. }
  9177. }
  9178. }
  9179. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9180. xmlhttp.send();
  9181. }
  9182. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9183. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9184. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9185. _userinfo = US.userInfo, //登录用户信息
  9186. _userid = US.userInfo.userid //登录用户id
  9187. let _iframe;
  9188. let _cid = cid,
  9189. _stage = stage,
  9190. _task = task,
  9191. _tool = tool;
  9192. var _jie = $$("div", {
  9193. "style": {
  9194. "position": "absolute",
  9195. "bottom": "50px",
  9196. "right": "50px",
  9197. "zIndex": "9999",
  9198. "backgroundColor": "#2268bc",
  9199. "color": "#fff",
  9200. "padding": "12px 20px",
  9201. "cursor": "pointer",
  9202. "borderRadius": "4px",
  9203. },
  9204. "innerHTML": "确认并提交"
  9205. })
  9206. let aTool = ''
  9207. let _loading = document.createElement('div')
  9208. _loading.style = "width:100%;height:100%;background:#00000000;position:absolute;top:0;left:0;z-index:99999999999999;display: none;justify-content: center;align-items: center;"
  9209. // _loading.id = "";
  9210. let _lchild = document.createElement('div')
  9211. let _limg = document.createElement('img')
  9212. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9213. _limg.style = "width: 26px;margin-right: 10px;"
  9214. _lchild.appendChild(_limg)
  9215. let _lspan = document.createElement('span')
  9216. _lspan.innerHTML = "上传中..."
  9217. _lchild.appendChild(_lspan)
  9218. _lchild.style = "color: rgb(255, 255, 255);padding: 15px;background: rgba(0, 0, 0, 0.44);font-size: 18px;display: flex;align-items: center;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);"
  9219. _loading.appendChild(_lchild)
  9220. var _box = $$('div', {
  9221. "style": {
  9222. "position": "relative",
  9223. "width": "100%",
  9224. "height": "100%",
  9225. },
  9226. })
  9227. _box.appendChild(_loading)
  9228. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9229. switch (str) {
  9230. case "whiteboard":
  9231. aTool = 1;
  9232. _iframe = $$("iframe", {
  9233. "frameborder": "no",
  9234. "border": "0",
  9235. "scrolling ": "no",
  9236. "style": {
  9237. "cssText": "border:0;width:100%;height:100%"
  9238. },
  9239. "src": "https://beta.iwb.cocorobo.cn/"
  9240. })
  9241. _box.appendChild(_iframe);
  9242. _box.appendChild(_jie);
  9243. _formdiv = new U.UF.UI.form(
  9244. "电子白板",
  9245. _box, {
  9246. "id": "whiteboards" + cid + stage + task + tool,
  9247. "style": {
  9248. "width": "90%",
  9249. "height": "90%",
  9250. "overflow": 'hidden'
  9251. },
  9252. "onresize": function () { }
  9253. }, {
  9254. closecallback: function () { }
  9255. }, {
  9256. "style": {
  9257. "height": "36px"
  9258. }
  9259. }).form; //创建窗体
  9260. _taskbar = {
  9261. "id": str + _formdiv.id,
  9262. "style": {
  9263. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9264. },
  9265. "name": "电子白板",
  9266. "forms": _formdiv,
  9267. "click": function () {
  9268. U.MD.D.I.openApplication(str, obj, info);
  9269. }
  9270. }
  9271. break;
  9272. case "mind":
  9273. aTool = 3;
  9274. _iframe = $$("iframe", {
  9275. "frameborder": "no",
  9276. "border": "0",
  9277. "scrolling ": "no",
  9278. "style": {
  9279. "cssText": "border:0;width:100%;height:100%"
  9280. },
  9281. "src": "/kityminder-editor/dist/index.html"
  9282. });
  9283. _box.appendChild(_iframe);
  9284. _box.appendChild(_jie);
  9285. _formdiv = new U.UF.UI.form(
  9286. "思维导图",
  9287. _box, { //"/jsmind/example/demo.html"
  9288. "id": "minds" + cid + stage + task + tool,
  9289. "style": {
  9290. "width": "90%",
  9291. "height": "90%",
  9292. "overflow": 'hidden'
  9293. },
  9294. "onresize": function () { }
  9295. }, {
  9296. closecallback: function () { }
  9297. }, {
  9298. "style": {
  9299. "height": "36px"
  9300. }
  9301. }).form; //创建窗体
  9302. _taskbar = {
  9303. "id": str + _formdiv.id,
  9304. "style": {
  9305. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9306. },
  9307. "name": "思维导图",
  9308. "forms": _formdiv,
  9309. "click": function () {
  9310. U.MD.D.I.openApplication(str, obj, info);
  9311. }
  9312. }
  9313. break;
  9314. case "doc":
  9315. aTool = 6;
  9316. _iframe = $$("iframe", {
  9317. "frameborder": "no",
  9318. "border": "0",
  9319. "scrolling ": "no",
  9320. "style": {
  9321. "cssText": "border:0;width:100%;height:100%"
  9322. },
  9323. "src": "/Office/Word/WordEditArea.htm"
  9324. })
  9325. _box.appendChild(_iframe);
  9326. _box.appendChild(_jie);
  9327. _formdiv = new U.UF.UI.form(
  9328. "协同文档",
  9329. _box, {
  9330. "id": "docs" + cid + stage + task + tool,
  9331. "style": {
  9332. "width": "90%",
  9333. "height": "90%",
  9334. "overflow": 'hidden'
  9335. },
  9336. "onresize": function () { }
  9337. }, {
  9338. closecallback: function () { }
  9339. }, {
  9340. "style": {
  9341. "height": "36px"
  9342. }
  9343. }).form; //创建窗体
  9344. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9345. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9346. })
  9347. _taskbar = {
  9348. "id": str + _formdiv.id,
  9349. "style": {
  9350. "backgroundImage": "url(/img/icon/doc.png)"
  9351. },
  9352. "name": "协同文档",
  9353. "forms": _formdiv,
  9354. "click": function () {
  9355. U.MD.D.I.openApplication(str, obj, info);
  9356. }
  9357. }
  9358. break;
  9359. }
  9360. const script1 = document.createElement("script");
  9361. script1.type = "text/javascript";
  9362. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9363. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9364. const script2 = document.createElement("script");
  9365. script2.type = "text/javascript";
  9366. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9367. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9368. const script3 = document.createElement("script");
  9369. script3.type = "text/javascript";
  9370. script3.charset = "UTF-8";
  9371. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9372. const script4 = document.createElement("script");
  9373. script4.type = "text/javascript";
  9374. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9375. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9376. if (_iframe) {
  9377. if (str == 'doc') {
  9378. _iframe = _formdiv.querySelector('iframe')
  9379. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9380. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9381. _iframe.contentWindow.document.body.appendChild(script1);
  9382. _iframe.contentWindow.document.body.appendChild(script2);
  9383. // _iframe.contentWindow.document.body.appendChild(script3);
  9384. _iframe.contentWindow.document.body.appendChild(script4);
  9385. })
  9386. if (onloadListener) {
  9387. _iframe.contentDocument.location.reload()
  9388. } else {
  9389. _iframe.contentDocument.location.reload()
  9390. }
  9391. } else if (str == 'mind') {
  9392. _iframe = _formdiv.querySelector('iframe')
  9393. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9394. _iframe.contentWindow.document.body.appendChild(script1);
  9395. _iframe.contentWindow.document.body.appendChild(script2);
  9396. _iframe.contentWindow.document.body.appendChild(script4);
  9397. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9398. })
  9399. if (onloadListener) {
  9400. _iframe.contentDocument.location.reload()
  9401. } else {
  9402. _iframe.contentDocument.location.reload()
  9403. }
  9404. } else {
  9405. _iframe.onload = () => {
  9406. _iframe.contentWindow.document.body.appendChild(script1);
  9407. _iframe.contentWindow.document.body.appendChild(script2);
  9408. // _iframe.contentWindow.document.body.appendChild(script3);
  9409. _iframe.contentWindow.document.body.appendChild(script4);
  9410. };
  9411. }
  9412. _jie.onclick = async () => {
  9413. let text = ''
  9414. if (aTool == 6) {
  9415. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9416. } else if (aTool == 3) {
  9417. text = await U.MD.D.I.getEditorContent(_iframe);
  9418. }
  9419. _loading.style.display = 'flex'
  9420. console.log(_loading);
  9421. var _ajs = _iframe.contentWindow.document.createElement("script");
  9422. _ajs.type = "text/javascript";
  9423. _ajs.innerHTML =
  9424. // 'console.log(' + _loading + ');\n' +
  9425. 'var _js = document.createElement("script");\n' +
  9426. '_js.type="text/javascript";\n' +
  9427. '_js.charset="UTF-8";\n' +
  9428. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9429. "_js.onload = function(){\n" +
  9430. ' var a = document.getElementsByTagName("img")\n' +
  9431. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9432. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9433. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9434. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9435. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9436. "beforeUpload_shishi(file," +
  9437. "'" +
  9438. _userid +
  9439. "'" +
  9440. ", " +
  9441. "'" +
  9442. _cid +
  9443. "'" +
  9444. ", " +
  9445. "'" +
  9446. _stage +
  9447. "'" +
  9448. ", " +
  9449. "'" +
  9450. _task +
  9451. "'" +
  9452. ", " +
  9453. "'" +
  9454. _tool +
  9455. "'" +
  9456. ", " +
  9457. "'" +
  9458. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9459. "'" +
  9460. ", " +
  9461. "'" +
  9462. aTool +
  9463. "'" +
  9464. ", " +
  9465. "`" +
  9466. text +
  9467. "`" +
  9468. ")\n" +
  9469. " });\n" +
  9470. "}\n" +
  9471. "document.head.appendChild(_js);\n";
  9472. _iframe.contentWindow.document.head.appendChild(_ajs);
  9473. }
  9474. }
  9475. //U.MD.D.I.openClick(str);
  9476. //如果有任务栏信息
  9477. // if (_taskbar) {
  9478. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9479. // }
  9480. }
  9481. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9482. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9483. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9484. _userinfo = US.userInfo, //登录用户信息
  9485. _userid = US.userInfo.userid //登录用户id
  9486. let _iframe;
  9487. let _cid = cid,
  9488. _stage = stage,
  9489. _task = task,
  9490. _tool = tool;
  9491. var _jie = $$("div", {
  9492. "style": {
  9493. "position": "absolute",
  9494. "bottom": "50px",
  9495. "right": "50px",
  9496. "zIndex": "9999",
  9497. "backgroundColor": "#2268bc",
  9498. "color": "#fff",
  9499. "padding": "12px 20px",
  9500. "cursor": "pointer",
  9501. "borderRadius": "4px",
  9502. },
  9503. "innerHTML": "确认并提交"
  9504. })
  9505. let aTool = ''
  9506. let _loading = document.createElement('div')
  9507. _loading.style = "width:100%;height:100%;background:#00000000;position:absolute;top:0;left:0;z-index:99999999999999;display: none;justify-content: center;align-items: center;"
  9508. // _loading.id = "";
  9509. let _lchild = document.createElement('div')
  9510. let _limg = document.createElement('img')
  9511. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9512. _limg.style = "width: 26px;margin-right: 10px;"
  9513. _lchild.appendChild(_limg)
  9514. let _lspan = document.createElement('span')
  9515. _lspan.innerHTML = "上传中..."
  9516. _lchild.appendChild(_lspan)
  9517. _lchild.style = "color: rgb(255, 255, 255);padding: 15px;background: rgba(0, 0, 0, 0.44);font-size: 18px;display: flex;align-items: center;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);"
  9518. _loading.appendChild(_lchild)
  9519. var _box = $$('div', {
  9520. "style": {
  9521. "position": "relative",
  9522. "width": "100%",
  9523. "height": "100%",
  9524. },
  9525. })
  9526. _box.appendChild(_loading)
  9527. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9528. switch (str) {
  9529. case "whiteboard":
  9530. aTool = 1;
  9531. _iframe = $$("iframe", {
  9532. "frameborder": "no",
  9533. "border": "0",
  9534. "scrolling ": "no",
  9535. "style": {
  9536. "cssText": "border:0;width:100%;height:100%"
  9537. },
  9538. "src": "https://beta.iwb.cocorobo.cn/"
  9539. })
  9540. _box.appendChild(_iframe);
  9541. _box.appendChild(_jie);
  9542. _formdiv = new U.UF.UI.form(
  9543. "电子白板",
  9544. _box, {
  9545. "id": "whiteboards" + cid + stage + task + tool,
  9546. "style": {
  9547. "width": "90%",
  9548. "height": "90%",
  9549. "overflow": 'hidden'
  9550. },
  9551. "onresize": function () { }
  9552. }, {
  9553. closecallback: function () { }
  9554. }, {
  9555. "style": {
  9556. "height": "36px"
  9557. }
  9558. }).form; //创建窗体
  9559. _taskbar = {
  9560. "id": str + _formdiv.id,
  9561. "style": {
  9562. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9563. },
  9564. "name": "电子白板",
  9565. "forms": _formdiv,
  9566. "click": function () {
  9567. U.MD.D.I.openApplication(str, obj, info);
  9568. }
  9569. }
  9570. break;
  9571. case "mind":
  9572. aTool = 3;
  9573. _iframe = $$("iframe", {
  9574. "frameborder": "no",
  9575. "border": "0",
  9576. "scrolling ": "no",
  9577. "style": {
  9578. "cssText": "border:0;width:100%;height:100%"
  9579. },
  9580. "src": "/kityminder-editor/dist/index.html"
  9581. });
  9582. _box.appendChild(_iframe);
  9583. _box.appendChild(_jie);
  9584. _formdiv = new U.UF.UI.form(
  9585. "思维导图",
  9586. _box, { //"/jsmind/example/demo.html"
  9587. "id": "minds" + cid + stage + task + tool,
  9588. "style": {
  9589. "width": "90%",
  9590. "height": "90%",
  9591. "overflow": 'hidden'
  9592. },
  9593. "onresize": function () { }
  9594. }, {
  9595. closecallback: function () { }
  9596. }, {
  9597. "style": {
  9598. "height": "36px"
  9599. }
  9600. }).form; //创建窗体
  9601. _taskbar = {
  9602. "id": str + _formdiv.id,
  9603. "style": {
  9604. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9605. },
  9606. "name": "思维导图",
  9607. "forms": _formdiv,
  9608. "click": function () {
  9609. U.MD.D.I.openApplication(str, obj, info);
  9610. }
  9611. }
  9612. break;
  9613. case "doc":
  9614. aTool = 6;
  9615. _iframe = $$("iframe", {
  9616. "frameborder": "no",
  9617. "border": "0",
  9618. "scrolling ": "no",
  9619. "style": {
  9620. "cssText": "border:0;width:100%;height:100%"
  9621. },
  9622. "src": "/Office/Word/WordEditArea.htm"
  9623. })
  9624. _box.appendChild(_iframe);
  9625. _box.appendChild(_jie);
  9626. _formdiv = new U.UF.UI.form(
  9627. "协同文档",
  9628. _box, {
  9629. "id": "docs" + cid + stage + task + tool,
  9630. "style": {
  9631. "width": "90%",
  9632. "height": "90%",
  9633. "overflow": 'hidden'
  9634. },
  9635. "onresize": function () { }
  9636. }, {
  9637. closecallback: function () { }
  9638. }, {
  9639. "style": {
  9640. "height": "36px"
  9641. }
  9642. }).form; //创建窗体
  9643. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9644. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9645. })
  9646. _taskbar = {
  9647. "id": str + _formdiv.id,
  9648. "style": {
  9649. "backgroundImage": "url(/img/icon/doc.png)"
  9650. },
  9651. "name": "协同文档",
  9652. "forms": _formdiv,
  9653. "click": function () {
  9654. U.MD.D.I.openApplication(str, obj, info);
  9655. }
  9656. }
  9657. break;
  9658. }
  9659. const script1 = document.createElement("script");
  9660. script1.type = "text/javascript";
  9661. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9662. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9663. const script2 = document.createElement("script");
  9664. script2.type = "text/javascript";
  9665. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9666. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9667. const script3 = document.createElement("script");
  9668. script3.type = "text/javascript";
  9669. script3.charset = "UTF-8";
  9670. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9671. const script4 = document.createElement("script");
  9672. script4.type = "text/javascript";
  9673. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9674. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9675. if (_iframe) {
  9676. if (str == 'doc') {
  9677. _iframe = _formdiv.querySelector('iframe')
  9678. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9679. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9680. _iframe.contentWindow.document.body.appendChild(script1);
  9681. _iframe.contentWindow.document.body.appendChild(script2);
  9682. // _iframe.contentWindow.document.body.appendChild(script3);
  9683. _iframe.contentWindow.document.body.appendChild(script4);
  9684. })
  9685. if (onloadListener) {
  9686. _iframe.contentDocument.location.reload()
  9687. } else {
  9688. _iframe.contentDocument.location.reload()
  9689. }
  9690. } else if (str == 'mind') {
  9691. _iframe = _formdiv.querySelector('iframe')
  9692. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9693. _iframe.contentWindow.document.body.appendChild(script1);
  9694. _iframe.contentWindow.document.body.appendChild(script2);
  9695. _iframe.contentWindow.document.body.appendChild(script4);
  9696. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9697. })
  9698. if (onloadListener) {
  9699. _iframe.contentDocument.location.reload()
  9700. } else {
  9701. _iframe.contentDocument.location.reload()
  9702. }
  9703. } else {
  9704. _iframe.onload = () => {
  9705. _iframe.contentWindow.document.body.appendChild(script1);
  9706. _iframe.contentWindow.document.body.appendChild(script2);
  9707. // _iframe.contentWindow.document.body.appendChild(script3);
  9708. _iframe.contentWindow.document.body.appendChild(script4);
  9709. };
  9710. }
  9711. _jie.onclick = async () => {
  9712. let text = ''
  9713. if (aTool == 6) {
  9714. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9715. } else if (aTool == 3) {
  9716. text = await U.MD.D.I.getEditorContent(_iframe);
  9717. }
  9718. _loading.style.display = 'flex'
  9719. console.log(_loading);
  9720. var _ajs = _iframe.contentWindow.document.createElement("script");
  9721. _ajs.type = "text/javascript";
  9722. _ajs.innerHTML =
  9723. // 'console.log(' + _loading + ');\n' +
  9724. 'var _js = document.createElement("script");\n' +
  9725. '_js.type="text/javascript";\n' +
  9726. '_js.charset="UTF-8";\n' +
  9727. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9728. "_js.onload = function(){\n" +
  9729. ' var a = document.getElementsByTagName("img")\n' +
  9730. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9731. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9732. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9733. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9734. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9735. "beforeUpload_shishi(file," +
  9736. "'" +
  9737. _userid +
  9738. "'" +
  9739. ", " +
  9740. "'" +
  9741. _cid +
  9742. "'" +
  9743. ", " +
  9744. "'" +
  9745. _stage +
  9746. "'" +
  9747. ", " +
  9748. "'" +
  9749. _task +
  9750. "'" +
  9751. ", " +
  9752. "'" +
  9753. _tool +
  9754. "'" +
  9755. ", " +
  9756. "'" +
  9757. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9758. "'" +
  9759. ", " +
  9760. "'" +
  9761. aTool +
  9762. "'" +
  9763. ", " +
  9764. "`" +
  9765. text +
  9766. "`" +
  9767. ")\n" +
  9768. " });\n" +
  9769. "}\n" +
  9770. "document.head.appendChild(_js);\n";
  9771. _iframe.contentWindow.document.head.appendChild(_ajs);
  9772. }
  9773. }
  9774. //U.MD.D.I.openClick(str);
  9775. //如果有任务栏信息
  9776. // if (_taskbar) {
  9777. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9778. // }
  9779. }
  9780. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9781. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9782. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9783. _userinfo = US.userInfo, //登录用户信息
  9784. _userid = US.userInfo.userid //登录用户id
  9785. let _iframe;
  9786. let _cid = cid,
  9787. _stage = stage,
  9788. _task = task,
  9789. _tool = tool;
  9790. var _jie = $$("div", {
  9791. "style": {
  9792. "position": "absolute",
  9793. "bottom": "50px",
  9794. "right": "50px",
  9795. "zIndex": "9999",
  9796. "backgroundColor": "#2268bc",
  9797. "color": "#fff",
  9798. "padding": "12px 20px",
  9799. "cursor": "pointer",
  9800. "borderRadius": "4px",
  9801. },
  9802. "innerHTML": "上传模板"
  9803. })
  9804. let aTool = ''
  9805. let _loading = document.createElement('div')
  9806. _loading.style = "width:100%;height:100%;background:#00000000;position:absolute;top:0;left:0;z-index:99999999999999;display: none;justify-content: center;align-items: center;"
  9807. // _loading.id = "";
  9808. let _lchild = document.createElement('div')
  9809. let _limg = document.createElement('img')
  9810. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9811. _limg.style = "width: 26px;margin-right: 10px;"
  9812. _lchild.appendChild(_limg)
  9813. let _lspan = document.createElement('span')
  9814. _lspan.innerHTML = "上传中..."
  9815. _lchild.appendChild(_lspan)
  9816. _lchild.style = "color: rgb(255, 255, 255);padding: 15px;background: rgba(0, 0, 0, 0.44);font-size: 18px;display: flex;align-items: center;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);"
  9817. _loading.appendChild(_lchild)
  9818. var _box = $$('div', {
  9819. "style": {
  9820. "position": "relative",
  9821. "width": "100%",
  9822. "height": "100%",
  9823. },
  9824. })
  9825. _box.appendChild(_loading)
  9826. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9827. switch (str) {
  9828. case "whiteboard":
  9829. aTool = 1;
  9830. _iframe = $$("iframe", {
  9831. "frameborder": "no",
  9832. "border": "0",
  9833. "scrolling ": "no",
  9834. "style": {
  9835. "cssText": "border:0;width:100%;height:100%"
  9836. },
  9837. "src": "https://beta.iwb.cocorobo.cn/"
  9838. })
  9839. _box.appendChild(_iframe);
  9840. _box.appendChild(_jie);
  9841. _formdiv = new U.UF.UI.form(
  9842. "电子白板",
  9843. _box, {
  9844. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9845. "style": {
  9846. "width": "90%",
  9847. "height": "90%",
  9848. "overflow": 'hidden'
  9849. },
  9850. "onresize": function () { }
  9851. }, {
  9852. closecallback: function () { }
  9853. }, {
  9854. "style": {
  9855. "height": "36px"
  9856. }
  9857. }).form; //创建窗体
  9858. _taskbar = {
  9859. "id": str + _formdiv.id,
  9860. "style": {
  9861. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9862. },
  9863. "name": "电子白板",
  9864. "forms": _formdiv,
  9865. "click": function () {
  9866. U.MD.D.I.openApplication(str, obj, info);
  9867. }
  9868. }
  9869. break;
  9870. case "mind":
  9871. aTool = 3;
  9872. _iframe = $$("iframe", {
  9873. "frameborder": "no",
  9874. "border": "0",
  9875. "scrolling ": "no",
  9876. "style": {
  9877. "cssText": "border:0;width:100%;height:100%"
  9878. },
  9879. "src": "/kityminder-editor/dist/index.html"
  9880. });
  9881. _box.appendChild(_iframe);
  9882. _box.appendChild(_jie);
  9883. _formdiv = new U.UF.UI.form(
  9884. "思维导图",
  9885. _box, { //"/jsmind/example/demo.html"
  9886. "id": "minds_Yu" + cid + stage + task + tool,
  9887. "style": {
  9888. "width": "90%",
  9889. "height": "90%",
  9890. "overflow": 'hidden'
  9891. },
  9892. "onresize": function () { }
  9893. }, {
  9894. closecallback: function () { }
  9895. }, {
  9896. "style": {
  9897. "height": "36px"
  9898. }
  9899. }).form; //创建窗体
  9900. _taskbar = {
  9901. "id": str + _formdiv.id,
  9902. "style": {
  9903. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9904. },
  9905. "name": "思维导图",
  9906. "forms": _formdiv,
  9907. "click": function () {
  9908. U.MD.D.I.openApplication(str, obj, info);
  9909. }
  9910. }
  9911. break;
  9912. case "doc":
  9913. aTool = 6;
  9914. _iframe = $$("iframe", {
  9915. "frameborder": "no",
  9916. "border": "0",
  9917. "scrolling ": "no",
  9918. "style": {
  9919. "cssText": "border:0;width:100%;height:100%"
  9920. },
  9921. "src": "/Office/Word/WordEditArea.htm"
  9922. })
  9923. _box.appendChild(_iframe);
  9924. _box.appendChild(_jie);
  9925. _formdiv = new U.UF.UI.form(
  9926. "协同文档",
  9927. _box, {
  9928. "id": "docs_Yu" + cid + stage + task + tool,
  9929. "style": {
  9930. "width": "90%",
  9931. "height": "90%",
  9932. "overflow": 'hidden'
  9933. },
  9934. "onresize": function () { }
  9935. }, {
  9936. closecallback: function () { }
  9937. }, {
  9938. "style": {
  9939. "height": "36px"
  9940. }
  9941. }).form; //创建窗体
  9942. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9943. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9944. })
  9945. _taskbar = {
  9946. "id": str + _formdiv.id,
  9947. "style": {
  9948. "backgroundImage": "url(/img/icon/doc.png)"
  9949. },
  9950. "name": "协同文档",
  9951. "forms": _formdiv,
  9952. "click": function () {
  9953. U.MD.D.I.openApplication(str, obj, info);
  9954. }
  9955. }
  9956. break;
  9957. case "CocoPi":
  9958. aTool = 57;
  9959. _iframe = $$("iframe", {
  9960. "allowpaymentrequest": "allowpaymentrequest",
  9961. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9962. "webkitallowfullscreen": "",
  9963. "mozallowfullscreen": "",
  9964. "frameborder": "no",
  9965. "border": "0",
  9966. "scrolling ": "no",
  9967. "style": {
  9968. "cssText": "border:0;width:100%;height:100%"
  9969. },
  9970. "src": "https://pi.cocorobo.cn/"
  9971. })
  9972. _box.appendChild(_iframe);
  9973. _box.appendChild(_jie);
  9974. _formdiv = new U.UF.UI.form(
  9975. "CocoPi",
  9976. _box, {
  9977. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9978. "style": {
  9979. "width": "90%",
  9980. "height": "90%",
  9981. "overflow": 'hidden'
  9982. },
  9983. "onresize": function () { }
  9984. }, {
  9985. closecallback: function () { }
  9986. }, {
  9987. "style": {
  9988. "height": "36px"
  9989. }
  9990. }).form; //创建窗体
  9991. _taskbar = {
  9992. "id": str + _formdiv.id,
  9993. "style": {
  9994. "backgroundImage": "url(/img/icon/cocopi.png)"
  9995. },
  9996. "name": "CocoPi",
  9997. "forms": _formdiv,
  9998. "click": function () {
  9999. U.MD.D.I.openApplication(str, obj, info);
  10000. }
  10001. }
  10002. break;
  10003. }
  10004. if (_iframe) {
  10005. if (str == 'doc') {
  10006. _iframe = _formdiv.querySelector('iframe')
  10007. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10008. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10009. })
  10010. if (onloadListener) {
  10011. _iframe.contentDocument.location.reload()
  10012. } else {
  10013. _iframe.contentDocument.location.reload()
  10014. }
  10015. } else if (str == 'mind') {
  10016. _iframe = _formdiv.querySelector('iframe')
  10017. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10018. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10019. })
  10020. if (onloadListener) {
  10021. _iframe.contentDocument.location.reload()
  10022. } else {
  10023. _iframe.contentDocument.location.reload()
  10024. }
  10025. } else if (str == 'whiteboard') {
  10026. _iframe = _formdiv.querySelector('iframe')
  10027. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10028. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10029. })
  10030. // if (onloadListener) {
  10031. // try {
  10032. // _iframe.src += "?cocorobo="+new Date().getTime()
  10033. // _iframe.contentWindow.document.location.reload()
  10034. // } catch (error) {
  10035. // }
  10036. // } else {
  10037. // _iframe.contentDocument.location.reload()
  10038. // }
  10039. } else if (str == 'CocoPi') {
  10040. _iframe = _formdiv.querySelector('iframe')
  10041. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10042. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10043. })
  10044. if (onloadListener) {
  10045. _iframe.contentDocument.location.reload()
  10046. } else {
  10047. _iframe.contentDocument.location.reload()
  10048. }
  10049. } else {
  10050. _iframe.onload = () => { };
  10051. }
  10052. _jie.onclick = async () => {
  10053. let text = ''
  10054. let type = '2'
  10055. if (aTool == 1) {
  10056. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10057. type = '3'
  10058. } else if (aTool == 6) {
  10059. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10060. type = '1'
  10061. } else if (aTool == 3) {
  10062. text = await U.MD.D.I.getEditorContent(_iframe);
  10063. type = '2'
  10064. } else if (aTool == 57) {
  10065. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10066. type = '4'
  10067. }
  10068. _loading.style.display = 'flex'
  10069. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10070. }
  10071. }
  10072. //U.MD.D.I.openClick(str);
  10073. //如果有任务栏信息
  10074. // if (_taskbar) {
  10075. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10076. // }
  10077. }
  10078. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10079. var xmlhttp;
  10080. var Mac, Sn, DeviceId
  10081. if (window.XMLHttpRequest) {
  10082. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10083. xmlhttp = new XMLHttpRequest();
  10084. } else {
  10085. // IE6, IE5 浏览器执行代码
  10086. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10087. }
  10088. xmlhttp.onreadystatechange = function () {
  10089. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10090. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10091. // resolve(res.value[0][0].text);
  10092. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10093. }
  10094. }
  10095. }
  10096. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10097. xmlhttp.send();
  10098. }
  10099. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10100. var xmlhttp;
  10101. var Mac, Sn, DeviceId
  10102. if (window.XMLHttpRequest) {
  10103. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10104. xmlhttp = new XMLHttpRequest();
  10105. } else {
  10106. // IE6, IE5 浏览器执行代码
  10107. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10108. }
  10109. xmlhttp.onreadystatechange = function () {
  10110. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10111. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10112. // resolve(res.value[0][0].text);
  10113. if (type == '2') {
  10114. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10115. } else if (type == '3') {
  10116. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10117. } else if (type == '4') {
  10118. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10119. }
  10120. } else {
  10121. if (type == '2') {
  10122. iframe.contentWindow.editor.minder.importData('json', '')
  10123. } else if (type == '3') {
  10124. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10125. } else if (type == '4') {
  10126. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10127. }
  10128. }
  10129. }
  10130. }
  10131. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10132. xmlhttp.send();
  10133. }
  10134. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10135. var xmlhttp;
  10136. var Mac, Sn, DeviceId
  10137. if (window.XMLHttpRequest) {
  10138. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10139. xmlhttp = new XMLHttpRequest();
  10140. } else {
  10141. // IE6, IE5 浏览器执行代码
  10142. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10143. }
  10144. xmlhttp.onreadystatechange = function () {
  10145. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10146. if (xmlhttp.response) {
  10147. // resolve(res.value[0][0].text);
  10148. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10149. // $(fileInput).val('');
  10150. // });
  10151. span.innerHTML = '上传成功'
  10152. setTimeout(() => {
  10153. loading.style.display = 'none'
  10154. }, 1000);
  10155. }
  10156. }
  10157. }
  10158. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10159. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10160. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10161. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10162. // 设置请求头,表示请求体的编码格式
  10163. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10164. // 设置请求体,使用url-encoded格式的数据
  10165. }
  10166. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10167. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10168. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10169. _userinfo = US.userInfo, //登录用户信息
  10170. _userid = US.userInfo.userid //登录用户id
  10171. let _iframe;
  10172. let _cid = cid,
  10173. _stage = stage,
  10174. _task = task,
  10175. _tool = tool;
  10176. var _jie = $$("div", {
  10177. "style": {
  10178. "position": "absolute",
  10179. "bottom": "50px",
  10180. "right": "50px",
  10181. "zIndex": "9999",
  10182. "backgroundColor": "#2268bc",
  10183. "color": "#fff",
  10184. "padding": "12px 20px",
  10185. "cursor": "pointer",
  10186. "borderRadius": "4px",
  10187. },
  10188. "innerHTML": "提交作业"
  10189. })
  10190. let aTool = ''
  10191. let _loading = document.createElement('div')
  10192. _loading.style = "width:100%;height:100%;background:#00000000;position:absolute;top:0;left:0;z-index:99999999999999;display: none;justify-content: center;align-items: center;"
  10193. // _loading.id = "";
  10194. let _lchild = document.createElement('div')
  10195. let _limg = document.createElement('img')
  10196. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10197. _limg.style = "width: 26px;margin-right: 10px;"
  10198. _lchild.appendChild(_limg)
  10199. let _lspan = document.createElement('span')
  10200. _lspan.innerHTML = "上传中..."
  10201. _lchild.appendChild(_lspan)
  10202. _lchild.style = "color: rgb(255, 255, 255);padding: 15px;background: rgba(0, 0, 0, 0.44);font-size: 18px;display: flex;align-items: center;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);"
  10203. _loading.appendChild(_lchild)
  10204. var _box = $$('div', {
  10205. "style": {
  10206. "position": "relative",
  10207. "width": "100%",
  10208. "height": "100%",
  10209. },
  10210. })
  10211. _box.appendChild(_loading)
  10212. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10213. switch (str) {
  10214. case "CocoPi":
  10215. aTool = 57;
  10216. _iframe = $$("iframe", {
  10217. "allowpaymentrequest": "allowpaymentrequest",
  10218. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10219. "webkitallowfullscreen": "",
  10220. "mozallowfullscreen": "",
  10221. "frameborder": "no",
  10222. "border": "0",
  10223. "scrolling ": "no",
  10224. "style": {
  10225. "cssText": "border:0;width:100%;height:100%"
  10226. },
  10227. "src": "https://pi.cocorobo.cn/"
  10228. })
  10229. _box.appendChild(_iframe);
  10230. _box.appendChild(_jie);
  10231. _formdiv = new U.UF.UI.form(
  10232. "CocoPi",
  10233. _box, {
  10234. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10235. "style": {
  10236. "width": "90%",
  10237. "height": "90%",
  10238. "overflow": 'hidden'
  10239. },
  10240. "onresize": function () { }
  10241. }, {
  10242. closecallback: function () { }
  10243. }, {
  10244. "style": {
  10245. "height": "36px"
  10246. }
  10247. }).form; //创建窗体
  10248. _taskbar = {
  10249. "id": str + _formdiv.id,
  10250. "style": {
  10251. "backgroundImage": "url(/img/icon/cocopi.png)"
  10252. },
  10253. "name": "CocoPi",
  10254. "forms": _formdiv,
  10255. "click": function () {
  10256. U.MD.D.I.openApplication(str, obj, info);
  10257. }
  10258. }
  10259. break;
  10260. }
  10261. if (_iframe) {
  10262. if (str == 'CocoPi') {
  10263. _iframe = _formdiv.querySelector('iframe')
  10264. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10265. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10266. })
  10267. if (onloadListener) {
  10268. _iframe.contentDocument.location.reload()
  10269. } else {
  10270. _iframe.contentDocument.location.reload()
  10271. }
  10272. }
  10273. _jie.onclick = async () => {
  10274. let text = ''
  10275. if (aTool == 57) {
  10276. text = _iframe.contentWindow.getLoadXmlStr()
  10277. }
  10278. _loading.style.display = 'flex'
  10279. console.log(_loading);
  10280. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10281. _loading.style.display = 'none'
  10282. let _div = document.createElement('div')
  10283. _div.style = "width:100%;height:100%;background:#0000008f;position:fixed;top:0;left:0;z-index:99999999999999;display: flex;justify-content: center;align-items: center;"
  10284. let _inner = document.createElement('div')
  10285. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10286. _inner.innerHTML = "上传成功"
  10287. _div.appendChild(_inner)
  10288. _iframe.contentWindow.window.document.body.appendChild(_div)
  10289. _div.onclick = () => {
  10290. _iframe.contentWindow.window.document.body.removeChild(_div)
  10291. }
  10292. setTimeout(() => {
  10293. _iframe.contentWindow.window.document.body.removeChild(_div)
  10294. }, 1000);
  10295. }, [], { "type": "POST", "withCredentials": true });
  10296. }
  10297. }
  10298. }
  10299. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10300. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10301. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10302. _userid = student.userid, //登录用户id
  10303. _username = student.student //用户名字
  10304. let _iframe;
  10305. let _cid = cid,
  10306. _stage = stage,
  10307. _task = task,
  10308. _tool = tool;
  10309. var _jie = $$("div", {
  10310. "style": {
  10311. "position": "absolute",
  10312. "bottom": "50px",
  10313. "right": "50px",
  10314. "zIndex": "9999",
  10315. "backgroundColor": "#2268bc",
  10316. "color": "#fff",
  10317. "padding": "12px 20px",
  10318. "cursor": "pointer",
  10319. "borderRadius": "4px",
  10320. },
  10321. "innerHTML": "提交作业"
  10322. })
  10323. let aTool = ''
  10324. let _loading = document.createElement('div')
  10325. _loading.style = "width:100%;height:100%;background:#00000000;position:absolute;top:0;left:0;z-index:99999999999999;display: none;justify-content: center;align-items: center;"
  10326. // _loading.id = "";
  10327. let _lchild = document.createElement('div')
  10328. let _limg = document.createElement('img')
  10329. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10330. _limg.style = "width: 26px;margin-right: 10px;"
  10331. _lchild.appendChild(_limg)
  10332. let _lspan = document.createElement('span')
  10333. _lspan.innerHTML = "上传中..."
  10334. _lchild.appendChild(_lspan)
  10335. _lchild.style = "color: rgb(255, 255, 255);padding: 15px;background: rgba(0, 0, 0, 0.44);font-size: 18px;display: flex;align-items: center;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);"
  10336. _loading.appendChild(_lchild)
  10337. var _box = $$('div', {
  10338. "style": {
  10339. "position": "relative",
  10340. "width": "100%",
  10341. "height": "100%",
  10342. },
  10343. })
  10344. _box.appendChild(_loading)
  10345. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10346. switch (str) {
  10347. case "CocoPi":
  10348. aTool = 57;
  10349. _iframe = $$("iframe", {
  10350. "allowpaymentrequest": "allowpaymentrequest",
  10351. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10352. "webkitallowfullscreen": "",
  10353. "mozallowfullscreen": "",
  10354. "frameborder": "no",
  10355. "border": "0",
  10356. "scrolling ": "no",
  10357. "style": {
  10358. "cssText": "border:0;width:100%;height:100%"
  10359. },
  10360. "src": "https://pi.cocorobo.cn/"
  10361. })
  10362. _box.appendChild(_iframe);
  10363. _box.appendChild(_jie);
  10364. _formdiv = new U.UF.UI.form(
  10365. "CocoPi-" + _username,
  10366. _box, {
  10367. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10368. "style": {
  10369. "width": "90%",
  10370. "height": "90%",
  10371. "overflow": 'hidden'
  10372. },
  10373. "onresize": function () { }
  10374. }, {
  10375. closecallback: function () { }
  10376. }, {
  10377. "style": {
  10378. "height": "36px"
  10379. }
  10380. }).form; //创建窗体
  10381. _taskbar = {
  10382. "id": str + _formdiv.id,
  10383. "style": {
  10384. "backgroundImage": "url(/img/icon/cocopi.png)"
  10385. },
  10386. "name": "CocoPi",
  10387. "forms": _formdiv,
  10388. "click": function () {
  10389. U.MD.D.I.openApplication(str, obj, info);
  10390. }
  10391. }
  10392. break;
  10393. }
  10394. if (_iframe) {
  10395. if (str == 'CocoPi') {
  10396. _iframe = _formdiv.querySelector('iframe')
  10397. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10398. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10399. })
  10400. if (onloadListener) {
  10401. _iframe.contentDocument.location.reload()
  10402. } else {
  10403. _iframe.contentDocument.location.reload()
  10404. }
  10405. }
  10406. _jie.onclick = async () => {
  10407. let text = ''
  10408. if (aTool == 57) {
  10409. text = _iframe.contentWindow.getLoadXmlStr()
  10410. }
  10411. _loading.style.display = 'flex'
  10412. console.log(_loading);
  10413. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10414. _loading.style.display = 'none'
  10415. let _div = document.createElement('div')
  10416. _div.style = "width:100%;height:100%;background:#0000008f;position:fixed;top:0;left:0;z-index:99999999999999;display: flex;justify-content: center;align-items: center;"
  10417. let _inner = document.createElement('div')
  10418. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10419. _inner.innerHTML = "上传成功"
  10420. _div.appendChild(_inner)
  10421. _iframe.contentWindow.window.document.body.appendChild(_div)
  10422. _div.onclick = () => {
  10423. _iframe.contentWindow.window.document.body.removeChild(_div)
  10424. }
  10425. setTimeout(() => {
  10426. _iframe.contentWindow.window.document.body.removeChild(_div)
  10427. }, 1000);
  10428. }, [], { "type": "POST", "withCredentials": true });
  10429. }
  10430. }
  10431. }
  10432. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10433. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10434. if (res.value[0].length > 0) {
  10435. if (atool == 57) {
  10436. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10437. }
  10438. } else {
  10439. if (atool == 57) {
  10440. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10441. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10442. }
  10443. }
  10444. }, [], { "type": "POST", "withCredentials": true });
  10445. }