DeskTop.js 733 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  106. ];
  107. U.MD.D.I.studentDeskIcon = [
  108. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  109. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  110. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  111. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  112. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  113. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  114. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  115. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  116. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  117. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  118. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  119. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  120. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  121. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  122. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  123. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  124. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  125. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  126. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  127. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  128. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  129. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  130. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  131. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  132. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  133. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  134. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  135. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  136. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  137. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  138. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  139. ];
  140. U.MD.D.I.studentDeskIcon2 = [
  141. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  142. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  143. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  144. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  145. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  146. ]
  147. U.MD.D.I.studentDeskIcon3 = [
  148. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  149. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  150. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  151. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  152. ]
  153. U.MD.D.I.schoolDeskIcon = [
  154. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  155. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  156. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  157. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  158. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  159. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  160. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  161. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  162. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  163. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  164. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  165. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  166. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  167. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  168. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  169. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  170. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  171. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  172. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  173. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  174. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  175. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  176. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  177. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  178. ];
  179. U.MD.D.I.orgDeskIcon = [
  180. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  181. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  182. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  183. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  184. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  185. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  187. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  188. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  189. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  190. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  191. ];
  192. U.MD.D.I.orgStemDeskIcon = [
  193. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  194. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  195. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  196. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  197. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  198. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  199. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  200. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  201. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  202. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  203. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  204. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  205. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  206. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  207. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  209. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  210. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  211. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  212. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  213. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  214. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  215. ];
  216. U.MD.D.I.szulsDeskIcon = [
  217. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  218. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  219. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  220. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  221. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  222. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  223. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  224. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  225. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  226. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  227. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  228. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  229. ];
  230. U.MD.D.I.hanDeskIcon = [
  231. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  232. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  233. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  234. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  235. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  236. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  237. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  238. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  239. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  240. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  241. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  242. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  243. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  244. ];
  245. U.MD.D.I.GMteacherDeskIcon = [
  246. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  247. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  248. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  249. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  250. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  251. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  252. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  253. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  254. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  255. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  256. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  257. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  258. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  259. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  260. ];
  261. U.MD.D.I.GMstudentDeskIcon = [
  262. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  263. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  264. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  265. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  266. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  267. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  268. ];
  269. //松山湖
  270. U.MD.D.I.SONGteacherDeskIcon = [
  271. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  272. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  273. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  274. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  275. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  276. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  277. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  278. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  279. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  280. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  281. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  282. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  283. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  284. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  285. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  286. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  287. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  288. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  289. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  290. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  291. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  292. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  293. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  294. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  295. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  296. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  297. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  298. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  299. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  300. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  301. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  302. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  303. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  304. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  305. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  306. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  307. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  308. ];
  309. U.MD.D.I.tcStudentDeskIcon = [
  310. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  311. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  312. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  313. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  314. ];
  315. U.MD.D.I.tcTeacherDeskIcon = [
  316. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  317. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  318. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  319. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  320. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  321. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  322. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  323. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  324. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  325. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  326. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  327. ];
  328. U.MD.D.I.tcOrganizerDeskIcon = [
  329. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  330. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  331. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  332. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  333. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  334. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  335. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  336. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  337. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  338. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  339. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  340. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  341. ];
  342. U.MD.D.I.szscStudentDeskIcon = [
  343. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  344. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  345. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  346. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  347. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  348. ];
  349. U.MD.D.I.szscTeacherDeskIcon = [
  350. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  351. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  352. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  353. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  354. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  355. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  356. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  357. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  358. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  359. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  360. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  361. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  362. ];
  363. U.MD.D.I.szscOrganizerDeskIcon = [
  364. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  365. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  366. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  367. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  368. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  369. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  370. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  371. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  372. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  373. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  374. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  375. ];
  376. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  377. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  378. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  379. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  380. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  381. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  382. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  383. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  384. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  385. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  386. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  387. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  388. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  389. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  390. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  391. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  392. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  393. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  394. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  395. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  396. ];
  397. U.MD.D.I.wankeAdminDeskIcon = [
  398. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  399. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  400. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  401. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  402. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  403. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  404. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  405. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  406. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  407. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  408. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  409. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  410. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  411. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  412. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  413. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  414. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  415. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  416. ];
  417. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  418. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  419. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  420. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  421. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  422. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  423. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  424. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  425. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  426. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  427. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  428. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  429. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  430. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  431. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  432. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  433. ];
  434. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  435. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  436. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  437. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  438. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  439. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  440. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  441. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  442. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  443. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  444. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  445. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  446. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  447. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  448. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  449. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  450. ];
  451. //明德教师桌面图标的全局变量
  452. U.MD.D.I.MingdeTeacherDeskIcon = [
  453. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  454. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  455. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  456. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  457. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  458. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  459. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  460. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  461. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  462. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  463. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  464. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  465. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  466. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  467. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  468. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  469. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  470. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  471. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  472. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  473. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  474. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  475. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  476. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  477. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  478. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  479. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  480. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  481. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  482. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  483. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  484. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  485. ];
  486. //97c4ee8b-d010-4042-986d-e9d3c217264f
  487. //教师桌面图标的全局变量
  488. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  489. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  490. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  491. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  492. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  493. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  494. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  495. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  496. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  497. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  498. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  499. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  500. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  501. ];
  502. //福田
  503. U.MD.D.I.futianTeacherDeskIcon = [
  504. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  505. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  506. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  507. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  508. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  509. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  510. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  511. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  512. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  513. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  514. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  515. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  516. ];
  517. //福田
  518. U.MD.D.I.futianAdminDeskIcon = [
  519. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  520. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  521. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  522. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  523. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  524. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  525. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  526. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  527. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  528. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  529. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  530. ];
  531. //lotech
  532. U.MD.D.I.lotechTeacherDeskIcon = [
  533. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  534. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  535. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  536. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  537. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  538. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  539. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  540. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  541. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  542. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  543. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  544. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  545. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  546. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  547. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  548. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  549. ];
  550. //龙华中心小学教师桌面图标的全局变量
  551. U.MD.D.I.longhuateacherDeskIcon = [
  552. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  553. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  554. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  555. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  556. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  557. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  558. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  559. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  560. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  561. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  562. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  563. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  564. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  565. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  566. ];
  567. //教科院实小教师桌面图标的全局变量
  568. U.MD.D.I.siesteacherDeskIcon = [
  569. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  570. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  571. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  572. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  573. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  574. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  575. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  576. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  577. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  578. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  579. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  580. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  581. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  582. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  583. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  584. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  585. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  587. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  588. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  589. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  590. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  591. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  592. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  593. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  594. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  595. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  596. ];
  597. //教科院实小教师桌面图标的全局变量
  598. U.MD.D.I.siesStudentDeskIcon = [
  599. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  600. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  601. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  602. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  603. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  604. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  605. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  606. ];
  607. //中山小学教师桌面图标的全局变量
  608. U.MD.D.I.guzmsteacherDeskIcon = [
  609. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  610. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  611. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  612. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  613. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  614. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  615. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  616. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  617. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  618. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  619. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  620. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  621. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  622. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  623. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  624. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  625. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  626. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  627. ];
  628. //中山小学学生桌面图标的全局变量
  629. U.MD.D.I.guzmsStudentDeskIcon = [
  630. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  631. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  632. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  633. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  634. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  635. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  636. ];
  637. //福田
  638. U.MD.D.I.gdjgTeacherDeskIcon = [
  639. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  640. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  641. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  642. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  643. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  644. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  645. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  646. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  647. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  648. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  649. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  650. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  651. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  652. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  653. ];
  654. //gdjg
  655. U.MD.D.I.gdjgAdminDeskIcon = [
  656. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  657. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  658. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  659. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  660. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  661. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  662. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  663. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  664. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  665. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  666. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  667. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  668. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  669. ];
  670. //hk
  671. U.MD.D.I.hkteacherDeskIcon = [
  672. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  673. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  674. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  675. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  676. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  677. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  678. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  679. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  680. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  681. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  682. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  683. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  684. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  685. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  686. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  687. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  688. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  689. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  690. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  691. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  692. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  693. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  694. ];
  695. //ricoh
  696. U.MD.D.I.ricohteacherDeskIcon = [
  697. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  698. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  699. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  700. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  701. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  702. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  703. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  704. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  705. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  706. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  707. ];
  708. //hk
  709. U.MD.D.I.hkStudentDeskIcon = [
  710. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  711. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  712. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  713. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  714. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  715. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  716. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  717. ];
  718. //hk
  719. U.MD.D.I.tycyteacherDeskIcon = [
  720. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  721. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  722. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  723. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  724. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  725. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  726. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  727. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  728. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  729. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  730. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  731. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  732. ];
  733. //hk
  734. U.MD.D.I.tycyStudentDeskIcon = [
  735. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  736. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  737. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  738. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  739. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  740. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  741. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  742. ];
  743. //hk
  744. U.MD.D.I.ckcpsteacherDeskIcon = [
  745. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  746. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  747. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  748. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  749. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  750. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  751. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  752. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  753. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  754. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  755. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  756. ];
  757. //hk
  758. U.MD.D.I.ckcpsStudentDeskIcon = [
  759. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  760. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  761. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  762. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  763. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  764. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  765. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  766. ];
  767. //hk
  768. U.MD.D.I.hkaceteacherDeskIcon = [
  769. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  770. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  771. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  772. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  773. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  774. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  775. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  776. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  777. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  778. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  779. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  780. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  781. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  782. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  783. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  784. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  785. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  786. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  787. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  788. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  789. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  790. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  791. ];
  792. //hk
  793. U.MD.D.I.hkaceStudentDeskIcon = [
  794. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  795. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  796. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  797. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  798. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  799. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  800. ];
  801. //香海正覺蓮社佛教正覺中學
  802. U.MD.D.I.hkZJLSteacherDeskIcon = [
  803. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  804. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  805. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  806. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  807. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  808. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  809. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  810. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  811. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  812. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  813. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  814. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  815. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  816. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  817. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  818. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  819. ];
  820. //香海正覺蓮社佛教正覺中學
  821. U.MD.D.I.hkZJLSStudentDeskIcon = [
  822. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  823. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  824. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  825. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  826. ];
  827. //云海
  828. U.MD.D.I.yunhaiTeacherDeskIcon = [
  829. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  830. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  831. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  832. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  833. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  834. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.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": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  842. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  843. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  844. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  845. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  846. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  847. ];
  848. //福田
  849. U.MD.D.I.heyuanTeacherDeskIcon = [
  850. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  851. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  852. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  853. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  854. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  855. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  856. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  857. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  858. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  859. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  860. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  861. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  862. ];
  863. //福田
  864. U.MD.D.I.heyuanAdminDeskIcon = [
  865. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  866. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  867. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  868. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  869. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  870. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  871. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  872. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  873. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  874. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  875. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  876. ];
  877. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  878. U.MD.D.I.szherTeacherDeskIcon = [
  879. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  880. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  881. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  882. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  883. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  884. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  885. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  886. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  887. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  888. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  889. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  890. ];
  891. //dsei
  892. U.MD.D.I.dseiTeacherDeskIcon = [
  893. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  894. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  895. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  896. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  897. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  898. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  899. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  900. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  901. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  902. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  903. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  904. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  905. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  906. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  907. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  908. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  909. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  910. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  911. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  912. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  913. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  914. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  915. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  916. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  917. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  918. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  919. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  920. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  921. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  922. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  923. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  924. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  925. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  926. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  927. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  928. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  929. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  930. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  931. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  932. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  933. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  934. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  935. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  936. ];
  937. //dsei
  938. U.MD.D.I.dseiAdminDeskIcon = [
  939. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  940. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  941. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  942. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  943. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  944. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  945. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  946. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  947. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  948. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  949. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  950. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  951. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  952. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  953. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  954. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  955. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  956. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  957. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  958. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  959. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  960. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  961. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  962. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  963. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  964. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  965. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  966. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  967. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  968. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  969. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  970. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  971. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  972. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  973. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  974. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  975. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  976. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  977. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  978. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  979. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  980. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  981. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  982. ];
  983. //dsei
  984. U.MD.D.I.dseiStudentDeskIcon = [
  985. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  986. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  987. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  988. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  989. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  990. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  991. ];
  992. //未来教育基地
  993. U.MD.D.I.szjkyTeacherDeskIcon = [
  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": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1001. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1002. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1003. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1004. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1005. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1006. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1007. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1008. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1009. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1010. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1011. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1012. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1013. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1014. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1015. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1016. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1017. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1018. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1019. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1020. ];
  1021. //未来教育基地
  1022. U.MD.D.I.szjkyAdminDeskIcon = [
  1023. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1024. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1025. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1026. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1027. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1028. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1029. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1030. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1031. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1032. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1033. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1034. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1035. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1036. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1037. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1038. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1039. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1040. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1041. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1042. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1043. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1044. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1045. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1046. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1047. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1048. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1049. ];
  1050. //未来教育基地
  1051. U.MD.D.I.szjkyStudentDeskIcon = [
  1052. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1053. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1054. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1055. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1056. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1057. ];
  1058. //成华教育局
  1059. U.MD.D.I.chjyjTeacherDeskIcon = [
  1060. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1061. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1062. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1063. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1064. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1065. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1066. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1067. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1068. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1069. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1070. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1071. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1072. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1073. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1074. ];
  1075. //成华教育局chjyj
  1076. U.MD.D.I.chjyjAdminDeskIcon = [
  1077. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1078. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1079. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1080. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1081. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1082. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1083. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1084. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1085. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1086. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1087. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1088. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1089. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1090. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1091. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1092. ];
  1093. //成华教育局chjyj
  1094. U.MD.D.I.chjyjStudentDeskIcon = [
  1095. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1096. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1097. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1098. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1099. ];
  1100. //tpc
  1101. U.MD.D.I.tpcStudentDeskIcon = [
  1102. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1103. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1104. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1105. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1106. ];
  1107. //tpc
  1108. U.MD.D.I.tpcTeacherDeskIcon = [
  1109. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1110. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1111. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1112. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1113. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1114. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1115. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1116. ];
  1117. //tpc
  1118. U.MD.D.I.tpcAdminDeskIcon = [
  1119. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1120. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1121. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1122. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1123. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1124. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1125. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1126. ];
  1127. //THU-IOE
  1128. U.MD.D.I.thuioeTeacherDeskIcon = [
  1129. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1130. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1131. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1132. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1133. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1134. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1135. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1136. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1137. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1138. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1139. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1140. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1141. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1142. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1143. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1144. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1145. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1146. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1147. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1148. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1149. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1150. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1151. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1152. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1153. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1154. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1155. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1156. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1157. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1158. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1159. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1160. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1161. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1162. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1163. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1164. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1165. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1166. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1167. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1168. ];
  1169. //THU-IOE
  1170. U.MD.D.I.thuioeStudentDeskIcon = [
  1171. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1172. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1173. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1174. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1175. ];
  1176. //jccssyl
  1177. U.MD.D.I.jccssylTeacherDeskIcon = [
  1178. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1179. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1180. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1182. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1183. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1184. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1185. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1186. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1187. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1188. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1189. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1190. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1191. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1192. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1193. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1194. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1195. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1196. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1197. ];
  1198. //jccssyl
  1199. U.MD.D.I.jccssylStudentDeskIcon = [
  1200. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1201. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1202. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1203. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1204. ];
  1205. //cale
  1206. U.MD.D.I.caleTeacherDeskIcon = [
  1207. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1208. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1209. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1210. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1211. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1212. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1213. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1214. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1215. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1216. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1217. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1218. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1219. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1220. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1221. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1222. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1223. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1224. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1225. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1226. ];
  1227. //cale
  1228. U.MD.D.I.caleStudentDeskIcon = [
  1229. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1230. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1231. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1232. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1233. ];
  1234. //lqwmsgzs
  1235. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1236. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1237. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1238. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1239. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1240. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1241. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1242. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1243. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1244. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1245. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1246. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1247. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1248. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1249. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1250. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1251. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1252. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1253. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1254. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1255. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1256. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1257. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1258. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1259. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1260. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1261. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1262. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1263. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1264. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1265. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1266. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1267. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1268. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1269. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1270. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1271. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1272. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1273. ];
  1274. //lqwmsgzs
  1275. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1276. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1277. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1278. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1279. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1280. ];
  1281. //盐田区幼儿园
  1282. U.MD.D.I.ytyTeacherDeskIcon = [
  1283. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1284. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1285. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1286. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1287. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1288. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1289. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1290. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1291. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1292. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1293. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1294. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1295. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1296. ];
  1297. //盐田区幼儿园
  1298. U.MD.D.I.ytyStudentDeskIcon = [
  1299. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1300. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1301. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1302. ];
  1303. //scnuai
  1304. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1305. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1306. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1307. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1308. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1309. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1310. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1311. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1312. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1313. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1314. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1315. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1316. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1317. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1318. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1319. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1320. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1321. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1322. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1323. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1324. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1325. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1326. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1327. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1328. ];
  1329. //scnuai
  1330. U.MD.D.I.scnuaiAdminDeskIcon = [
  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": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1334. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1335. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1336. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1337. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1338. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1339. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1340. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1341. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1342. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1343. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1344. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1345. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1346. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1347. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1348. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1349. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1350. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1351. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1352. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1353. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1354. ];
  1355. //scnuai
  1356. U.MD.D.I.scnuaiStudentDeskIcon = [
  1357. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1358. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1359. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1360. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1361. ];
  1362. //cocobiz
  1363. U.MD.D.I.cocobizteacherDeskIcon = [
  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": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1371. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1372. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1373. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1374. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1375. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1376. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1377. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1378. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1379. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1380. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1381. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1382. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1383. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1384. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1385. ];
  1386. //cocobiz
  1387. U.MD.D.I.cocobizStudentDeskIcon = [
  1388. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1389. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1390. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1391. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1392. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1393. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1394. ];
  1395. //xxzjky
  1396. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1397. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1398. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1399. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1400. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1401. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1402. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1403. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1404. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1405. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1406. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1407. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1408. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1409. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1410. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1411. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1412. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1413. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1414. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1415. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1416. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1417. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1418. ];
  1419. //xxzjky
  1420. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1421. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  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": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1425. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1426. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1427. ];
  1428. //nsfx
  1429. U.MD.D.I.nsfxTeacherDeskIcon = [
  1430. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1431. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1432. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1433. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1434. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1435. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1436. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1437. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1438. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1439. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1440. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1441. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1442. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1443. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1444. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1445. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1446. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1447. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1448. ];
  1449. //nsfx
  1450. U.MD.D.I.nsfxStudentDeskIcon = [
  1451. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1452. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1453. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1454. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1455. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1456. ];
  1457. //stia
  1458. U.MD.D.I.stiaTeacherDeskIcon = [
  1459. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1460. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1461. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1462. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1463. // { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1464. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1465. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1466. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1467. // { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1468. // { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1469. // { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1470. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1471. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1472. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1473. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1474. ];
  1475. //stia
  1476. U.MD.D.I.stiaStudentDeskIcon = [
  1477. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1478. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1479. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1480. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1481. ];
  1482. //szdjg
  1483. U.MD.D.I.szdjgTeacherDeskIcon = [
  1484. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1485. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1486. ];
  1487. //szdjg
  1488. U.MD.D.I.szdjgStudentDeskIcon = [
  1489. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1490. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1491. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1492. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1493. ];
  1494. //010607
  1495. U.MD.D.I.x010607TeacherDeskIcon = [
  1496. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1497. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1498. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1499. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1500. { "Name": "项目管理", "Url": "studentCourseS", "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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1503. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1504. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1505. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1506. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1507. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1508. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1509. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1510. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1511. ];
  1512. //010607
  1513. U.MD.D.I.x010607StudentDeskIcon = [
  1514. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1515. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1516. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1517. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1518. ];
  1519. //010608
  1520. U.MD.D.I.x010608TeacherDeskIcon = [
  1521. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1522. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1523. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1524. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1525. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1526. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1527. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1528. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1529. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1530. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1531. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1532. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1533. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1534. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1535. ];
  1536. //010608
  1537. U.MD.D.I.x010608StudentDeskIcon = [
  1538. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1539. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1540. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1541. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1542. ];
  1543. //xhly
  1544. U.MD.D.I.xhlyTeacherDeskIcon = [
  1545. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1546. ];
  1547. //010608
  1548. U.MD.D.I.xhlyStudentDeskIcon = [
  1549. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1550. ];
  1551. //北师大
  1552. U.MD.D.I.BSDNSteacherDeskIcon = [
  1553. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1554. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1555. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1556. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1557. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1558. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1559. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1560. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1561. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1562. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1563. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1564. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1565. ];
  1566. //北师大
  1567. U.MD.D.I.BSDNSstudentDeskIcon = [
  1568. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1569. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1570. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1571. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1572. ];
  1573. //CUHK_EDU
  1574. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1575. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1576. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1577. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1578. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1579. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1580. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1581. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1582. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1583. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1584. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1585. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1586. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1587. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1588. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1589. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1590. ];
  1591. //CUHK_EDU
  1592. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1593. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1594. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1595. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1596. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1597. ];
  1598. //010503
  1599. U.MD.D.I.x010503TeacherDeskIcon = [
  1600. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1601. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1602. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1603. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1604. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1605. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1606. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1607. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1608. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1609. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1610. ];
  1611. //010503
  1612. U.MD.D.I.x010503StudentDeskIcon = [
  1613. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1614. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1615. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1616. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1617. ];
  1618. //SPROUT Lab
  1619. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1620. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1621. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1622. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1623. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1624. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1625. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1626. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1627. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1628. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1629. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1630. ];
  1631. //SPROUT Lab
  1632. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1633. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1634. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1635. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1636. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1637. ];
  1638. //010204
  1639. U.MD.D.I.x010204TeacherDeskIcon = [
  1640. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1641. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1642. ];
  1643. //010204
  1644. U.MD.D.I.x010204StudentDeskIcon = [
  1645. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1646. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1647. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1648. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1649. ];
  1650. //trail
  1651. U.MD.D.I.trailTeacherDeskIcon = [
  1652. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1653. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1654. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1655. ];
  1656. //trail
  1657. U.MD.D.I.trailStudentDeskIcon = [
  1658. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1659. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1660. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1661. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1662. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1663. ];
  1664. //trial
  1665. U.MD.D.I.trialTeacherDeskIcon = [
  1666. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1667. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1668. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1669. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1670. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1671. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1672. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  1673. ];
  1674. //trial
  1675. U.MD.D.I.trialStudentDeskIcon = [
  1676. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1677. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1678. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1679. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1680. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1681. ];
  1682. //010504
  1683. U.MD.D.I.x010504TeacherDeskIcon = [
  1684. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1685. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1686. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1687. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1688. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1689. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1690. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1691. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1692. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1693. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1694. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1695. ];
  1696. //010504
  1697. U.MD.D.I.x010504StudentDeskIcon = [
  1698. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1699. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1700. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1701. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1702. ];
  1703. //010505
  1704. U.MD.D.I.x010505TeacherDeskIcon = [
  1705. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1706. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1707. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1708. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1709. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1710. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1711. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1712. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1713. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1714. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1715. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1716. ];
  1717. //010505
  1718. U.MD.D.I.x010505StudentDeskIcon = [
  1719. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1720. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1721. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1722. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1723. ];
  1724. //SCNUET
  1725. U.MD.D.I.SCNUETTeacherDeskIcon = [
  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": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1729. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1730. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1731. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1732. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1733. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1734. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1735. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1736. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1737. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1738. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1739. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1740. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1741. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1742. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1743. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1744. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1745. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1746. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1747. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1748. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1749. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1750. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1751. ];
  1752. //SCNUET
  1753. U.MD.D.I.SCNUETAdminDeskIcon = [
  1754. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1755. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1756. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1757. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1758. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1759. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1760. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1761. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1762. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1763. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1764. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1765. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1766. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1767. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1768. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1769. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1770. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1771. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1772. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1773. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1774. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1775. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1776. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1777. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1778. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1779. ];
  1780. //SCNUET
  1781. U.MD.D.I.SCNUETStudentDeskIcon = [
  1782. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1783. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1784. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1785. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1786. ];
  1787. //x020201
  1788. U.MD.D.I.x020201TeacherDeskIcon = [
  1789. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1790. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1791. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1792. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1793. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1794. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1795. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1796. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1797. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1798. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1799. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1800. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1801. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1802. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1803. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1804. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1805. ];
  1806. //x020201
  1807. U.MD.D.I.x020201AdminDeskIcon = [
  1808. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1809. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1810. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1811. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1812. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1813. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1814. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1815. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1816. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1817. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1818. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1819. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1820. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1821. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1822. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1823. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1824. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1825. ];
  1826. //020201
  1827. U.MD.D.I.x020201StudentDeskIcon = [
  1828. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1829. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1830. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1831. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1832. ];
  1833. //010611
  1834. U.MD.D.I.x010611TeacherDeskIcon = [
  1835. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1836. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1837. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1838. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1839. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1840. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1841. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1842. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1843. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1844. ];
  1845. //010611
  1846. U.MD.D.I.x010611StudentDeskIcon = [
  1847. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1848. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1849. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1850. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1851. ];
  1852. //010612
  1853. U.MD.D.I.x010612TeacherDeskIcon = [
  1854. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1855. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1856. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1857. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1858. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1859. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1860. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1861. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1862. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1863. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1864. ];
  1865. //010612
  1866. U.MD.D.I.x010612StudentDeskIcon = [
  1867. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1868. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1869. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1870. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1871. ];
  1872. //tianyuan
  1873. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1874. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1875. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1876. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1877. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1878. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1879. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1880. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1881. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1882. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1883. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1884. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1885. ];
  1886. //010611
  1887. U.MD.D.I.tianyuanStudentDeskIcon = [
  1888. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1889. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1890. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1891. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1892. ];
  1893. //320101
  1894. U.MD.D.I.x320101TeacherDeskIcon = [
  1895. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1896. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1897. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1898. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1899. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1900. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1901. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1902. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1903. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1904. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1905. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1906. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1907. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1908. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1909. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1910. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1911. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1912. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1913. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1914. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1915. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1916. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1917. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1918. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1919. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1920. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1921. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1922. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1923. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1924. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1925. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1926. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1927. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1928. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1929. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1930. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1931. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1932. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1933. ];
  1934. //320101
  1935. U.MD.D.I.x320101StudentDeskIcon = [
  1936. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1937. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1938. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1939. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1940. ];
  1941. //szsy
  1942. U.MD.D.I.szsyTeacherDeskIcon = [
  1943. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1944. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1945. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1946. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1947. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1948. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1949. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1950. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1951. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1952. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1953. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1954. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1955. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1956. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1957. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1958. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1959. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1960. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1961. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1962. ];
  1963. //szsy
  1964. U.MD.D.I.szsyStudentDeskIcon = [
  1965. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1966. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1967. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1968. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1969. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1970. ];
  1971. //010404
  1972. U.MD.D.I.x010404TeacherDeskIcon = [
  1973. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1974. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1975. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1976. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1977. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1978. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1979. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1980. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1981. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1982. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1983. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1984. ];
  1985. //010404
  1986. U.MD.D.I.x010404StudentDeskIcon = [
  1987. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1988. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1989. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1990. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1991. ];
  1992. //cocorobo demo
  1993. U.MD.D.I.demoCocoTeacherDeskIcon = [
  1994. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1995. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1996. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1997. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1998. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1999. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2000. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  2001. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2002. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2003. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2004. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2005. ];
  2006. //cocorobo demo
  2007. U.MD.D.I.demoCocoStudentDeskIcon = [
  2008. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2009. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2010. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2011. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2012. ];
  2013. //MOAI
  2014. U.MD.D.I.MOAITeacherDeskIcon = [
  2015. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  2016. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2017. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2018. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2019. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2020. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  2021. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2022. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2023. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2024. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2025. ];
  2026. //MOAI 学生端
  2027. U.MD.D.I.MOAIStudentDeskIcon = [
  2028. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2029. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2030. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2031. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2032. ];
  2033. //PREPAI
  2034. U.MD.D.I.PREPAITeacherDeskIcon = [
  2035. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2036. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2037. ];
  2038. //PREPAI 学生端
  2039. U.MD.D.I.PREPAIStudentDeskIcon = [
  2040. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2041. ];
  2042. //#region 桌面初始化a
  2043. /**
  2044. * 初始化桌面的起始函数
  2045. *
  2046. */
  2047. U.MD.D.I.init = function () {
  2048. if ($("#U_MD_D_K")[0]) {
  2049. //初始化桌面图标
  2050. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  2051. // var clickUrl = ':12588/requestIp.php';
  2052. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  2053. // U.MD.D.I.Ip = data;
  2054. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  2055. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  2056. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  2057. // })
  2058. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  2059. // })
  2060. }
  2061. }
  2062. /**
  2063. * 模式切换
  2064. *
  2065. */
  2066. U.MD.D.I.ModeCheck = function (type) {
  2067. if (US.Config.type == type) {
  2068. return
  2069. }
  2070. US.Config.type = type
  2071. $('.U_PBL_Check .active')[0].className = ''
  2072. if (type == 1) {
  2073. $('.U_PBL_Check div')[0].className = 'active'
  2074. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  2075. } else {
  2076. $('.U_PBL_Check div')[1].className = 'active'
  2077. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  2078. }
  2079. //初始化桌面图标
  2080. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  2081. if (type == 2) {
  2082. U.MD.D.I.openApplication("project")
  2083. }
  2084. }
  2085. /**
  2086. * 隐藏任务栏
  2087. *
  2088. * @param {element} 桌面元素
  2089. */
  2090. U.MD.D.I.hiddenTaskbar = function (el) {
  2091. //任务栏位置变小
  2092. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  2093. //桌面的位置变大
  2094. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2095. }
  2096. /**
  2097. * 隐藏任务栏
  2098. *
  2099. * @param {element} 桌面元素
  2100. */
  2101. U.MD.D.I.hiddenTaskbarout = function (el) {
  2102. //任务栏位置变小
  2103. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  2104. //任务栏位置变化
  2105. U.selectEl(el).css({ "bottom": "-60px" });
  2106. //桌面的位置变大
  2107. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2108. }
  2109. }
  2110. /**
  2111. * 初始化打印桌面图标
  2112. *
  2113. * @param {element} 桌面元素
  2114. */
  2115. U.MD.D.I.initDesktopIcons = function (el, type) {
  2116. var i, //用于循环
  2117. _content, //桌面图标元素
  2118. _iconcontent, //桌面图标元素
  2119. _frag = $$("frag"), //定义一个碎片元素
  2120. _type = US.userInfo.type,
  2121. _org = US.userInfo.org,
  2122. _oid = US.userInfo.organizeid,
  2123. _role = US.userInfo.role,
  2124. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  2125. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  2126. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  2127. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  2128. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  2129. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  2130. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  2131. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  2132. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  2133. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  2134. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  2135. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  2136. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  2137. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  2138. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  2139. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  2140. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  2141. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  2142. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  2143. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  2144. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  2145. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  2146. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  2147. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  2148. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  2149. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  2150. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  2151. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  2152. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  2153. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  2154. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  2155. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  2156. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  2157. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  2158. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  2159. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  2160. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  2161. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  2162. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  2163. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  2164. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  2165. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  2166. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  2167. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  2168. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  2169. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  2170. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  2171. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  2172. _ricohTeacherDeskIconInfo = U.MD.D.I.ricohteacherDeskIcon, //hk
  2173. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  2174. _tycyTeacherDeskIconInfo = U.MD.D.I.tycyteacherDeskIcon, //hk
  2175. _tycyStudentDeskIconInfo = U.MD.D.I.tycyStudentDeskIcon, //hk
  2176. _ckcpsTeacherDeskIconInfo = U.MD.D.I.ckcpsteacherDeskIcon, //hk
  2177. _ckcpsStudentDeskIconInfo = U.MD.D.I.ckcpsStudentDeskIcon, //hk
  2178. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  2179. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  2180. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  2181. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  2182. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  2183. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  2184. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  2185. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  2186. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  2187. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  2188. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  2189. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  2190. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  2191. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  2192. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  2193. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  2194. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  2195. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  2196. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  2197. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  2198. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  2199. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  2200. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  2201. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  2202. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  2203. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  2204. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  2205. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2206. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2207. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2208. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2209. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2210. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2211. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2212. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2213. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2214. _x010612StudentDeskIconInfo = U.MD.D.I.x010612StudentDeskIcon, //010611
  2215. _x010612TeacherDeskIconInfo = U.MD.D.I.x010612TeacherDeskIcon, //010611
  2216. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2217. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2218. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2219. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2220. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2221. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2222. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2223. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2224. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2225. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2226. _x010505StudentDeskIconInfo = U.MD.D.I.x010505StudentDeskIcon, //010505
  2227. _x010505TeacherDeskIconInfo = U.MD.D.I.x010505TeacherDeskIcon, //010505
  2228. _x010404StudentDeskIconInfo = U.MD.D.I.x010404StudentDeskIcon, //010404
  2229. _x010404TeacherDeskIconInfo = U.MD.D.I.x010404TeacherDeskIcon, //010404
  2230. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2231. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2232. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2233. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2234. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2235. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2236. _trialStudentDeskIconInfo = U.MD.D.I.trialStudentDeskIcon, //trial
  2237. _trialTeacherDeskIconInfo = U.MD.D.I.trialTeacherDeskIcon, //trial
  2238. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2239. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2240. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2241. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2242. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2243. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2244. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2245. _demoCocoTeacherDeskIconInfo = U.MD.D.I.demoCocoTeacherDeskIcon, //demoCoco
  2246. _demoCocoStudentDeskIconInfo = U.MD.D.I.demoCocoStudentDeskIcon, //demoCoco
  2247. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2248. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2249. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2250. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2251. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2252. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2253. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon, //szsc
  2254. _PREPAITeacherDeskIcon = U.MD.D.I.PREPAITeacherDeskIcon, //szsc
  2255. _PREPAIStudentDeskIcon = U.MD.D.I.PREPAIStudentDeskIcon, //szsc
  2256. _MOAITeacherDeskIcon = U.MD.D.I.MOAITeacherDeskIcon, //moai
  2257. _MOAIStudentDeskIcon = U.MD.D.I.MOAIStudentDeskIcon; //moai
  2258. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263','9b46a3c9-7657-11ef-9b30-005056b86db5','857af1c7-c8ee-4b04-85b5-fd182903adb7','876030db-7a49-11ef-9b30-005056b86db5','b97fc213-86a9-11ef-9b30-005056b86db5', 'c636f63e-86f4-11ef-9b30-005056b86db5','6c16df93-8849-11ef-9b30-005056b86db5','72c16ee0-89fe-11ef-9b30-005056b86db5','369222a8-cddd-11ed-9546-005056b86db5','3fc7840d-a1c4-11ef-9b30-005056b86db5','2c5d4971-ed9e-11ef-b508-005056924926','bc239322-ffb2-11ef-b508-005056924926','91796dfb-8791-11ef-9b30-005056b86db5','86fa8cd7-00c2-11f0-b508-005056924926','8406b214-085f-11f0-b508-005056924926','65ad80f0-16bb-11f0-a66a-005056924926','9a8076a2-469a-11f0-b60f-005056924926'];
  2259. var _orgA = ["7ada499f-4ec7-11ed-8c78-005056b86db5", "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d", "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b", "150e3120-9195-11ed-b13d-005056b86db5", "ee40e8e3-e36c-4872-8105-cf395481012s", '97c4ee8b-d010-4042-986d-e9d3c217264f', 'ec0af97a-7c10-4259-a7eb-db9cc8174cdc', '4df1b570-f6ac-48fc-8d50-d0b157dae776', 'e632b86c-f89d-11ed-91d8-005056b86db5', 'b50cf65a-001c-11ee-91d8-005056b86db5', '578de748-05d2-11ee-91d8-005056b86db5', '54f09f1e-09f0-11ee-91d8-005056b86db5', '7b016f69-0f4f-11ee-91d8-005056b86db5', '1973f6c7-1561-11ee-91d8-005056b86db5', '2fa75e51-189a-11ee-91d8-005056b86db5', 'a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956', 'fbb00cc1-380b-4173-add4-59b3cf7682b5', '63060b4a-89dc-4f0c-bf04-a1de22d479ff', '777559d2-7239-11ee-b98c-005056b86db5', '03d24cf9-4fbc-4aeb-bb02-6f84f66e6344','884c5665-a453-46f3-b7b6-01d575290aa9','c9a6de59-8b4f-4be1-8565-a08081f649d3','7f280060-665e-4868-b68f-1eec9e1b4a07','f3b243b2-75e2-4b00-8f66-7644946a2a25','16ace517-b5c7-4168-a9bb-a9e0035df840','2fe1a080-4425-4620-b7a0-be2f3750ffd4','a5efd078-20f6-4185-bef9-6d1c688bee70','23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6','ec84034b-8ea4-4d27-9cba-1adcb4720bb3','b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc','c8266c04-59e3-44de-bcf2-8f906e66e636','7cc601a0-fafc-4116-a805-0adbacf7a38d','62c166af-2f22-11f0-b60f-005056924926', 'eaee75a4-ff2e-11ef-b508-005056924926',"fa20a652-5f2a-11f0-bf32-005056924926","eed08ac6-7269-11f0-9c7b-005056924926"];
  2260. var liyuanOrg = ["3823a6a5-1b6e-11f0-a66a-005056924926", "3823a6a5-1b6e-11f0-a66a-005056924926", "292e34dc-1b6e-11f0-a66a-005056924926", "21d6b367-1b6e-11f0-a66a-005056924926", "1a1a172d-1b6e-11f0-a66a-005056924926", "1197f86b-1b6e-11f0-a66a-005056924926", "f235659b-1b6d-11f0-a66a-005056924926", "d87b62d3-1b6d-11f0-a66a-005056924926", "c25ea59b-1b6d-11f0-a66a-005056924926",]
  2261. //清楚桌面图标
  2262. el.innerHTML = "";
  2263. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2264. _teacherDesktopIconInfo.push(
  2265. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2266. { "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)" } },
  2267. )
  2268. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2269. }
  2270. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5' || _org == '4d3812ef-fa66-11ef-b508-005056924926' || _oid == "0df61e4c-fe2d-11ef-b508-005056924926" || _org == 'e775a5d7-039a-11f0-b508-005056924926' || _org == '4d3812ef-fa66-11ef-b508-005056924926') {
  2271. _teacherDesktopIconInfo.push(
  2272. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2273. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2274. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2275. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2276. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2277. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2278. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2279. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2280. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2281. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2282. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2283. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2284. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2285. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2286. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2287. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2288. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2289. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2290. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2291. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2292. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2293. )
  2294. }
  2295. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2296. _teacherDesktopIconInfo.push(
  2297. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2298. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2299. )
  2300. }
  2301. if (_oid == 'b650d914-f039-11ef-b508-005056924926') {//松坪学校
  2302. _nsfxTeacherDeskIconInfo.push(
  2303. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2304. )
  2305. }
  2306. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2307. // _teacherDesktopIconInfo.push(
  2308. // )
  2309. // }
  2310. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2311. _teacherDesktopIconInfo.push(
  2312. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2313. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2314. )
  2315. }
  2316. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2317. _teacherDesktopIconInfo.push(
  2318. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2319. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2320. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2321. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2322. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2323. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2324. )
  2325. _studentDesktopIconInfo.push(
  2326. )
  2327. }
  2328. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2329. _teacherDesktopIconInfo.push(
  2330. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2331. )
  2332. _studentDesktopIconInfo.push(
  2333. )
  2334. }
  2335. //010606 组织
  2336. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2337. _teacherDesktopIconInfo.push(
  2338. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2339. )
  2340. _studentDesktopIconInfo.push(
  2341. )
  2342. }
  2343. //麒麟二中 和 民新小学
  2344. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2345. _teacherDesktopIconInfo.push(
  2346. )
  2347. }
  2348. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2349. _teacherDesktopIconInfo.push(
  2350. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2351. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2352. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2353. )
  2354. }
  2355. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _org == '62c166af-2f22-11f0-b60f-005056924926' && _role == '1'){
  2356. _hkTeacherDeskIconInfo.push(
  2357. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2358. )
  2359. }
  2360. //北师大附中(010601)
  2361. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2362. // _teacherDesktopIconInfo.push(
  2363. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2364. // )
  2365. // _studentDesktopIconInfo.push(
  2366. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2367. // )
  2368. // }
  2369. //樂善堂余近卿中學
  2370. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2371. _teacherDesktopIconInfo.push(
  2372. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2373. )
  2374. }
  2375. // Education Artificial Intelligence
  2376. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2377. _teacherDesktopIconInfo.push(
  2378. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2379. )
  2380. }
  2381. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2382. _teacherDesktopIconInfo.push(
  2383. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2384. )
  2385. }
  2386. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2387. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2388. _teacherDesktopIconInfo.push(
  2389. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2390. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2391. )
  2392. }
  2393. //麒麟二中
  2394. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2395. _studentDesktopIconInfo.push(
  2396. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2397. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2398. )
  2399. }
  2400. //万科双语
  2401. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2402. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2403. if (el.Name == '项目管理') {
  2404. el.Name = 'PBL项目'
  2405. }
  2406. return el
  2407. })
  2408. _studentDesktopIconInfo3.push(
  2409. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2410. )
  2411. }
  2412. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2413. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2414. return el.Name != '魔盒识字' && el.Name != '24点'
  2415. })
  2416. }
  2417. 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) {
  2418. _studentDesktopIconInfo.push(
  2419. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2420. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2421. )
  2422. }
  2423. //循环创建桌面图标
  2424. if (type == 1) {
  2425. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && liyuanOrg.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2426. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2427. _content = $$("div", {
  2428. className: "U_MD_D_KO",
  2429. "onmousedown": U.UF.C.closure(function (obj) {
  2430. //防止拖动图标即打开了桌面应用
  2431. U.MD.D.click(this, obj);
  2432. }, [_studentDesktopIconInfo[i]]),
  2433. "onclick": U.UF.C.closure(function (obj) {
  2434. //防止拖动图标即打开了桌面应用
  2435. U.MD.D.click(this, obj);
  2436. }, [_studentDesktopIconInfo[i]])
  2437. }, _frag); //
  2438. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2439. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2440. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2441. }
  2442. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2443. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2444. _content = $$("div", {
  2445. className: "U_MD_D_KO",
  2446. "onmousedown": U.UF.C.closure(function (obj) {
  2447. //防止拖动图标即打开了桌面应用
  2448. U.MD.D.click(this, obj);
  2449. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2450. "onclick": U.UF.C.closure(function (obj) {
  2451. //防止拖动图标即打开了桌面应用
  2452. U.MD.D.click(this, obj);
  2453. }, [_hkZJLSStudentDeskIconInfo[i]])
  2454. }, _frag); //
  2455. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2456. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2457. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2458. } //
  2459. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2460. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2461. _content = $$("div", {
  2462. className: "U_MD_D_KO",
  2463. "onmousedown": U.UF.C.closure(function (obj) {
  2464. //防止拖动图标即打开了桌面应用
  2465. U.MD.D.click(this, obj);
  2466. }, [_ytyStudentDeskIconInfo[i]]),
  2467. "onclick": U.UF.C.closure(function (obj) {
  2468. //防止拖动图标即打开了桌面应用
  2469. U.MD.D.click(this, obj);
  2470. }, [_ytyStudentDeskIconInfo[i]])
  2471. }, _frag); //
  2472. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2473. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2474. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2475. } //
  2476. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2477. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2478. _content = $$("div", {
  2479. className: "U_MD_D_KO",
  2480. "onmousedown": U.UF.C.closure(function (obj) {
  2481. //防止拖动图标即打开了桌面应用
  2482. U.MD.D.click(this, obj);
  2483. }, [_jccssylStudentDeskIconInfo[i]]),
  2484. "onclick": U.UF.C.closure(function (obj) {
  2485. //防止拖动图标即打开了桌面应用
  2486. U.MD.D.click(this, obj);
  2487. }, [_jccssylStudentDeskIconInfo[i]])
  2488. }, _frag); //
  2489. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2490. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2491. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2492. }
  2493. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2494. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2495. _content = $$("div", {
  2496. className: "U_MD_D_KO",
  2497. "onmousedown": U.UF.C.closure(function (obj) {
  2498. //防止拖动图标即打开了桌面应用
  2499. U.MD.D.click(this, obj);
  2500. }, [_scnuaiStudentDeskIconInfo[i]]),
  2501. "onclick": U.UF.C.closure(function (obj) {
  2502. //防止拖动图标即打开了桌面应用
  2503. U.MD.D.click(this, obj);
  2504. }, [_scnuaiStudentDeskIconInfo[i]])
  2505. }, _frag); //
  2506. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2507. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2508. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2509. }
  2510. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2511. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2512. _content = $$("div", {
  2513. className: "U_MD_D_KO",
  2514. "onmousedown": U.UF.C.closure(function (obj) {
  2515. //防止拖动图标即打开了桌面应用
  2516. U.MD.D.click(this, obj);
  2517. }, [_caleStudentDeskIconInfo[i]]),
  2518. "onclick": U.UF.C.closure(function (obj) {
  2519. //防止拖动图标即打开了桌面应用
  2520. U.MD.D.click(this, obj);
  2521. }, [_caleStudentDeskIconInfo[i]])
  2522. }, _frag); //
  2523. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2524. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2525. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2526. }
  2527. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2528. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2529. _content = $$("div", {
  2530. className: "U_MD_D_KO",
  2531. "onmousedown": U.UF.C.closure(function (obj) {
  2532. //防止拖动图标即打开了桌面应用
  2533. U.MD.D.click(this, obj);
  2534. }, [_thuioeStudentDeskIconInfo[i]]),
  2535. "onclick": U.UF.C.closure(function (obj) {
  2536. //防止拖动图标即打开了桌面应用
  2537. U.MD.D.click(this, obj);
  2538. }, [_thuioeStudentDeskIconInfo[i]])
  2539. }, _frag); //
  2540. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2541. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2542. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2543. }
  2544. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2545. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2546. _content = $$("div", {
  2547. className: "U_MD_D_KO",
  2548. "onmousedown": U.UF.C.closure(function (obj) {
  2549. //防止拖动图标即打开了桌面应用
  2550. U.MD.D.click(this, obj);
  2551. }, [_tpcStudentDeskIconInfo[i]]),
  2552. "onclick": U.UF.C.closure(function (obj) {
  2553. //防止拖动图标即打开了桌面应用
  2554. U.MD.D.click(this, obj);
  2555. }, [_tpcStudentDeskIconInfo[i]])
  2556. }, _frag); //
  2557. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2558. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2559. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2560. } //
  2561. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2562. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2563. _content = $$("div", {
  2564. className: "U_MD_D_KO",
  2565. "onmousedown": U.UF.C.closure(function (obj) {
  2566. //防止拖动图标即打开了桌面应用
  2567. U.MD.D.click(this, obj);
  2568. }, [_chjyjStudentDeskIconInfo[i]]),
  2569. "onclick": U.UF.C.closure(function (obj) {
  2570. //防止拖动图标即打开了桌面应用
  2571. U.MD.D.click(this, obj);
  2572. }, [_chjyjStudentDeskIconInfo[i]])
  2573. }, _frag); //
  2574. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2575. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2576. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2577. }
  2578. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2579. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2580. _content = $$("div", {
  2581. className: "U_MD_D_KO",
  2582. "onmousedown": U.UF.C.closure(function (obj) {
  2583. //防止拖动图标即打开了桌面应用
  2584. U.MD.D.click(this, obj);
  2585. }, [_szjkyStudentDeskIconInfo[i]]),
  2586. "onclick": U.UF.C.closure(function (obj) {
  2587. //防止拖动图标即打开了桌面应用
  2588. U.MD.D.click(this, obj);
  2589. }, [_szjkyStudentDeskIconInfo[i]])
  2590. }, _frag); //
  2591. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2592. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2593. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2594. }
  2595. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2596. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2597. _content = $$("div", {
  2598. className: "U_MD_D_KO",
  2599. "onmousedown": U.UF.C.closure(function (obj) {
  2600. //防止拖动图标即打开了桌面应用
  2601. U.MD.D.click(this, obj);
  2602. }, [_x020201StudentDeskIconInfo[i]]),
  2603. "onclick": U.UF.C.closure(function (obj) {
  2604. //防止拖动图标即打开了桌面应用
  2605. U.MD.D.click(this, obj);
  2606. }, [_x020201StudentDeskIconInfo[i]])
  2607. }, _frag); //
  2608. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2609. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2610. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2611. }
  2612. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2613. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2614. _content = $$("div", {
  2615. className: "U_MD_D_KO",
  2616. "onmousedown": U.UF.C.closure(function (obj) {
  2617. //防止拖动图标即打开了桌面应用
  2618. U.MD.D.click(this, obj);
  2619. }, [_SCNUETStudentDeskIconInfo[i]]),
  2620. "onclick": U.UF.C.closure(function (obj) {
  2621. //防止拖动图标即打开了桌面应用
  2622. U.MD.D.click(this, obj);
  2623. }, [_SCNUETStudentDeskIconInfo[i]])
  2624. }, _frag); //
  2625. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2626. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2627. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2628. }
  2629. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2630. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2631. _content = $$("div", {
  2632. className: "U_MD_D_KO",
  2633. "onmousedown": U.UF.C.closure(function (obj) {
  2634. //防止拖动图标即打开了桌面应用
  2635. U.MD.D.click(this, obj);
  2636. }, [_dseiStudentDeskIconInfo[i]]),
  2637. "onclick": U.UF.C.closure(function (obj) {
  2638. //防止拖动图标即打开了桌面应用
  2639. U.MD.D.click(this, obj);
  2640. }, [_dseiStudentDeskIconInfo[i]])
  2641. }, _frag); //
  2642. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2643. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2644. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2645. }
  2646. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2647. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2648. _content = $$("div", {
  2649. className: "U_MD_D_KO",
  2650. "onmousedown": U.UF.C.closure(function (obj) {
  2651. //防止拖动图标即打开了桌面应用
  2652. U.MD.D.click(this, obj);
  2653. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2654. "onclick": U.UF.C.closure(function (obj) {
  2655. //防止拖动图标即打开了桌面应用
  2656. U.MD.D.click(this, obj);
  2657. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2658. }, _frag); //
  2659. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2660. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2661. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2662. }
  2663. } else if (_type == 2 && (_org == "7cc601a0-fafc-4116-a805-0adbacf7a38d")) {
  2664. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2665. _content = $$("div", {
  2666. className: "U_MD_D_KO",
  2667. "onmousedown": U.UF.C.closure(function (obj) {
  2668. //防止拖动图标即打开了桌面应用
  2669. U.MD.D.click(this, obj);
  2670. }, [_nsfxStudentDeskIconInfo[i]]),
  2671. "onclick": U.UF.C.closure(function (obj) {
  2672. //防止拖动图标即打开了桌面应用
  2673. U.MD.D.click(this, obj);
  2674. }, [_nsfxStudentDeskIconInfo[i]])
  2675. }, _frag); //
  2676. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2677. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2678. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2679. }
  2680. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2681. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2682. _content = $$("div", {
  2683. className: "U_MD_D_KO",
  2684. "onmousedown": U.UF.C.closure(function (obj) {
  2685. //防止拖动图标即打开了桌面应用
  2686. U.MD.D.click(this, obj);
  2687. }, [_stiaStudentDeskIconInfo[i]]),
  2688. "onclick": U.UF.C.closure(function (obj) {
  2689. //防止拖动图标即打开了桌面应用
  2690. U.MD.D.click(this, obj);
  2691. }, [_stiaStudentDeskIconInfo[i]])
  2692. }, _frag); //
  2693. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2694. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2695. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2696. }
  2697. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2698. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2699. _content = $$("div", {
  2700. className: "U_MD_D_KO",
  2701. "onmousedown": U.UF.C.closure(function (obj) {
  2702. //防止拖动图标即打开了桌面应用
  2703. U.MD.D.click(this, obj);
  2704. }, [_szdjgStudentDeskIconInfo[i]]),
  2705. "onclick": U.UF.C.closure(function (obj) {
  2706. //防止拖动图标即打开了桌面应用
  2707. U.MD.D.click(this, obj);
  2708. }, [_szdjgStudentDeskIconInfo[i]])
  2709. }, _frag); //
  2710. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2711. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2712. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2713. }
  2714. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2715. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2716. _content = $$("div", {
  2717. className: "U_MD_D_KO",
  2718. "onmousedown": U.UF.C.closure(function (obj) {
  2719. //防止拖动图标即打开了桌面应用
  2720. U.MD.D.click(this, obj);
  2721. }, [_x010607StudentDeskIconInfo[i]]),
  2722. "onclick": U.UF.C.closure(function (obj) {
  2723. //防止拖动图标即打开了桌面应用
  2724. U.MD.D.click(this, obj);
  2725. }, [_x010607StudentDeskIconInfo[i]])
  2726. }, _frag); //
  2727. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2728. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2729. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2730. }
  2731. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2732. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2733. _content = $$("div", {
  2734. className: "U_MD_D_KO",
  2735. "onmousedown": U.UF.C.closure(function (obj) {
  2736. //防止拖动图标即打开了桌面应用
  2737. U.MD.D.click(this, obj);
  2738. }, [_xhlyStudentDeskIconInfo[i]]),
  2739. "onclick": U.UF.C.closure(function (obj) {
  2740. //防止拖动图标即打开了桌面应用
  2741. U.MD.D.click(this, obj);
  2742. }, [_xhlyStudentDeskIconInfo[i]])
  2743. }, _frag); //
  2744. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2745. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2746. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2747. }
  2748. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2749. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2750. _content = $$("div", {
  2751. className: "U_MD_D_KO",
  2752. "onmousedown": U.UF.C.closure(function (obj) {
  2753. //防止拖动图标即打开了桌面应用
  2754. U.MD.D.click(this, obj);
  2755. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2756. "onclick": U.UF.C.closure(function (obj) {
  2757. //防止拖动图标即打开了桌面应用
  2758. U.MD.D.click(this, obj);
  2759. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2760. }, _frag); //
  2761. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2762. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2763. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2764. }
  2765. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2766. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2767. _content = $$("div", {
  2768. className: "U_MD_D_KO",
  2769. "onmousedown": U.UF.C.closure(function (obj) {
  2770. //防止拖动图标即打开了桌面应用
  2771. U.MD.D.click(this, obj);
  2772. }, [_x010503StudentDeskIconInfo[i]]),
  2773. "onclick": U.UF.C.closure(function (obj) {
  2774. //防止拖动图标即打开了桌面应用
  2775. U.MD.D.click(this, obj);
  2776. }, [_x010503StudentDeskIconInfo[i]])
  2777. }, _frag); //
  2778. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2779. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2780. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2781. }
  2782. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  2783. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2784. _content = $$("div", {
  2785. className: "U_MD_D_KO",
  2786. "onmousedown": U.UF.C.closure(function (obj) {
  2787. //防止拖动图标即打开了桌面应用
  2788. U.MD.D.click(this, obj);
  2789. }, [_x010504StudentDeskIconInfo[i]]),
  2790. "onclick": U.UF.C.closure(function (obj) {
  2791. //防止拖动图标即打开了桌面应用
  2792. U.MD.D.click(this, obj);
  2793. }, [_x010504StudentDeskIconInfo[i]])
  2794. }, _frag); //
  2795. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2796. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2797. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2798. }
  2799. } else if (_type == 2 && (_oid == "8406b214-085f-11f0-b508-005056924926")) {
  2800. for (i = 0; i < _x010505StudentDeskIconInfo.length; i++) {
  2801. _content = $$("div", {
  2802. className: "U_MD_D_KO",
  2803. "onmousedown": U.UF.C.closure(function (obj) {
  2804. //防止拖动图标即打开了桌面应用
  2805. U.MD.D.click(this, obj);
  2806. }, [_x010505StudentDeskIconInfo[i]]),
  2807. "onclick": U.UF.C.closure(function (obj) {
  2808. //防止拖动图标即打开了桌面应用
  2809. U.MD.D.click(this, obj);
  2810. }, [_x010505StudentDeskIconInfo[i]])
  2811. }, _frag); //
  2812. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2813. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505StudentDeskIconInfo[i].style }, _iconcontent);
  2814. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505StudentDeskIconInfo[i].Name }, _iconcontent);
  2815. }
  2816. } else if (_type == 2 && (_oid == "bc239322-ffb2-11ef-b508-005056924926")) {
  2817. for (i = 0; i < _x010404StudentDeskIconInfo.length; i++) {
  2818. _content = $$("div", {
  2819. className: "U_MD_D_KO",
  2820. "onmousedown": U.UF.C.closure(function (obj) {
  2821. //防止拖动图标即打开了桌面应用
  2822. U.MD.D.click(this, obj);
  2823. }, [_x010404StudentDeskIconInfo[i]]),
  2824. "onclick": U.UF.C.closure(function (obj) {
  2825. //防止拖动图标即打开了桌面应用
  2826. U.MD.D.click(this, obj);
  2827. }, [_x010404StudentDeskIconInfo[i]])
  2828. }, _frag); //
  2829. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2830. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404StudentDeskIconInfo[i].style }, _iconcontent);
  2831. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404StudentDeskIconInfo[i].Name }, _iconcontent);
  2832. }
  2833. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2834. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2835. _content = $$("div", {
  2836. className: "U_MD_D_KO",
  2837. "onmousedown": U.UF.C.closure(function (obj) {
  2838. //防止拖动图标即打开了桌面应用
  2839. U.MD.D.click(this, obj);
  2840. }, [_x010204StudentDeskIconInfo[i]]),
  2841. "onclick": U.UF.C.closure(function (obj) {
  2842. //防止拖动图标即打开了桌面应用
  2843. U.MD.D.click(this, obj);
  2844. }, [_x010204StudentDeskIconInfo[i]])
  2845. }, _frag); //
  2846. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2847. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2848. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2849. }
  2850. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2851. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2852. _content = $$("div", {
  2853. className: "U_MD_D_KO",
  2854. "onmousedown": U.UF.C.closure(function (obj) {
  2855. //防止拖动图标即打开了桌面应用
  2856. U.MD.D.click(this, obj);
  2857. }, [_x320101StudentDeskIconInfo[i]]),
  2858. "onclick": U.UF.C.closure(function (obj) {
  2859. //防止拖动图标即打开了桌面应用
  2860. U.MD.D.click(this, obj);
  2861. }, [_x320101StudentDeskIconInfo[i]])
  2862. }, _frag); //
  2863. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2864. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2865. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2866. }
  2867. }else if (_type == 2 && _org == "fa20a652-5f2a-11f0-bf32-005056924926") {
  2868. for (i = 0; i < _MOAIStudentDeskIcon.length; i++) {
  2869. _content = $$("div", {
  2870. className: "U_MD_D_KO",
  2871. "onmousedown": U.UF.C.closure(function (obj) {
  2872. //防止拖动图标即打开了桌面应用
  2873. U.MD.D.click(this, obj);
  2874. }, [_MOAIStudentDeskIcon[i]]),
  2875. "onclick": U.UF.C.closure(function (obj) {
  2876. //防止拖动图标即打开了桌面应用
  2877. U.MD.D.click(this, obj);
  2878. }, [_MOAIStudentDeskIcon[i]])
  2879. }, _frag); //
  2880. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2881. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MOAIStudentDeskIcon[i].style }, _iconcontent);
  2882. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MOAIStudentDeskIcon[i].Name }, _iconcontent);
  2883. }
  2884. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2885. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2886. _content = $$("div", {
  2887. className: "U_MD_D_KO",
  2888. "onmousedown": U.UF.C.closure(function (obj) {
  2889. //防止拖动图标即打开了桌面应用
  2890. U.MD.D.click(this, obj);
  2891. }, [_trailStudentDeskIconInfo[i]]),
  2892. "onclick": U.UF.C.closure(function (obj) {
  2893. //防止拖动图标即打开了桌面应用
  2894. U.MD.D.click(this, obj);
  2895. }, [_trailStudentDeskIconInfo[i]])
  2896. }, _frag); //
  2897. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2898. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2899. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2900. }
  2901. } else if (_type == 2 && (_oid == "65ad80f0-16bb-11f0-a66a-005056924926")) {
  2902. for (i = 0; i < _trialStudentDeskIconInfo.length; i++) {
  2903. _content = $$("div", {
  2904. className: "U_MD_D_KO",
  2905. "onmousedown": U.UF.C.closure(function (obj) {
  2906. //防止拖动图标即打开了桌面应用
  2907. U.MD.D.click(this, obj);
  2908. }, [_trialStudentDeskIconInfo[i]]),
  2909. "onclick": U.UF.C.closure(function (obj) {
  2910. //防止拖动图标即打开了桌面应用
  2911. U.MD.D.click(this, obj);
  2912. }, [_trialStudentDeskIconInfo[i]])
  2913. }, _frag); //
  2914. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2915. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialStudentDeskIconInfo[i].style }, _iconcontent);
  2916. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialStudentDeskIconInfo[i].Name }, _iconcontent);
  2917. }
  2918. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2919. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2920. _content = $$("div", {
  2921. className: "U_MD_D_KO",
  2922. "onmousedown": U.UF.C.closure(function (obj) {
  2923. //防止拖动图标即打开了桌面应用
  2924. U.MD.D.click(this, obj);
  2925. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2926. "onclick": U.UF.C.closure(function (obj) {
  2927. //防止拖动图标即打开了桌面应用
  2928. U.MD.D.click(this, obj);
  2929. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2930. }, _frag); //
  2931. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2932. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2933. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2934. }
  2935. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2936. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2937. _content = $$("div", {
  2938. className: "U_MD_D_KO",
  2939. "onmousedown": U.UF.C.closure(function (obj) {
  2940. //防止拖动图标即打开了桌面应用
  2941. U.MD.D.click(this, obj);
  2942. }, [_szsyStudentDeskIconInfo[i]]),
  2943. "onclick": U.UF.C.closure(function (obj) {
  2944. //防止拖动图标即打开了桌面应用
  2945. U.MD.D.click(this, obj);
  2946. }, [_szsyStudentDeskIconInfo[i]])
  2947. }, _frag); //
  2948. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2949. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2950. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2951. }
  2952. } else if (_type == 2 && (_org == "eed08ac6-7269-11f0-9c7b-005056924926")) {
  2953. for (i = 0; i < _PREPAIStudentDeskIcon.length; i++) {
  2954. _content = $$("div", {
  2955. className: "U_MD_D_KO",
  2956. "onmousedown": U.UF.C.closure(function (obj) {
  2957. //防止拖动图标即打开了桌面应用
  2958. U.MD.D.click(this, obj);
  2959. }, [_PREPAIStudentDeskIcon[i]]),
  2960. "onclick": U.UF.C.closure(function (obj) {
  2961. //防止拖动图标即打开了桌面应用
  2962. U.MD.D.click(this, obj);
  2963. }, [_PREPAIStudentDeskIcon[i]])
  2964. }, _frag); //
  2965. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2966. $$("div", { className: "U_MD_D_KOS U_Img", "style": _PREPAIStudentDeskIcon[i].style }, _iconcontent);
  2967. $$("div", { className: "U_MD_D_KOX", "innerHTML": _PREPAIStudentDeskIcon[i].Name }, _iconcontent);
  2968. }
  2969. } else if (_type == 2 && (_org == "eaee75a4-ff2e-11ef-b508-005056924926")) {
  2970. for (i = 0; i < _demoCocoStudentDeskIconInfo.length; i++) {
  2971. _content = $$("div", {
  2972. className: "U_MD_D_KO",
  2973. "onmousedown": U.UF.C.closure(function (obj) {
  2974. //防止拖动图标即打开了桌面应用
  2975. U.MD.D.click(this, obj);
  2976. }, [_demoCocoStudentDeskIconInfo[i]]),
  2977. "onclick": U.UF.C.closure(function (obj) {
  2978. //防止拖动图标即打开了桌面应用
  2979. U.MD.D.click(this, obj);
  2980. }, [_demoCocoStudentDeskIconInfo[i]])
  2981. }, _frag); //
  2982. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2983. $$("div", { className: "U_MD_D_KOS U_Img", "style": _demoCocoStudentDeskIconInfo[i].style }, _iconcontent);
  2984. $$("div", { className: "U_MD_D_KOX", "innerHTML": _demoCocoStudentDeskIconInfo[i].Name }, _iconcontent);
  2985. }
  2986. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2987. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2988. _content = $$("div", {
  2989. className: "U_MD_D_KO",
  2990. "onmousedown": U.UF.C.closure(function (obj) {
  2991. //防止拖动图标即打开了桌面应用
  2992. U.MD.D.click(this, obj);
  2993. }, [_x010608StudentDeskIconInfo[i]]),
  2994. "onclick": U.UF.C.closure(function (obj) {
  2995. //防止拖动图标即打开了桌面应用
  2996. U.MD.D.click(this, obj);
  2997. }, [_x010608StudentDeskIconInfo[i]])
  2998. }, _frag); //
  2999. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3000. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  3001. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  3002. }
  3003. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  3004. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  3005. _content = $$("div", {
  3006. className: "U_MD_D_KO",
  3007. "onmousedown": U.UF.C.closure(function (obj) {
  3008. //防止拖动图标即打开了桌面应用
  3009. U.MD.D.click(this, obj);
  3010. }, [_x010611StudentDeskIconInfo[i]]),
  3011. "onclick": U.UF.C.closure(function (obj) {
  3012. //防止拖动图标即打开了桌面应用
  3013. U.MD.D.click(this, obj);
  3014. }, [_x010611StudentDeskIconInfo[i]])
  3015. }, _frag); //
  3016. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3017. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  3018. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  3019. }
  3020. } else if (_type == 2 && (_oid == "86fa8cd7-00c2-11f0-b508-005056924926")) {
  3021. for (i = 0; i < _x010612StudentDeskIconInfo.length; i++) {
  3022. _content = $$("div", {
  3023. className: "U_MD_D_KO",
  3024. "onmousedown": U.UF.C.closure(function (obj) {
  3025. //防止拖动图标即打开了桌面应用
  3026. U.MD.D.click(this, obj);
  3027. }, [_x010612StudentDeskIconInfo[i]]),
  3028. "onclick": U.UF.C.closure(function (obj) {
  3029. //防止拖动图标即打开了桌面应用
  3030. U.MD.D.click(this, obj);
  3031. }, [_x010612StudentDeskIconInfo[i]])
  3032. }, _frag); //
  3033. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3034. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612StudentDeskIconInfo[i].style }, _iconcontent);
  3035. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612StudentDeskIconInfo[i].Name }, _iconcontent);
  3036. }
  3037. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  3038. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  3039. _content = $$("div", {
  3040. className: "U_MD_D_KO",
  3041. "onmousedown": U.UF.C.closure(function (obj) {
  3042. //防止拖动图标即打开了桌面应用
  3043. U.MD.D.click(this, obj);
  3044. }, [_tianyuantudentDeskIconInfo[i]]),
  3045. "onclick": U.UF.C.closure(function (obj) {
  3046. //防止拖动图标即打开了桌面应用
  3047. U.MD.D.click(this, obj);
  3048. }, [_tianyuantudentDeskIconInfo[i]])
  3049. }, _frag); //
  3050. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3051. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  3052. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  3053. }
  3054. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3055. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  3056. _content = $$("div", {
  3057. className: "U_MD_D_KO",
  3058. "onmousedown": U.UF.C.closure(function (obj) {
  3059. //防止拖动图标即打开了桌面应用
  3060. U.MD.D.click(this, obj);
  3061. }, [_siesStudentDeskIconInfo[i]]),
  3062. "onclick": U.UF.C.closure(function (obj) {
  3063. //防止拖动图标即打开了桌面应用
  3064. U.MD.D.click(this, obj);
  3065. }, [_siesStudentDeskIconInfo[i]])
  3066. }, _frag); //
  3067. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3068. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  3069. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  3070. }
  3071. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3072. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  3073. _content = $$("div", {
  3074. className: "U_MD_D_KO",
  3075. "onmousedown": U.UF.C.closure(function (obj) {
  3076. //防止拖动图标即打开了桌面应用
  3077. U.MD.D.click(this, obj);
  3078. }, [_guzmsStudentDeskIconInfo[i]]),
  3079. "onclick": U.UF.C.closure(function (obj) {
  3080. //防止拖动图标即打开了桌面应用
  3081. U.MD.D.click(this, obj);
  3082. }, [_guzmsStudentDeskIconInfo[i]])
  3083. }, _frag); //
  3084. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3085. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  3086. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  3087. }
  3088. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3089. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  3090. _content = $$("div", {
  3091. className: "U_MD_D_KO",
  3092. "onmousedown": U.UF.C.closure(function (obj) {
  3093. //防止拖动图标即打开了桌面应用
  3094. U.MD.D.click(this, obj);
  3095. }, [_hkStudentDeskIconInfo[i]]),
  3096. "onclick": U.UF.C.closure(function (obj) {
  3097. //防止拖动图标即打开了桌面应用
  3098. U.MD.D.click(this, obj);
  3099. }, [_hkStudentDeskIconInfo[i]])
  3100. }, _frag); //
  3101. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3102. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  3103. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  3104. }
  3105. } else if (_type == 2 && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  3106. for (i = 0; i < _tycyStudentDeskIconInfo.length; i++) {
  3107. _content = $$("div", {
  3108. className: "U_MD_D_KO",
  3109. "onmousedown": U.UF.C.closure(function (obj) {
  3110. //防止拖动图标即打开了桌面应用
  3111. U.MD.D.click(this, obj);
  3112. }, [_tycyStudentDeskIconInfo[i]]),
  3113. "onclick": U.UF.C.closure(function (obj) {
  3114. //防止拖动图标即打开了桌面应用
  3115. U.MD.D.click(this, obj);
  3116. }, [_tycyStudentDeskIconInfo[i]])
  3117. }, _frag); //
  3118. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3119. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyStudentDeskIconInfo[i].style }, _iconcontent);
  3120. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyStudentDeskIconInfo[i].Name }, _iconcontent);
  3121. }
  3122. } else if (_type == 2 && (_oid == "9a8076a2-469a-11f0-b60f-005056924926")) {
  3123. for (i = 0; i < _ckcpsStudentDeskIconInfo.length; i++) {
  3124. _content = $$("div", {
  3125. className: "U_MD_D_KO",
  3126. "onmousedown": U.UF.C.closure(function (obj) {
  3127. //防止拖动图标即打开了桌面应用
  3128. U.MD.D.click(this, obj);
  3129. }, [_ckcpsStudentDeskIconInfo[i]]),
  3130. "onclick": U.UF.C.closure(function (obj) {
  3131. //防止拖动图标即打开了桌面应用
  3132. U.MD.D.click(this, obj);
  3133. }, [_ckcpsStudentDeskIconInfo[i]])
  3134. }, _frag); //
  3135. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3136. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ckcpsStudentDeskIconInfo[i].style }, _iconcontent);
  3137. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ckcpsStudentDeskIconInfo[i].Name }, _iconcontent);
  3138. }
  3139. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3140. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  3141. _content = $$("div", {
  3142. className: "U_MD_D_KO",
  3143. "onmousedown": U.UF.C.closure(function (obj) {
  3144. //防止拖动图标即打开了桌面应用
  3145. U.MD.D.click(this, obj);
  3146. }, [_hkaceStudentDeskIconInfo[i]]),
  3147. "onclick": U.UF.C.closure(function (obj) {
  3148. //防止拖动图标即打开了桌面应用
  3149. U.MD.D.click(this, obj);
  3150. }, [_hkaceStudentDeskIconInfo[i]])
  3151. }, _frag); //
  3152. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3153. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  3154. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  3155. }
  3156. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  3157. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  3158. _content = $$("div", {
  3159. className: "U_MD_D_KO",
  3160. "onmousedown": U.UF.C.closure(function (obj) {
  3161. //防止拖动图标即打开了桌面应用
  3162. U.MD.D.click(this, obj);
  3163. }, [_BSDNSstudentDesktopIconInfo[i]]),
  3164. "onclick": U.UF.C.closure(function (obj) {
  3165. //防止拖动图标即打开了桌面应用
  3166. U.MD.D.click(this, obj);
  3167. }, [_BSDNSstudentDesktopIconInfo[i]])
  3168. }, _frag); //
  3169. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3170. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  3171. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  3172. }
  3173. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3174. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  3175. _content = $$("div", {
  3176. className: "U_MD_D_KO",
  3177. "onmousedown": U.UF.C.closure(function (obj) {
  3178. //防止拖动图标即打开了桌面应用
  3179. U.MD.D.click(this, obj);
  3180. }, [_cocobizStudentDeskIconInfo[i]]),
  3181. "onclick": U.UF.C.closure(function (obj) {
  3182. //防止拖动图标即打开了桌面应用
  3183. U.MD.D.click(this, obj);
  3184. }, [_cocobizStudentDeskIconInfo[i]])
  3185. }, _frag); //
  3186. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3187. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  3188. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  3189. }
  3190. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3191. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  3192. _content = $$("div", {
  3193. className: "U_MD_D_KO",
  3194. "onmousedown": U.UF.C.closure(function (obj) {
  3195. //防止拖动图标即打开了桌面应用
  3196. U.MD.D.click(this, obj);
  3197. }, [_xxzjkyStudentDeskIconInfo[i]]),
  3198. "onclick": U.UF.C.closure(function (obj) {
  3199. //防止拖动图标即打开了桌面应用
  3200. U.MD.D.click(this, obj);
  3201. }, [_xxzjkyStudentDeskIconInfo[i]])
  3202. }, _frag); //
  3203. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3204. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  3205. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  3206. }
  3207. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  3208. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  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. }, [_studentDesktopIconInfo[i]]),
  3215. "onclick": U.UF.C.closure(function (obj) {
  3216. //防止拖动图标即打开了桌面应用
  3217. U.MD.D.click(this, obj);
  3218. }, [_studentDesktopIconInfo[i]])
  3219. }, _frag); //
  3220. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3221. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  3222. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  3223. }
  3224. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  3225. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  3226. _content = $$("div", {
  3227. className: "U_MD_D_KO",
  3228. "onmousedown": U.UF.C.closure(function (obj) {
  3229. //防止拖动图标即打开了桌面应用
  3230. U.MD.D.click(this, obj);
  3231. }, [_tcStudentDeskIconInfo[i]]),
  3232. "onclick": U.UF.C.closure(function (obj) {
  3233. //防止拖动图标即打开了桌面应用
  3234. U.MD.D.click(this, obj);
  3235. }, [_tcStudentDeskIconInfo[i]])
  3236. }, _frag); //
  3237. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3238. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  3239. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  3240. }
  3241. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  3242. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  3243. _content = $$("div", {
  3244. className: "U_MD_D_KO",
  3245. "onmousedown": U.UF.C.closure(function (obj) {
  3246. //防止拖动图标即打开了桌面应用
  3247. U.MD.D.click(this, obj);
  3248. }, [_szscStudentDeskIconInfo[i]]),
  3249. "onclick": U.UF.C.closure(function (obj) {
  3250. //防止拖动图标即打开了桌面应用
  3251. U.MD.D.click(this, obj);
  3252. }, [_szscStudentDeskIconInfo[i]])
  3253. }, _frag); //
  3254. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3255. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  3256. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  3257. }
  3258. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  3259. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  3260. _content = $$("div", {
  3261. className: "U_MD_D_KO",
  3262. "onmousedown": U.UF.C.closure(function (obj) {
  3263. //防止拖动图标即打开了桌面应用
  3264. U.MD.D.click(this, obj);
  3265. }, [_studentDesktopIconInfo3[i]]),
  3266. "onclick": U.UF.C.closure(function (obj) {
  3267. //防止拖动图标即打开了桌面应用
  3268. U.MD.D.click(this, obj);
  3269. }, [_studentDesktopIconInfo3[i]])
  3270. }, _frag); //
  3271. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3272. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  3273. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  3274. }
  3275. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1 || liyuanOrg.indexOf(_org) != -1)) {
  3276. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  3277. _content = $$("div", {
  3278. className: "U_MD_D_KO",
  3279. "onmousedown": U.UF.C.closure(function (obj) {
  3280. //防止拖动图标即打开了桌面应用
  3281. U.MD.D.click(this, obj);
  3282. }, [_studentDesktopIconInfo2[i]]),
  3283. "onclick": U.UF.C.closure(function (obj) {
  3284. //防止拖动图标即打开了桌面应用
  3285. U.MD.D.click(this, obj);
  3286. }, [_studentDesktopIconInfo2[i]])
  3287. }, _frag); //
  3288. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3289. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  3290. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  3291. }
  3292. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  3293. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  3294. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  3295. continue
  3296. }
  3297. _content = $$("div", {
  3298. className: "U_MD_D_KO",
  3299. "onmousedown": U.UF.C.closure(function (obj) {
  3300. //防止拖动图标即打开了桌面应用
  3301. U.MD.D.click(this, obj);
  3302. }, [_wanketeacherDesktopIconInfo[i]]),
  3303. "onclick": U.UF.C.closure(function (obj) {
  3304. //防止拖动图标即打开了桌面应用
  3305. U.MD.D.click(this, obj);
  3306. }, [_wanketeacherDesktopIconInfo[i]])
  3307. }, _frag); //
  3308. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3309. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  3310. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  3311. }
  3312. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  3313. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  3314. _content = $$("div", {
  3315. className: "U_MD_D_KO",
  3316. "onmousedown": U.UF.C.closure(function (obj) {
  3317. //防止拖动图标即打开了桌面应用
  3318. U.MD.D.click(this, obj);
  3319. }, [_wankeAdminDesktopIconInfo[i]]),
  3320. "onclick": U.UF.C.closure(function (obj) {
  3321. //防止拖动图标即打开了桌面应用
  3322. U.MD.D.click(this, obj);
  3323. }, [_wankeAdminDesktopIconInfo[i]])
  3324. }, _frag); //
  3325. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3326. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  3327. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  3328. }
  3329. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  3330. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  3331. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3332. continue
  3333. }
  3334. _content = $$("div", {
  3335. className: "U_MD_D_KO",
  3336. "onmousedown": U.UF.C.closure(function (obj) {
  3337. //防止拖动图标即打开了桌面应用
  3338. U.MD.D.click(this, obj);
  3339. }, [_scnuaiTeacherDeskIconInfo[i]]),
  3340. "onclick": U.UF.C.closure(function (obj) {
  3341. //防止拖动图标即打开了桌面应用
  3342. U.MD.D.click(this, obj);
  3343. }, [_scnuaiTeacherDeskIconInfo[i]])
  3344. }, _frag); //
  3345. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3346. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3347. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3348. }
  3349. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  3350. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  3351. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3352. continue
  3353. }
  3354. _content = $$("div", {
  3355. className: "U_MD_D_KO",
  3356. "onmousedown": U.UF.C.closure(function (obj) {
  3357. //防止拖动图标即打开了桌面应用
  3358. U.MD.D.click(this, obj);
  3359. }, [_BSDNSteacherDesktopIconInfo[i]]),
  3360. "onclick": U.UF.C.closure(function (obj) {
  3361. //防止拖动图标即打开了桌面应用
  3362. U.MD.D.click(this, obj);
  3363. }, [_BSDNSteacherDesktopIconInfo[i]])
  3364. }, _frag); //
  3365. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3366. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  3367. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  3368. }
  3369. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  3370. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  3371. _content = $$("div", {
  3372. className: "U_MD_D_KO",
  3373. "onmousedown": U.UF.C.closure(function (obj) {
  3374. //防止拖动图标即打开了桌面应用
  3375. U.MD.D.click(this, obj);
  3376. }, [_scnuaiAdminDeskIconInfo[i]]),
  3377. "onclick": U.UF.C.closure(function (obj) {
  3378. //防止拖动图标即打开了桌面应用
  3379. U.MD.D.click(this, obj);
  3380. }, [_scnuaiAdminDeskIconInfo[i]])
  3381. }, _frag); //
  3382. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3383. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3384. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3385. }
  3386. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3387. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3388. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3389. continue
  3390. }
  3391. _content = $$("div", {
  3392. className: "U_MD_D_KO",
  3393. "onmousedown": U.UF.C.closure(function (obj) {
  3394. //防止拖动图标即打开了桌面应用
  3395. U.MD.D.click(this, obj);
  3396. }, [_jccssylTeacherDeskIconInfo[i]]),
  3397. "onclick": U.UF.C.closure(function (obj) {
  3398. //防止拖动图标即打开了桌面应用
  3399. U.MD.D.click(this, obj);
  3400. }, [_jccssylTeacherDeskIconInfo[i]])
  3401. }, _frag); //
  3402. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3403. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3404. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3405. }
  3406. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3407. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3408. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3409. continue
  3410. }
  3411. _content = $$("div", {
  3412. className: "U_MD_D_KO",
  3413. "onmousedown": U.UF.C.closure(function (obj) {
  3414. //防止拖动图标即打开了桌面应用
  3415. U.MD.D.click(this, obj);
  3416. }, [_caleTeacherDeskIconInfo[i]]),
  3417. "onclick": U.UF.C.closure(function (obj) {
  3418. //防止拖动图标即打开了桌面应用
  3419. U.MD.D.click(this, obj);
  3420. }, [_caleTeacherDeskIconInfo[i]])
  3421. }, _frag); //
  3422. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3423. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3424. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3425. }
  3426. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3427. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3428. _content = $$("div", {
  3429. className: "U_MD_D_KO",
  3430. "onmousedown": U.UF.C.closure(function (obj) {
  3431. //防止拖动图标即打开了桌面应用
  3432. U.MD.D.click(this, obj);
  3433. }, [_tpcOrganizerDeskIconInfo[i]]),
  3434. "onclick": U.UF.C.closure(function (obj) {
  3435. //防止拖动图标即打开了桌面应用
  3436. U.MD.D.click(this, obj);
  3437. }, [_tpcOrganizerDeskIconInfo[i]])
  3438. }, _frag); //
  3439. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3440. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3441. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3442. }
  3443. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3444. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3445. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3446. continue
  3447. }
  3448. _content = $$("div", {
  3449. className: "U_MD_D_KO",
  3450. "onmousedown": U.UF.C.closure(function (obj) {
  3451. //防止拖动图标即打开了桌面应用
  3452. U.MD.D.click(this, obj);
  3453. }, [_tpcTeacherDeskIconInfo[i]]),
  3454. "onclick": U.UF.C.closure(function (obj) {
  3455. //防止拖动图标即打开了桌面应用
  3456. U.MD.D.click(this, obj);
  3457. }, [_tpcTeacherDeskIconInfo[i]])
  3458. }, _frag); //
  3459. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3460. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3461. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3462. }
  3463. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3464. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3465. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3466. continue
  3467. }
  3468. _content = $$("div", {
  3469. className: "U_MD_D_KO",
  3470. "onmousedown": U.UF.C.closure(function (obj) {
  3471. //防止拖动图标即打开了桌面应用
  3472. U.MD.D.click(this, obj);
  3473. }, [_teacherDesktopIconInfo2[i]]),
  3474. "onclick": U.UF.C.closure(function (obj) {
  3475. //防止拖动图标即打开了桌面应用
  3476. U.MD.D.click(this, obj);
  3477. }, [_teacherDesktopIconInfo2[i]])
  3478. }, _frag); //
  3479. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3480. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3481. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3482. }
  3483. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3484. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3485. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3486. continue
  3487. }
  3488. _content = $$("div", {
  3489. className: "U_MD_D_KO",
  3490. "onmousedown": U.UF.C.closure(function (obj) {
  3491. //防止拖动图标即打开了桌面应用
  3492. U.MD.D.click(this, obj);
  3493. }, [_thuioeTeacherDeskIconInfo[i]]),
  3494. "onclick": U.UF.C.closure(function (obj) {
  3495. //防止拖动图标即打开了桌面应用
  3496. U.MD.D.click(this, obj);
  3497. }, [_thuioeTeacherDeskIconInfo[i]])
  3498. }, _frag); //
  3499. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3500. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3501. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3502. }
  3503. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3504. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3505. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3506. continue
  3507. }
  3508. _content = $$("div", {
  3509. className: "U_MD_D_KO",
  3510. "onmousedown": U.UF.C.closure(function (obj) {
  3511. //防止拖动图标即打开了桌面应用
  3512. U.MD.D.click(this, obj);
  3513. }, [_lotechTeacherDeskIconInfo[i]]),
  3514. "onclick": U.UF.C.closure(function (obj) {
  3515. //防止拖动图标即打开了桌面应用
  3516. U.MD.D.click(this, obj);
  3517. }, [_lotechTeacherDeskIconInfo[i]])
  3518. }, _frag); //
  3519. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3520. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3521. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3522. }//
  3523. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3524. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3525. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3526. continue
  3527. }
  3528. _content = $$("div", {
  3529. className: "U_MD_D_KO",
  3530. "onmousedown": U.UF.C.closure(function (obj) {
  3531. //防止拖动图标即打开了桌面应用
  3532. U.MD.D.click(this, obj);
  3533. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3534. "onclick": U.UF.C.closure(function (obj) {
  3535. //防止拖动图标即打开了桌面应用
  3536. U.MD.D.click(this, obj);
  3537. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3538. }, _frag); //
  3539. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3540. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3541. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3542. }
  3543. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3544. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3545. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3546. continue
  3547. }
  3548. _content = $$("div", {
  3549. className: "U_MD_D_KO",
  3550. "onmousedown": U.UF.C.closure(function (obj) {
  3551. //防止拖动图标即打开了桌面应用
  3552. U.MD.D.click(this, obj);
  3553. }, [_siesTeacherDeskIconInfo[i]]),
  3554. "onclick": U.UF.C.closure(function (obj) {
  3555. //防止拖动图标即打开了桌面应用
  3556. U.MD.D.click(this, obj);
  3557. }, [_siesTeacherDeskIconInfo[i]])
  3558. }, _frag); //
  3559. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3560. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3561. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3562. }
  3563. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3564. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3565. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3566. continue
  3567. }
  3568. _content = $$("div", {
  3569. className: "U_MD_D_KO",
  3570. "onmousedown": U.UF.C.closure(function (obj) {
  3571. //防止拖动图标即打开了桌面应用
  3572. U.MD.D.click(this, obj);
  3573. }, [_guzmsTeacherDeskIconInfo[i]]),
  3574. "onclick": U.UF.C.closure(function (obj) {
  3575. //防止拖动图标即打开了桌面应用
  3576. U.MD.D.click(this, obj);
  3577. }, [_guzmsTeacherDeskIconInfo[i]])
  3578. }, _frag); //
  3579. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3580. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3581. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3582. }
  3583. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3584. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3585. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3586. continue
  3587. }
  3588. _content = $$("div", {
  3589. className: "U_MD_D_KO",
  3590. "onmousedown": U.UF.C.closure(function (obj) {
  3591. //防止拖动图标即打开了桌面应用
  3592. U.MD.D.click(this, obj);
  3593. }, [_longhuaTeacherDeskIconInfo[i]]),
  3594. "onclick": U.UF.C.closure(function (obj) {
  3595. //防止拖动图标即打开了桌面应用
  3596. U.MD.D.click(this, obj);
  3597. }, [_longhuaTeacherDeskIconInfo[i]])
  3598. }, _frag); //
  3599. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3600. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3601. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3602. }
  3603. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3604. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3605. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3606. continue
  3607. }
  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. }, [_ytyTeacherDeskIconInfo[i]]),
  3614. "onclick": U.UF.C.closure(function (obj) {
  3615. //防止拖动图标即打开了桌面应用
  3616. U.MD.D.click(this, obj);
  3617. }, [_ytyTeacherDeskIconInfo[i]])
  3618. }, _frag); //
  3619. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3620. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3621. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3622. }
  3623. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3624. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3625. if(_role === 0 && _yunhaiTeacherDeskIconInfo[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. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3634. "onclick": U.UF.C.closure(function (obj) {
  3635. //防止拖动图标即打开了桌面应用
  3636. U.MD.D.click(this, obj);
  3637. }, [_yunhaiTeacherDeskIconInfo[i]])
  3638. }, _frag); //
  3639. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3640. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3641. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3642. } //_hkStudentDeskIconInfo
  3643. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3644. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3645. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3646. continue
  3647. }
  3648. _content = $$("div", {
  3649. className: "U_MD_D_KO",
  3650. "onmousedown": U.UF.C.closure(function (obj) {
  3651. //防止拖动图标即打开了桌面应用
  3652. U.MD.D.click(this, obj);
  3653. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3654. "onclick": U.UF.C.closure(function (obj) {
  3655. //防止拖动图标即打开了桌面应用
  3656. U.MD.D.click(this, obj);
  3657. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3658. }, _frag); //
  3659. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3660. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3661. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3662. }
  3663. } else if ((_type == 1 || _type == 4) && (_oid == "91796dfb-8791-11ef-9b30-005056b86db5")) {
  3664. for (i = 0; i < _ricohTeacherDeskIconInfo.length; i++) {
  3665. if(_role === 0 && _ricohTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3666. continue
  3667. }
  3668. _content = $$("div", {
  3669. className: "U_MD_D_KO",
  3670. "onmousedown": U.UF.C.closure(function (obj) {
  3671. //防止拖动图标即打开了桌面应用
  3672. U.MD.D.click(this, obj);
  3673. }, [_ricohTeacherDeskIconInfo[i]]),
  3674. "onclick": U.UF.C.closure(function (obj) {
  3675. //防止拖动图标即打开了桌面应用
  3676. U.MD.D.click(this, obj);
  3677. }, [_ricohTeacherDeskIconInfo[i]])
  3678. }, _frag); //
  3679. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3680. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ricohTeacherDeskIconInfo[i].style }, _iconcontent);
  3681. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ricohTeacherDeskIconInfo[i].Name }, _iconcontent);
  3682. }
  3683. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3684. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3685. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3686. continue
  3687. }
  3688. _content = $$("div", {
  3689. className: "U_MD_D_KO",
  3690. "onmousedown": U.UF.C.closure(function (obj) {
  3691. //防止拖动图标即打开了桌面应用
  3692. U.MD.D.click(this, obj);
  3693. }, [_hkTeacherDeskIconInfo[i]]),
  3694. "onclick": U.UF.C.closure(function (obj) {
  3695. //防止拖动图标即打开了桌面应用
  3696. U.MD.D.click(this, obj);
  3697. }, [_hkTeacherDeskIconInfo[i]])
  3698. }, _frag); //
  3699. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3700. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3701. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3702. }
  3703. } else if ((_type == 1 || _type == 4) && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  3704. for (i = 0; i < _tycyTeacherDeskIconInfo.length; i++) {
  3705. if(_role === 0 && _tycyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3706. continue
  3707. }
  3708. _content = $$("div", {
  3709. className: "U_MD_D_KO",
  3710. "onmousedown": U.UF.C.closure(function (obj) {
  3711. //防止拖动图标即打开了桌面应用
  3712. U.MD.D.click(this, obj);
  3713. }, [_tycyTeacherDeskIconInfo[i]]),
  3714. "onclick": U.UF.C.closure(function (obj) {
  3715. //防止拖动图标即打开了桌面应用
  3716. U.MD.D.click(this, obj);
  3717. }, [_tycyTeacherDeskIconInfo[i]])
  3718. }, _frag); //
  3719. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3720. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyTeacherDeskIconInfo[i].style }, _iconcontent);
  3721. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3722. }
  3723. } else if ((_type == 1 || _type == 4) && (_oid == "9a8076a2-469a-11f0-b60f-005056924926")) {
  3724. for (i = 0; i < _ckcpsTeacherDeskIconInfo.length; i++) {
  3725. if(_role === 0 && _ckcpsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3726. continue
  3727. }
  3728. _content = $$("div", {
  3729. className: "U_MD_D_KO",
  3730. "onmousedown": U.UF.C.closure(function (obj) {
  3731. //防止拖动图标即打开了桌面应用
  3732. U.MD.D.click(this, obj);
  3733. }, [_ckcpsTeacherDeskIconInfo[i]]),
  3734. "onclick": U.UF.C.closure(function (obj) {
  3735. //防止拖动图标即打开了桌面应用
  3736. U.MD.D.click(this, obj);
  3737. }, [_ckcpsTeacherDeskIconInfo[i]])
  3738. }, _frag); //
  3739. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3740. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ckcpsTeacherDeskIconInfo[i].style }, _iconcontent);
  3741. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ckcpsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3742. }
  3743. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3744. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3745. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3746. continue
  3747. }
  3748. _content = $$("div", {
  3749. className: "U_MD_D_KO",
  3750. "onmousedown": U.UF.C.closure(function (obj) {
  3751. //防止拖动图标即打开了桌面应用
  3752. U.MD.D.click(this, obj);
  3753. }, [_hkaceTeacherDeskIconInfo[i]]),
  3754. "onclick": U.UF.C.closure(function (obj) {
  3755. //防止拖动图标即打开了桌面应用
  3756. U.MD.D.click(this, obj);
  3757. }, [_hkaceTeacherDeskIconInfo[i]])
  3758. }, _frag); //
  3759. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3760. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3761. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3762. }
  3763. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3764. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3765. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3766. continue
  3767. }
  3768. _content = $$("div", {
  3769. className: "U_MD_D_KO",
  3770. "onmousedown": U.UF.C.closure(function (obj) {
  3771. //防止拖动图标即打开了桌面应用
  3772. U.MD.D.click(this, obj);
  3773. }, [_cocobizTeacherDeskIconInfo[i]]),
  3774. "onclick": U.UF.C.closure(function (obj) {
  3775. //防止拖动图标即打开了桌面应用
  3776. U.MD.D.click(this, obj);
  3777. }, [_cocobizTeacherDeskIconInfo[i]])
  3778. }, _frag); //
  3779. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3780. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3781. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3782. }
  3783. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3784. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3785. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3786. continue
  3787. }
  3788. _content = $$("div", {
  3789. className: "U_MD_D_KO",
  3790. "onmousedown": U.UF.C.closure(function (obj) {
  3791. //防止拖动图标即打开了桌面应用
  3792. U.MD.D.click(this, obj);
  3793. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3794. "onclick": U.UF.C.closure(function (obj) {
  3795. //防止拖动图标即打开了桌面应用
  3796. U.MD.D.click(this, obj);
  3797. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3798. }, _frag); //
  3799. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3800. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3801. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3802. }
  3803. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3804. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3805. _content = $$("div", {
  3806. className: "U_MD_D_KO",
  3807. "onmousedown": U.UF.C.closure(function (obj) {
  3808. //防止拖动图标即打开了桌面应用
  3809. U.MD.D.click(this, obj);
  3810. }, [_gdjgAdminDeskIconInfo[i]]),
  3811. "onclick": U.UF.C.closure(function (obj) {
  3812. //防止拖动图标即打开了桌面应用
  3813. U.MD.D.click(this, obj);
  3814. }, [_gdjgAdminDeskIconInfo[i]])
  3815. }, _frag); //
  3816. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3817. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3818. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3819. }
  3820. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3821. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3822. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3823. continue
  3824. }
  3825. _content = $$("div", {
  3826. className: "U_MD_D_KO",
  3827. "onmousedown": U.UF.C.closure(function (obj) {
  3828. //防止拖动图标即打开了桌面应用
  3829. U.MD.D.click(this, obj);
  3830. }, [_gdjgTeacherDeskIconInfo[i]]),
  3831. "onclick": U.UF.C.closure(function (obj) {
  3832. //防止拖动图标即打开了桌面应用
  3833. U.MD.D.click(this, obj);
  3834. }, [_gdjgTeacherDeskIconInfo[i]])
  3835. }, _frag); //
  3836. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3837. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3838. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3839. }
  3840. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3841. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3842. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3843. continue
  3844. }
  3845. _content = $$("div", {
  3846. className: "U_MD_D_KO",
  3847. "onmousedown": U.UF.C.closure(function (obj) {
  3848. //防止拖动图标即打开了桌面应用
  3849. U.MD.D.click(this, obj);
  3850. }, [_szherTeacherDeskIconInfo[i]]),
  3851. "onclick": U.UF.C.closure(function (obj) {
  3852. //防止拖动图标即打开了桌面应用
  3853. U.MD.D.click(this, obj);
  3854. }, [_szherTeacherDeskIconInfo[i]])
  3855. }, _frag); //
  3856. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3857. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3858. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3859. }
  3860. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3861. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  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. }, [_heyuannAdminDeskIconInfo[i]]),
  3868. "onclick": U.UF.C.closure(function (obj) {
  3869. //防止拖动图标即打开了桌面应用
  3870. U.MD.D.click(this, obj);
  3871. }, [_heyuannAdminDeskIconInfo[i]])
  3872. }, _frag); //
  3873. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3874. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3875. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3876. }
  3877. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3878. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3879. if(_role === 0 && _heyuanTeacherDeskIconInfo[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. }, [_heyuanTeacherDeskIconInfo[i]]),
  3888. "onclick": U.UF.C.closure(function (obj) {
  3889. //防止拖动图标即打开了桌面应用
  3890. U.MD.D.click(this, obj);
  3891. }, [_heyuanTeacherDeskIconInfo[i]])
  3892. }, _frag); //
  3893. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3894. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3895. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3896. } //
  3897. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3898. for (i = 0; i < _dseiAdminDeskIconInfo.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. }, [_dseiAdminDeskIconInfo[i]]),
  3905. "onclick": U.UF.C.closure(function (obj) {
  3906. //防止拖动图标即打开了桌面应用
  3907. U.MD.D.click(this, obj);
  3908. }, [_dseiAdminDeskIconInfo[i]])
  3909. }, _frag); //
  3910. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3911. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3912. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3913. }
  3914. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3915. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3916. if(_role === 0 && _dseiTeacherDeskIconInfo[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. }, [_dseiTeacherDeskIconInfo[i]]),
  3925. "onclick": U.UF.C.closure(function (obj) {
  3926. //防止拖动图标即打开了桌面应用
  3927. U.MD.D.click(this, obj);
  3928. }, [_dseiTeacherDeskIconInfo[i]])
  3929. }, _frag); //
  3930. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3931. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3932. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3933. } //
  3934. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3935. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3936. _content = $$("div", {
  3937. className: "U_MD_D_KO",
  3938. "onmousedown": U.UF.C.closure(function (obj) {
  3939. //防止拖动图标即打开了桌面应用
  3940. U.MD.D.click(this, obj);
  3941. }, [_chjyjAdminDeskIconInfo[i]]),
  3942. "onclick": U.UF.C.closure(function (obj) {
  3943. //防止拖动图标即打开了桌面应用
  3944. U.MD.D.click(this, obj);
  3945. }, [_chjyjAdminDeskIconInfo[i]])
  3946. }, _frag); //
  3947. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3948. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3949. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3950. }//
  3951. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3952. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3953. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3954. continue
  3955. }
  3956. _content = $$("div", {
  3957. className: "U_MD_D_KO",
  3958. "onmousedown": U.UF.C.closure(function (obj) {
  3959. //防止拖动图标即打开了桌面应用
  3960. U.MD.D.click(this, obj);
  3961. }, [_chjyjTeacherDeskIconInfo[i]]),
  3962. "onclick": U.UF.C.closure(function (obj) {
  3963. //防止拖动图标即打开了桌面应用
  3964. U.MD.D.click(this, obj);
  3965. }, [_chjyjTeacherDeskIconInfo[i]])
  3966. }, _frag); //
  3967. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3968. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3969. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3970. }
  3971. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3972. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3973. _content = $$("div", {
  3974. className: "U_MD_D_KO",
  3975. "onmousedown": U.UF.C.closure(function (obj) {
  3976. //防止拖动图标即打开了桌面应用
  3977. U.MD.D.click(this, obj);
  3978. }, [_szjkyAdminDeskIconInfo[i]]),
  3979. "onclick": U.UF.C.closure(function (obj) {
  3980. //防止拖动图标即打开了桌面应用
  3981. U.MD.D.click(this, obj);
  3982. }, [_szjkyAdminDeskIconInfo[i]])
  3983. }, _frag); //
  3984. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3985. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3986. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3987. }//
  3988. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3989. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3990. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3991. continue
  3992. }
  3993. _content = $$("div", {
  3994. className: "U_MD_D_KO",
  3995. "onmousedown": U.UF.C.closure(function (obj) {
  3996. //防止拖动图标即打开了桌面应用
  3997. U.MD.D.click(this, obj);
  3998. }, [_szjkyTeacherDeskIconInfo[i]]),
  3999. "onclick": U.UF.C.closure(function (obj) {
  4000. //防止拖动图标即打开了桌面应用
  4001. U.MD.D.click(this, obj);
  4002. }, [_szjkyTeacherDeskIconInfo[i]])
  4003. }, _frag); //
  4004. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4005. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  4006. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4007. }
  4008. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  4009. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  4010. _content = $$("div", {
  4011. className: "U_MD_D_KO",
  4012. "onmousedown": U.UF.C.closure(function (obj) {
  4013. //防止拖动图标即打开了桌面应用
  4014. U.MD.D.click(this, obj);
  4015. }, [_x020201AdminDeskIconInfo[i]]),
  4016. "onclick": U.UF.C.closure(function (obj) {
  4017. //防止拖动图标即打开了桌面应用
  4018. U.MD.D.click(this, obj);
  4019. }, [_x020201AdminDeskIconInfo[i]])
  4020. }, _frag); //
  4021. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4022. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  4023. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  4024. }//
  4025. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  4026. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  4027. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4028. continue
  4029. }
  4030. _content = $$("div", {
  4031. className: "U_MD_D_KO",
  4032. "onmousedown": U.UF.C.closure(function (obj) {
  4033. //防止拖动图标即打开了桌面应用
  4034. U.MD.D.click(this, obj);
  4035. }, [_x020201TeacherDeskIconInfo[i]]),
  4036. "onclick": U.UF.C.closure(function (obj) {
  4037. //防止拖动图标即打开了桌面应用
  4038. U.MD.D.click(this, obj);
  4039. }, [_x020201TeacherDeskIconInfo[i]])
  4040. }, _frag); //
  4041. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4042. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  4043. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  4044. }
  4045. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  4046. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  4047. _content = $$("div", {
  4048. className: "U_MD_D_KO",
  4049. "onmousedown": U.UF.C.closure(function (obj) {
  4050. //防止拖动图标即打开了桌面应用
  4051. U.MD.D.click(this, obj);
  4052. }, [_SCNUETAdminDeskIconInfo[i]]),
  4053. "onclick": U.UF.C.closure(function (obj) {
  4054. //防止拖动图标即打开了桌面应用
  4055. U.MD.D.click(this, obj);
  4056. }, [_SCNUETAdminDeskIconInfo[i]])
  4057. }, _frag); //
  4058. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4059. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  4060. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  4061. }//
  4062. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  4063. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  4064. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4065. continue
  4066. }
  4067. _content = $$("div", {
  4068. className: "U_MD_D_KO",
  4069. "onmousedown": U.UF.C.closure(function (obj) {
  4070. //防止拖动图标即打开了桌面应用
  4071. U.MD.D.click(this, obj);
  4072. }, [_SCNUETTeacherDeskIconInfo[i]]),
  4073. "onclick": U.UF.C.closure(function (obj) {
  4074. //防止拖动图标即打开了桌面应用
  4075. U.MD.D.click(this, obj);
  4076. }, [_SCNUETTeacherDeskIconInfo[i]])
  4077. }, _frag); //
  4078. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4079. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  4080. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  4081. }
  4082. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  4083. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  4084. _content = $$("div", {
  4085. className: "U_MD_D_KO",
  4086. "onmousedown": U.UF.C.closure(function (obj) {
  4087. //防止拖动图标即打开了桌面应用
  4088. U.MD.D.click(this, obj);
  4089. }, [_futianAdminDeskIconInfo[i]]),
  4090. "onclick": U.UF.C.closure(function (obj) {
  4091. //防止拖动图标即打开了桌面应用
  4092. U.MD.D.click(this, obj);
  4093. }, [_futianAdminDeskIconInfo[i]])
  4094. }, _frag); //
  4095. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4096. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  4097. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  4098. }
  4099. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  4100. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  4101. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4102. continue
  4103. }
  4104. _content = $$("div", {
  4105. className: "U_MD_D_KO",
  4106. "onmousedown": U.UF.C.closure(function (obj) {
  4107. //防止拖动图标即打开了桌面应用
  4108. U.MD.D.click(this, obj);
  4109. }, [_futianTeacherDeskIconInfo[i]]),
  4110. "onclick": U.UF.C.closure(function (obj) {
  4111. //防止拖动图标即打开了桌面应用
  4112. U.MD.D.click(this, obj);
  4113. }, [_futianTeacherDeskIconInfo[i]])
  4114. }, _frag); //
  4115. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4116. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  4117. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  4118. }
  4119. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  4120. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  4121. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  4122. continue
  4123. }
  4124. _content = $$("div", {
  4125. className: "U_MD_D_KO",
  4126. "onmousedown": U.UF.C.closure(function (obj) {
  4127. //防止拖动图标即打开了桌面应用
  4128. U.MD.D.click(this, obj);
  4129. }, [_MingdeTeacherDeskIcon[i]]),
  4130. "onclick": U.UF.C.closure(function (obj) {
  4131. //防止拖动图标即打开了桌面应用
  4132. U.MD.D.click(this, obj);
  4133. }, [_MingdeTeacherDeskIcon[i]])
  4134. }, _frag); //
  4135. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4136. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  4137. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  4138. }
  4139. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  4140. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  4141. _content = $$("div", {
  4142. className: "U_MD_D_KO",
  4143. "onmousedown": U.UF.C.closure(function (obj) {
  4144. //防止拖动图标即打开了桌面应用
  4145. U.MD.D.click(this, obj);
  4146. }, [_lhsAdminDesktopIconInfo[i]]),
  4147. "onclick": U.UF.C.closure(function (obj) {
  4148. //防止拖动图标即打开了桌面应用
  4149. U.MD.D.click(this, obj);
  4150. }, [_lhsAdminDesktopIconInfo[i]])
  4151. }, _frag); //
  4152. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4153. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  4154. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  4155. }
  4156. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  4157. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  4158. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4159. continue
  4160. }
  4161. _content = $$("div", {
  4162. className: "U_MD_D_KO",
  4163. "onmousedown": U.UF.C.closure(function (obj) {
  4164. //防止拖动图标即打开了桌面应用
  4165. U.MD.D.click(this, obj);
  4166. }, [_lhsteacherDesktopIconInfo[i]]),
  4167. "onclick": U.UF.C.closure(function (obj) {
  4168. //防止拖动图标即打开了桌面应用
  4169. U.MD.D.click(this, obj);
  4170. }, [_lhsteacherDesktopIconInfo[i]])
  4171. }, _frag); //
  4172. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4173. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  4174. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  4175. }
  4176. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  4177. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  4178. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  4179. continue
  4180. }
  4181. _content = $$("div", {
  4182. className: "U_MD_D_KO",
  4183. "onmousedown": U.UF.C.closure(function (obj) {
  4184. //防止拖动图标即打开了桌面应用
  4185. U.MD.D.click(this, obj);
  4186. }, [_zhoujiateacherDesktopIconInfo[i]]),
  4187. "onclick": U.UF.C.closure(function (obj) {
  4188. //防止拖动图标即打开了桌面应用
  4189. U.MD.D.click(this, obj);
  4190. }, [_zhoujiateacherDesktopIconInfo[i]])
  4191. }, _frag); //
  4192. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4193. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  4194. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  4195. }
  4196. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  4197. for (i = 0; i < _hanDeskIcon.length; i++) {
  4198. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  4199. continue
  4200. }
  4201. _content = $$("div", {
  4202. className: "U_MD_D_KO",
  4203. "onmousedown": U.UF.C.closure(function (obj) {
  4204. //防止拖动图标即打开了桌面应用
  4205. U.MD.D.click(this, obj);
  4206. }, [_hanDeskIcon[i]]),
  4207. "onclick": U.UF.C.closure(function (obj) {
  4208. //防止拖动图标即打开了桌面应用
  4209. U.MD.D.click(this, obj);
  4210. }, [_hanDeskIcon[i]])
  4211. }, _frag); //
  4212. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4213. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  4214. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  4215. }
  4216. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  4217. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  4218. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  4219. continue
  4220. }
  4221. _content = $$("div", {
  4222. className: "U_MD_D_KO",
  4223. "onmousedown": U.UF.C.closure(function (obj) {
  4224. //防止拖动图标即打开了桌面应用
  4225. U.MD.D.click(this, obj);
  4226. }, [_orgStemDeskIcon[i]]),
  4227. "onclick": U.UF.C.closure(function (obj) {
  4228. //防止拖动图标即打开了桌面应用
  4229. U.MD.D.click(this, obj);
  4230. }, [_orgStemDeskIcon[i]])
  4231. }, _frag); //
  4232. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4233. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  4234. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  4235. }
  4236. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  4237. for (i = 0; i < _szulsDeskIcon.length; i++) {
  4238. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  4239. continue
  4240. }
  4241. _content = $$("div", {
  4242. className: "U_MD_D_KO",
  4243. "onmousedown": U.UF.C.closure(function (obj) {
  4244. //防止拖动图标即打开了桌面应用
  4245. U.MD.D.click(this, obj);
  4246. }, [_szulsDeskIcon[i]]),
  4247. "onclick": U.UF.C.closure(function (obj) {
  4248. //防止拖动图标即打开了桌面应用
  4249. U.MD.D.click(this, obj);
  4250. }, [_szulsDeskIcon[i]])
  4251. }, _frag); //
  4252. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4253. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  4254. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  4255. }
  4256. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  4257. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  4258. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  4259. continue
  4260. }
  4261. _content = $$("div", {
  4262. className: "U_MD_D_KO",
  4263. "onmousedown": U.UF.C.closure(function (obj) {
  4264. //防止拖动图标即打开了桌面应用
  4265. U.MD.D.click(this, obj);
  4266. }, [_orgDesktopIconInfo[i]]),
  4267. "onclick": U.UF.C.closure(function (obj) {
  4268. //防止拖动图标即打开了桌面应用
  4269. U.MD.D.click(this, obj);
  4270. }, [_orgDesktopIconInfo[i]])
  4271. }, _frag); //
  4272. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4273. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  4274. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  4275. }
  4276. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4277. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  4278. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  4279. continue
  4280. }
  4281. _content = $$("div", {
  4282. className: "U_MD_D_KO",
  4283. "onmousedown": U.UF.C.closure(function (obj) {
  4284. //防止拖动图标即打开了桌面应用
  4285. U.MD.D.click(this, obj);
  4286. }, [_schoolDesktopIconInfo[i]]),
  4287. "onclick": U.UF.C.closure(function (obj) {
  4288. //防止拖动图标即打开了桌面应用
  4289. U.MD.D.click(this, obj);
  4290. }, [_schoolDesktopIconInfo[i]])
  4291. }, _frag); //
  4292. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4293. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  4294. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  4295. }
  4296. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4297. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  4298. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4299. continue
  4300. }
  4301. _content = $$("div", {
  4302. className: "U_MD_D_KO",
  4303. "onmousedown": U.UF.C.closure(function (obj) {
  4304. //防止拖动图标即打开了桌面应用
  4305. U.MD.D.click(this, obj);
  4306. }, [_GMteacherDesktopIconInfo[i]]),
  4307. "onclick": U.UF.C.closure(function (obj) {
  4308. //防止拖动图标即打开了桌面应用
  4309. U.MD.D.click(this, obj);
  4310. }, [_GMteacherDesktopIconInfo[i]])
  4311. }, _frag); //
  4312. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4313. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  4314. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  4315. }
  4316. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  4317. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  4318. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4319. continue
  4320. }
  4321. _content = $$("div", {
  4322. className: "U_MD_D_KO",
  4323. "onmousedown": U.UF.C.closure(function (obj) {
  4324. //防止拖动图标即打开了桌面应用
  4325. U.MD.D.click(this, obj);
  4326. }, [_SONGteacherDesktopIconInfo[i]]),
  4327. "onclick": U.UF.C.closure(function (obj) {
  4328. //防止拖动图标即打开了桌面应用
  4329. U.MD.D.click(this, obj);
  4330. }, [_SONGteacherDesktopIconInfo[i]])
  4331. }, _frag); //
  4332. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4333. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  4334. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  4335. }
  4336. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4337. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  4338. _content = $$("div", {
  4339. className: "U_MD_D_KO",
  4340. "onmousedown": U.UF.C.closure(function (obj) {
  4341. //防止拖动图标即打开了桌面应用
  4342. U.MD.D.click(this, obj);
  4343. }, [_GMstudentDesktopIconInfo[i]]),
  4344. "onclick": U.UF.C.closure(function (obj) {
  4345. //防止拖动图标即打开了桌面应用
  4346. U.MD.D.click(this, obj);
  4347. }, [_GMstudentDesktopIconInfo[i]])
  4348. }, _frag); //
  4349. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4350. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  4351. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  4352. }
  4353. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  4354. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  4355. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4356. continue
  4357. }
  4358. _content = $$("div", {
  4359. className: "U_MD_D_KO",
  4360. "onmousedown": U.UF.C.closure(function (obj) {
  4361. //防止拖动图标即打开了桌面应用
  4362. U.MD.D.click(this, obj);
  4363. }, [_tcTeacherDeskIconInfo[i]]),
  4364. "onclick": U.UF.C.closure(function (obj) {
  4365. //防止拖动图标即打开了桌面应用
  4366. U.MD.D.click(this, obj);
  4367. }, [_tcTeacherDeskIconInfo[i]])
  4368. }, _frag); //
  4369. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4370. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  4371. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  4372. }
  4373. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  4374. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  4375. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4376. continue
  4377. }
  4378. _content = $$("div", {
  4379. className: "U_MD_D_KO",
  4380. "onmousedown": U.UF.C.closure(function (obj) {
  4381. //防止拖动图标即打开了桌面应用
  4382. U.MD.D.click(this, obj);
  4383. }, [_tcOrganizerDeskIconInfo[i]]),
  4384. "onclick": U.UF.C.closure(function (obj) {
  4385. //防止拖动图标即打开了桌面应用
  4386. U.MD.D.click(this, obj);
  4387. }, [_tcOrganizerDeskIconInfo[i]])
  4388. }, _frag); //
  4389. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4390. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  4391. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4392. }
  4393. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  4394. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  4395. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4396. continue
  4397. }
  4398. _content = $$("div", {
  4399. className: "U_MD_D_KO",
  4400. "onmousedown": U.UF.C.closure(function (obj) {
  4401. //防止拖动图标即打开了桌面应用
  4402. U.MD.D.click(this, obj);
  4403. }, [_szscTeacherDeskIconInfo[i]]),
  4404. "onclick": U.UF.C.closure(function (obj) {
  4405. //防止拖动图标即打开了桌面应用
  4406. U.MD.D.click(this, obj);
  4407. }, [_szscTeacherDeskIconInfo[i]])
  4408. }, _frag); //
  4409. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4410. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  4411. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  4412. }
  4413. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  4414. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  4415. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4416. continue
  4417. }
  4418. _content = $$("div", {
  4419. className: "U_MD_D_KO",
  4420. "onmousedown": U.UF.C.closure(function (obj) {
  4421. //防止拖动图标即打开了桌面应用
  4422. U.MD.D.click(this, obj);
  4423. }, [_szscOrganizerDeskIconInfo[i]]),
  4424. "onclick": U.UF.C.closure(function (obj) {
  4425. //防止拖动图标即打开了桌面应用
  4426. U.MD.D.click(this, obj);
  4427. }, [_szscOrganizerDeskIconInfo[i]])
  4428. }, _frag); //
  4429. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4430. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  4431. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4432. }
  4433. } else if ((_type == 1 || _type == 4) && _org == "7cc601a0-fafc-4116-a805-0adbacf7a38d") {
  4434. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  4435. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4436. continue
  4437. }
  4438. _content = $$("div", {
  4439. className: "U_MD_D_KO",
  4440. "onmousedown": U.UF.C.closure(function (obj) {
  4441. //防止拖动图标即打开了桌面应用
  4442. U.MD.D.click(this, obj);
  4443. }, [_nsfxTeacherDeskIconInfo[i]]),
  4444. "onclick": U.UF.C.closure(function (obj) {
  4445. //防止拖动图标即打开了桌面应用
  4446. U.MD.D.click(this, obj);
  4447. }, [_nsfxTeacherDeskIconInfo[i]])
  4448. }, _frag); //
  4449. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4450. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4451. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4452. }
  4453. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4454. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4455. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4456. continue
  4457. }
  4458. _content = $$("div", {
  4459. className: "U_MD_D_KO",
  4460. "onmousedown": U.UF.C.closure(function (obj) {
  4461. //防止拖动图标即打开了桌面应用
  4462. U.MD.D.click(this, obj);
  4463. }, [_stiaTeacherDeskIconInfo[i]]),
  4464. "onclick": U.UF.C.closure(function (obj) {
  4465. //防止拖动图标即打开了桌面应用
  4466. U.MD.D.click(this, obj);
  4467. }, [_stiaTeacherDeskIconInfo[i]])
  4468. }, _frag); //
  4469. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4470. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4471. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4472. }
  4473. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4474. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4475. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4476. continue
  4477. }
  4478. _content = $$("div", {
  4479. className: "U_MD_D_KO",
  4480. "onmousedown": U.UF.C.closure(function (obj) {
  4481. //防止拖动图标即打开了桌面应用
  4482. U.MD.D.click(this, obj);
  4483. }, [_szdjgTeacherDeskIconInfo[i]]),
  4484. "onclick": U.UF.C.closure(function (obj) {
  4485. //防止拖动图标即打开了桌面应用
  4486. U.MD.D.click(this, obj);
  4487. }, [_szdjgTeacherDeskIconInfo[i]])
  4488. }, _frag); //
  4489. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4490. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4491. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4492. }
  4493. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4494. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4495. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4496. continue
  4497. }
  4498. _content = $$("div", {
  4499. className: "U_MD_D_KO",
  4500. "onmousedown": U.UF.C.closure(function (obj) {
  4501. //防止拖动图标即打开了桌面应用
  4502. U.MD.D.click(this, obj);
  4503. }, [_x010607TeacherDeskIconInfo[i]]),
  4504. "onclick": U.UF.C.closure(function (obj) {
  4505. //防止拖动图标即打开了桌面应用
  4506. U.MD.D.click(this, obj);
  4507. }, [_x010607TeacherDeskIconInfo[i]])
  4508. }, _frag); //
  4509. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4510. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4511. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4512. }
  4513. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4514. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4515. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4516. continue
  4517. }
  4518. _content = $$("div", {
  4519. className: "U_MD_D_KO",
  4520. "onmousedown": U.UF.C.closure(function (obj) {
  4521. //防止拖动图标即打开了桌面应用
  4522. U.MD.D.click(this, obj);
  4523. }, [_xhlyTeacherDeskIconInfo[i]]),
  4524. "onclick": U.UF.C.closure(function (obj) {
  4525. //防止拖动图标即打开了桌面应用
  4526. U.MD.D.click(this, obj);
  4527. }, [_xhlyTeacherDeskIconInfo[i]])
  4528. }, _frag); //
  4529. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4530. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4531. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4532. }
  4533. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4534. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4535. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4536. continue
  4537. }
  4538. _content = $$("div", {
  4539. className: "U_MD_D_KO",
  4540. "onmousedown": U.UF.C.closure(function (obj) {
  4541. //防止拖动图标即打开了桌面应用
  4542. U.MD.D.click(this, obj);
  4543. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4544. "onclick": U.UF.C.closure(function (obj) {
  4545. //防止拖动图标即打开了桌面应用
  4546. U.MD.D.click(this, obj);
  4547. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4548. }, _frag); //
  4549. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4550. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4551. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4552. }
  4553. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4554. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4555. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4556. continue
  4557. }
  4558. _content = $$("div", {
  4559. className: "U_MD_D_KO",
  4560. "onmousedown": U.UF.C.closure(function (obj) {
  4561. //防止拖动图标即打开了桌面应用
  4562. U.MD.D.click(this, obj);
  4563. }, [_x010503TeacherDeskIconInfo[i]]),
  4564. "onclick": U.UF.C.closure(function (obj) {
  4565. //防止拖动图标即打开了桌面应用
  4566. U.MD.D.click(this, obj);
  4567. }, [_x010503TeacherDeskIconInfo[i]])
  4568. }, _frag); //
  4569. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4570. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4571. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4572. }
  4573. } else if ((_type == 1 || _type == 4) && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  4574. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4575. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4576. continue
  4577. }
  4578. _content = $$("div", {
  4579. className: "U_MD_D_KO",
  4580. "onmousedown": U.UF.C.closure(function (obj) {
  4581. //防止拖动图标即打开了桌面应用
  4582. U.MD.D.click(this, obj);
  4583. }, [_x010504TeacherDeskIconInfo[i]]),
  4584. "onclick": U.UF.C.closure(function (obj) {
  4585. //防止拖动图标即打开了桌面应用
  4586. U.MD.D.click(this, obj);
  4587. }, [_x010504TeacherDeskIconInfo[i]])
  4588. }, _frag); //
  4589. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4590. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4591. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4592. }
  4593. } else if ((_type == 1 || _type == 4) && _oid == "8406b214-085f-11f0-b508-005056924926") {
  4594. for (i = 0; i < _x010505TeacherDeskIconInfo.length; i++) {
  4595. if(_role === 0 && _x010505TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4596. continue
  4597. }
  4598. _content = $$("div", {
  4599. className: "U_MD_D_KO",
  4600. "onmousedown": U.UF.C.closure(function (obj) {
  4601. //防止拖动图标即打开了桌面应用
  4602. U.MD.D.click(this, obj);
  4603. }, [_x010505TeacherDeskIconInfo[i]]),
  4604. "onclick": U.UF.C.closure(function (obj) {
  4605. //防止拖动图标即打开了桌面应用
  4606. U.MD.D.click(this, obj);
  4607. }, [_x010505TeacherDeskIconInfo[i]])
  4608. }, _frag); //
  4609. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4610. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505TeacherDeskIconInfo[i].style }, _iconcontent);
  4611. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505TeacherDeskIconInfo[i].Name }, _iconcontent);
  4612. }
  4613. } else if ((_type == 1 || _type == 4) && _oid == "bc239322-ffb2-11ef-b508-005056924926") {
  4614. for (i = 0; i < _x010404TeacherDeskIconInfo.length; i++) {
  4615. if(_role === 0 && _x010404TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4616. continue
  4617. }
  4618. _content = $$("div", {
  4619. className: "U_MD_D_KO",
  4620. "onmousedown": U.UF.C.closure(function (obj) {
  4621. //防止拖动图标即打开了桌面应用
  4622. U.MD.D.click(this, obj);
  4623. }, [_x010404TeacherDeskIconInfo[i]]),
  4624. "onclick": U.UF.C.closure(function (obj) {
  4625. //防止拖动图标即打开了桌面应用
  4626. U.MD.D.click(this, obj);
  4627. }, [_x010404TeacherDeskIconInfo[i]])
  4628. }, _frag); //
  4629. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4630. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404TeacherDeskIconInfo[i].style }, _iconcontent);
  4631. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404TeacherDeskIconInfo[i].Name }, _iconcontent);
  4632. }
  4633. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4634. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4635. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4636. continue
  4637. }
  4638. _content = $$("div", {
  4639. className: "U_MD_D_KO",
  4640. "onmousedown": U.UF.C.closure(function (obj) {
  4641. //防止拖动图标即打开了桌面应用
  4642. U.MD.D.click(this, obj);
  4643. }, [_x010204TeacherDeskIconInfo[i]]),
  4644. "onclick": U.UF.C.closure(function (obj) {
  4645. //防止拖动图标即打开了桌面应用
  4646. U.MD.D.click(this, obj);
  4647. }, [_x010204TeacherDeskIconInfo[i]])
  4648. }, _frag); //
  4649. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4650. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4651. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4652. }
  4653. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4654. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4655. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4656. continue
  4657. }
  4658. _content = $$("div", {
  4659. className: "U_MD_D_KO",
  4660. "onmousedown": U.UF.C.closure(function (obj) {
  4661. //防止拖动图标即打开了桌面应用
  4662. U.MD.D.click(this, obj);
  4663. }, [_x320101TeacherDeskIconInfo[i]]),
  4664. "onclick": U.UF.C.closure(function (obj) {
  4665. //防止拖动图标即打开了桌面应用
  4666. U.MD.D.click(this, obj);
  4667. }, [_x320101TeacherDeskIconInfo[i]])
  4668. }, _frag); //
  4669. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4670. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4671. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4672. }
  4673. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4674. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4675. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4676. continue
  4677. }
  4678. _content = $$("div", {
  4679. className: "U_MD_D_KO",
  4680. "onmousedown": U.UF.C.closure(function (obj) {
  4681. //防止拖动图标即打开了桌面应用
  4682. U.MD.D.click(this, obj);
  4683. }, [_trailTeacherDeskIconInfo[i]]),
  4684. "onclick": U.UF.C.closure(function (obj) {
  4685. //防止拖动图标即打开了桌面应用
  4686. U.MD.D.click(this, obj);
  4687. }, [_trailTeacherDeskIconInfo[i]])
  4688. }, _frag); //
  4689. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4690. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4691. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4692. }
  4693. } else if ((_type == 1 || _type == 4) && _oid == "65ad80f0-16bb-11f0-a66a-005056924926") {
  4694. for (i = 0; i < _trialTeacherDeskIconInfo.length; i++) {
  4695. if(_role === 0 && _trialTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4696. continue
  4697. }
  4698. _content = $$("div", {
  4699. className: "U_MD_D_KO",
  4700. "onmousedown": U.UF.C.closure(function (obj) {
  4701. //防止拖动图标即打开了桌面应用
  4702. U.MD.D.click(this, obj);
  4703. }, [_trialTeacherDeskIconInfo[i]]),
  4704. "onclick": U.UF.C.closure(function (obj) {
  4705. //防止拖动图标即打开了桌面应用
  4706. U.MD.D.click(this, obj);
  4707. }, [_trialTeacherDeskIconInfo[i]])
  4708. }, _frag); //
  4709. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4710. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialTeacherDeskIconInfo[i].style }, _iconcontent);
  4711. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialTeacherDeskIconInfo[i].Name }, _iconcontent);
  4712. }
  4713. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4714. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4715. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4716. continue
  4717. }
  4718. _content = $$("div", {
  4719. className: "U_MD_D_KO",
  4720. "onmousedown": U.UF.C.closure(function (obj) {
  4721. //防止拖动图标即打开了桌面应用
  4722. U.MD.D.click(this, obj);
  4723. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4724. "onclick": U.UF.C.closure(function (obj) {
  4725. //防止拖动图标即打开了桌面应用
  4726. U.MD.D.click(this, obj);
  4727. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4728. }, _frag); //
  4729. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4730. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4731. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4732. }
  4733. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4734. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4735. if(_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4736. continue
  4737. }
  4738. _content = $$("div", {
  4739. className: "U_MD_D_KO",
  4740. "onmousedown": U.UF.C.closure(function (obj) {
  4741. //防止拖动图标即打开了桌面应用
  4742. U.MD.D.click(this, obj);
  4743. }, [_szsyTeacherDeskIconInfo[i]]),
  4744. "onclick": U.UF.C.closure(function (obj) {
  4745. //防止拖动图标即打开了桌面应用
  4746. U.MD.D.click(this, obj);
  4747. }, [_szsyTeacherDeskIconInfo[i]])
  4748. }, _frag); //
  4749. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4750. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4751. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4752. }
  4753. } else if ((_type == 1 || _type == 4) && _org == "eed08ac6-7269-11f0-9c7b-005056924926") {
  4754. for (i = 0; i < _PREPAITeacherDeskIcon.length; i++) {
  4755. if(_role === 0 && _PREPAITeacherDeskIcon[i].Url == 'testTeacher'){
  4756. continue
  4757. }
  4758. _content = $$("div", {
  4759. className: "U_MD_D_KO",
  4760. "onmousedown": U.UF.C.closure(function (obj) {
  4761. //防止拖动图标即打开了桌面应用
  4762. U.MD.D.click(this, obj);
  4763. }, [_PREPAITeacherDeskIcon[i]]),
  4764. "onclick": U.UF.C.closure(function (obj) {
  4765. //防止拖动图标即打开了桌面应用
  4766. U.MD.D.click(this, obj);
  4767. }, [_PREPAITeacherDeskIcon[i]])
  4768. }, _frag); //
  4769. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4770. $$("div", { className: "U_MD_D_KOS U_Img", "style": _PREPAITeacherDeskIcon[i].style }, _iconcontent);
  4771. $$("div", { className: "U_MD_D_KOX", "innerHTML": _PREPAITeacherDeskIcon[i].Name }, _iconcontent);
  4772. }
  4773. } else if ((_type == 1 || _type == 4) && _org == "eaee75a4-ff2e-11ef-b508-005056924926") {
  4774. for (i = 0; i < _demoCocoTeacherDeskIconInfo.length; i++) {
  4775. if(_role === 0 && _demoCocoTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4776. continue
  4777. }
  4778. _content = $$("div", {
  4779. className: "U_MD_D_KO",
  4780. "onmousedown": U.UF.C.closure(function (obj) {
  4781. //防止拖动图标即打开了桌面应用
  4782. U.MD.D.click(this, obj);
  4783. }, [_demoCocoTeacherDeskIconInfo[i]]),
  4784. "onclick": U.UF.C.closure(function (obj) {
  4785. //防止拖动图标即打开了桌面应用
  4786. U.MD.D.click(this, obj);
  4787. }, [_demoCocoTeacherDeskIconInfo[i]])
  4788. }, _frag); //
  4789. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4790. $$("div", { className: "U_MD_D_KOS U_Img", "style": _demoCocoTeacherDeskIconInfo[i].style }, _iconcontent);
  4791. $$("div", { className: "U_MD_D_KOX", "innerHTML": _demoCocoTeacherDeskIconInfo[i].Name }, _iconcontent);
  4792. }
  4793. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4794. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4795. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4796. continue
  4797. }
  4798. _content = $$("div", {
  4799. className: "U_MD_D_KO",
  4800. "onmousedown": U.UF.C.closure(function (obj) {
  4801. //防止拖动图标即打开了桌面应用
  4802. U.MD.D.click(this, obj);
  4803. }, [_x010608TeacherDeskIconInfo[i]]),
  4804. "onclick": U.UF.C.closure(function (obj) {
  4805. //防止拖动图标即打开了桌面应用
  4806. U.MD.D.click(this, obj);
  4807. }, [_x010608TeacherDeskIconInfo[i]])
  4808. }, _frag); //
  4809. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4810. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4811. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4812. }
  4813. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4814. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4815. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4816. continue
  4817. }
  4818. _content = $$("div", {
  4819. className: "U_MD_D_KO",
  4820. "onmousedown": U.UF.C.closure(function (obj) {
  4821. //防止拖动图标即打开了桌面应用
  4822. U.MD.D.click(this, obj);
  4823. }, [_x010611TeacherDeskIconInfo[i]]),
  4824. "onclick": U.UF.C.closure(function (obj) {
  4825. //防止拖动图标即打开了桌面应用
  4826. U.MD.D.click(this, obj);
  4827. }, [_x010611TeacherDeskIconInfo[i]])
  4828. }, _frag); //
  4829. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4830. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4831. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4832. }
  4833. } else if ((_type == 1 || _type == 4) && _oid == "86fa8cd7-00c2-11f0-b508-005056924926") {
  4834. for (i = 0; i < _x010612TeacherDeskIconInfo.length; i++) {
  4835. if(_role === 0 && _x010612TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4836. continue
  4837. }
  4838. _content = $$("div", {
  4839. className: "U_MD_D_KO",
  4840. "onmousedown": U.UF.C.closure(function (obj) {
  4841. //防止拖动图标即打开了桌面应用
  4842. U.MD.D.click(this, obj);
  4843. }, [_x010612TeacherDeskIconInfo[i]]),
  4844. "onclick": U.UF.C.closure(function (obj) {
  4845. //防止拖动图标即打开了桌面应用
  4846. U.MD.D.click(this, obj);
  4847. }, [_x010612TeacherDeskIconInfo[i]])
  4848. }, _frag); //
  4849. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4850. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612TeacherDeskIconInfo[i].style }, _iconcontent);
  4851. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612TeacherDeskIconInfo[i].Name }, _iconcontent);
  4852. }
  4853. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4854. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4855. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4856. continue
  4857. }
  4858. _content = $$("div", {
  4859. className: "U_MD_D_KO",
  4860. "onmousedown": U.UF.C.closure(function (obj) {
  4861. //防止拖动图标即打开了桌面应用
  4862. U.MD.D.click(this, obj);
  4863. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4864. "onclick": U.UF.C.closure(function (obj) {
  4865. //防止拖动图标即打开了桌面应用
  4866. U.MD.D.click(this, obj);
  4867. }, [_tianyuanTeacherDeskIconInfo[i]])
  4868. }, _frag); //
  4869. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4870. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4871. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4872. }
  4873. }else if ((_type == 1 || _type == 4) && _org == "fa20a652-5f2a-11f0-bf32-005056924926") {
  4874. for (i = 0; i < _MOAITeacherDeskIcon.length; i++) {
  4875. if(_role === 0 && _MOAITeacherDeskIcon[i].Url == 'testTeacher'){
  4876. continue
  4877. }
  4878. _content = $$("div", {
  4879. className: "U_MD_D_KO",
  4880. "onmousedown": U.UF.C.closure(function (obj) {
  4881. //防止拖动图标即打开了桌面应用
  4882. U.MD.D.click(this, obj);
  4883. }, [_MOAITeacherDeskIcon[i]]),
  4884. "onclick": U.UF.C.closure(function (obj) {
  4885. //防止拖动图标即打开了桌面应用
  4886. U.MD.D.click(this, obj);
  4887. }, [_MOAITeacherDeskIcon[i]])
  4888. }, _frag); //
  4889. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4890. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MOAITeacherDeskIcon[i].style }, _iconcontent);
  4891. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MOAITeacherDeskIcon[i].Name }, _iconcontent);
  4892. }
  4893. } else {
  4894. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4895. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4896. continue
  4897. }
  4898. _content = $$("div", {
  4899. className: "U_MD_D_KO",
  4900. "onmousedown": U.UF.C.closure(function (obj) {
  4901. //防止拖动图标即打开了桌面应用
  4902. U.MD.D.click(this, obj);
  4903. }, [_teacherDesktopIconInfo[i]]),
  4904. "onclick": U.UF.C.closure(function (obj) {
  4905. //防止拖动图标即打开了桌面应用
  4906. U.MD.D.click(this, obj);
  4907. }, [_teacherDesktopIconInfo[i]])
  4908. }, _frag); //
  4909. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4910. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4911. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4912. }
  4913. }
  4914. } else {
  4915. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4916. _content = $$("div", {
  4917. className: "U_MD_D_KO",
  4918. style: { 'width': '124px', 'height': '145px' },
  4919. "onmousedown": U.UF.C.closure(function (obj) {
  4920. //防止拖动图标即打开了桌面应用
  4921. U.MD.D.click(this, obj);
  4922. }, [_easyDesktopIconInfo[i]]),
  4923. "onclick": U.UF.C.closure(function (obj) {
  4924. //防止拖动图标即打开了桌面应用
  4925. U.MD.D.click(this, obj);
  4926. }, [_easyDesktopIconInfo[i]])
  4927. }, _frag); //
  4928. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4929. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4930. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4931. }
  4932. }
  4933. if (type == 1) {
  4934. //加载好后给图标定位
  4935. U.MD.D.iconPostion($(_frag).Child());
  4936. } else {
  4937. //加载好后给图标定位
  4938. U.MD.D.iconPostion2($(_frag).Child());
  4939. }
  4940. //把图标加载到页面
  4941. el.appendChild(_frag);
  4942. }
  4943. /**
  4944. * 显示任务栏
  4945. *
  4946. * @param {element} 桌面元素
  4947. */
  4948. U.MD.D.I.displayTaskbar = function (el) {
  4949. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4950. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4951. //任务栏位置变化
  4952. U.selectEl(el).css({ "bottom": "0px" });
  4953. //桌面位置变话
  4954. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4955. }
  4956. }
  4957. //#region 桌面图标拖动逻辑
  4958. /**
  4959. * 桌面排列图标
  4960. *
  4961. * @param {element} 桌面元素
  4962. * @param {object} 上下相距的距离
  4963. * @param {object} 左右相距的距离
  4964. * @return {object} 命名空间
  4965. */
  4966. U.MD.D.iconPostion = function (childs, top, left) {
  4967. var i; //用于循环处理
  4968. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4969. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4970. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4971. for (i = 0; i < childs.length; i++) {
  4972. //如果竖排top超过了范围处理
  4973. if (top + 95 > US.height - 10) {
  4974. //left超过了页面范围处理,则向上重叠打印处理
  4975. if ((left + 180) > US.width) {
  4976. top -= 110;
  4977. left -= 90;
  4978. }
  4979. //没有超过范围,那么left+90添加到下一个竖排打印
  4980. else {
  4981. left += 90;
  4982. top = 15;
  4983. };
  4984. }
  4985. //给图标的位置赋值
  4986. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4987. if (i < childs.length - 1) {
  4988. //页面图标每次向下加95
  4989. top += 95;
  4990. }
  4991. }
  4992. //返回最后调用的图标的位置
  4993. return [top, left];
  4994. }
  4995. /**
  4996. * 桌面排列图标
  4997. *
  4998. * @param {element} 桌面元素
  4999. * @param {object} 上下相距的距离
  5000. * @param {object} 左右相距的距离
  5001. * @return {object} 命名空间
  5002. */
  5003. U.MD.D.iconPostion2 = function (childs, top, left) {
  5004. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  5005. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  5006. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  5007. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  5008. for (i = 0; i < childs.length; i++) {
  5009. //如果竖排top超过了范围处理
  5010. if (left + 150 > US.width - 10) {
  5011. //left超过了页面范围处理,则向上重叠打印处理
  5012. if ((top + 180) > US.Height) {
  5013. top -= 150;
  5014. left -= 150;
  5015. }
  5016. //没有超过范围,那么left+90添加到下一个竖排打印
  5017. else {
  5018. top += 150;
  5019. left = ol;
  5020. };
  5021. }
  5022. //给图标的位置赋值
  5023. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  5024. if (i < childs.length - 1) {
  5025. //页面图标每次向下加95
  5026. left += 150;
  5027. }
  5028. }
  5029. //返回最后调用的图标的位置
  5030. return [top, left];
  5031. }
  5032. /**
  5033. * 桌面点击事件逻辑
  5034. *
  5035. * @param {element} 桌面元素
  5036. * @param {object} 上下相距的距离
  5037. * @param {object} 左右相距的距离
  5038. * @return {object} 命名空间
  5039. */
  5040. U.MD.D.click = function (el, obj) {
  5041. var _buttonnumber = event.button; //点击的按钮的事件值
  5042. var _userinfo = US.userInfo;
  5043. U.UF.EV.stopBubble(); //阻止向上冒泡
  5044. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  5045. if (_buttonnumber < 2) {
  5046. //如果是click事件的处理
  5047. if (event.type == "click") {
  5048. //如果元素在mousemove事件中没有移动则出发click事件
  5049. if (!U.MD.D.I.IsDrag) {
  5050. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5051. U.alert("请先登录您的账号!");
  5052. setTimeout(() => {
  5053. U.MD.U.L.login();
  5054. }, 2000);
  5055. } else {
  5056. //打开应用处理
  5057. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  5058. }
  5059. }
  5060. }
  5061. //如果是mouse事件的处理
  5062. else {
  5063. if (US.Config.type == '1') {
  5064. //拖动处理,添加拖动和拖动结束事件
  5065. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  5066. }
  5067. }
  5068. U.MD.D.I.IsDrag = false;
  5069. }
  5070. }
  5071. /**
  5072. * 拖动的处理
  5073. *
  5074. */
  5075. U.MD.D.iconMove = function () {
  5076. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  5077. U.MD.D.I.IsDrag = true;
  5078. }
  5079. /**
  5080. * 拖动结束后,这里是定位处理,以网状的形式定位
  5081. *
  5082. * @param {element} 拖动的元素
  5083. * @return {object} 命名空间
  5084. */
  5085. U.MD.D.iconUp = function (el) {
  5086. var _top = 15,
  5087. _left = 20,
  5088. _margin,
  5089. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  5090. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  5091. if (_positioninfo["OT"] > 15) {
  5092. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  5093. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  5094. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  5095. }
  5096. if (_positioninfo["OL"] > 20) {
  5097. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  5098. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  5099. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  5100. }
  5101. //while循环判断么一个重叠的元素
  5102. do {
  5103. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  5104. _top = _positioninfo[0] + 95; //得到定位后的top
  5105. _left = _positioninfo[1]; //得到定位后的left
  5106. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  5107. }
  5108. /**
  5109. * 判断拖动后图标是否重叠
  5110. *
  5111. * @param {element} 拖动的元素
  5112. * @param {element} 桌面所有的元素
  5113. * @param {array} 拖动元素的位置
  5114. ----------[0] 上 top
  5115. ----------[1] 左 left
  5116. * @return {object} 命名空间
  5117. */
  5118. U.MD.D.isOverlap = function (el, childs, postionarray) {
  5119. //循环所有的图标
  5120. for (var i = 0; i < childs.length; i++) {
  5121. //判断有没有和该图标诶子重叠的元素
  5122. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  5123. return childs[i]; //如果有返回
  5124. }
  5125. }
  5126. }
  5127. //#endregion
  5128. //#endregion
  5129. //#region 桌面应用
  5130. /**
  5131. * 打开应用
  5132. *
  5133. * @param {string} 类型
  5134. -----------------Disk 网盘系统
  5135. -----------------PDisk 学习系统网盘
  5136. -----------------Poto 图片
  5137. -----------------Video 视频
  5138. -----------------Music 音乐
  5139. -----------------Word word
  5140. -----------------Excel excel
  5141. -----------------Txt 记事本
  5142. -----------------PB 学习系统
  5143. -----------------Blog 朋友圈系统
  5144. -----------------FTP ftp系统
  5145. -----------------Group 好友群
  5146. -----------------SY 首页系统
  5147. -----------------Set 个人设置
  5148. -----------------XSet 系统设置
  5149. -----------------App 我们所有的app
  5150. -----------------BC c.1473.cn 平台
  5151. -----------------CWeb d.1473.cn 变成平台
  5152. -----------------其他的外联系统 我们统一用iframe打开
  5153. * @param {array} 类型
  5154. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  5155. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  5156. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  5157. 如果第一个参数为其他,则无第二个参数
  5158. * @returns {array}
  5159. */
  5160. window.addEventListener('message', function (e) { // 监听 message 事件
  5161. // alert(e.data.type);
  5162. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  5163. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  5164. //3是展示全部阶段 2学生 1老师 4专家
  5165. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  5166. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  5167. //3是展示全部阶段 2学生 1老师 4专家
  5168. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  5169. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  5170. //3是展示全部阶段 2学生 1老师 4专家
  5171. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  5172. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  5173. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  5174. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  5175. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  5176. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  5177. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  5178. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  5179. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  5180. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  5181. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  5182. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  5183. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  5184. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  5185. //3是展示全部阶段 2学生 1老师 4专家
  5186. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  5187. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  5188. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  5189. U.MD.D.I.selectUser();
  5190. } else if (e.data.allScreen && e.data.allScreen == "1") {
  5191. var _formel = document.getElementById("study");
  5192. U.UF.F.windowZooming(_formel);
  5193. } else if (e.data.allScreen && e.data.allScreen == "2") {
  5194. var _formel = document.getElementById("studyDetail");
  5195. U.UF.F.windowZooming(_formel);
  5196. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  5197. var _formel = document.getElementById("studyDetail");
  5198. U.UF.F.windowZooming(_formel);
  5199. } else if (e.data.allScreen && e.data.allScreen == "3") {
  5200. var _formel = document.getElementById("studentStudy");
  5201. U.UF.F.windowZooming(_formel);
  5202. } else if (e.data.allScreen && e.data.allScreen == "6") {
  5203. // var _formel = document.getElementById("study");
  5204. //如果最大化了,那么就把他缩小
  5205. // if (_formel.ismaximize) {
  5206. // return;
  5207. // }
  5208. // U.UF.F.windowZooming(_formel);
  5209. // U.UF.F.topWindow(_formel);
  5210. } else if (e.data.allScreen && e.data.allScreen == "4") {
  5211. // var _formel = document.getElementById("studyDetail");
  5212. //如果最大化了,那么就把他缩小
  5213. // if (_formel.ismaximize) {
  5214. // return;
  5215. // }
  5216. // U.UF.F.windowZooming(_formel);
  5217. // U.UF.F.topWindow(_formel);
  5218. } else if (e.data.allScreen && e.data.allScreen == "5") {
  5219. // var _formel = document.getElementById("studentStudy");
  5220. // if (_formel.ismaximize) {
  5221. // return;
  5222. // }
  5223. // U.UF.F.windowZooming(_formel);
  5224. // U.UF.F.topWindow(_formel);
  5225. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  5226. var _formel = document.getElementById("study");
  5227. // if (_formel.ismaximize) {
  5228. // return;
  5229. // }
  5230. // U.UF.F.windowZooming(_formel);
  5231. U.UF.F.topWindow(_formel);
  5232. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  5233. var _formel = document.getElementById("studentIndex");
  5234. U.UF.F.windowZooming(_formel);
  5235. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  5236. var _formel = document.getElementById("studyDetailS");
  5237. U.UF.F.windowZooming(_formel);
  5238. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  5239. var _formel = document.getElementById("studioIndex");
  5240. U.UF.F.windowZooming(_formel);
  5241. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  5242. var _formel = document.getElementById("studyDetailStudio");
  5243. U.UF.F.windowZooming(_formel);
  5244. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  5245. var _formel = document.getElementById("studyDetailStudio");
  5246. U.UF.F.windowZooming(_formel);
  5247. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  5248. var _formel = document.getElementById("studyDetailNT");
  5249. U.UF.F.windowZooming(_formel);
  5250. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  5251. var _formel = document.getElementById("studyDetailS");
  5252. U.UF.F.windowZooming(_formel);
  5253. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  5254. var _formel = document.getElementById("studyDetailS");
  5255. U.UF.F.topWindow(_formel);
  5256. } else if (e.data.tools && e.data.tools == "1") {
  5257. // U.MD.D.I.openApplication("whiteboard")
  5258. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5259. } else if (e.data.tools && e.data.tools == "2") {
  5260. U.MD.D.I.openApplication("note")
  5261. } else if (e.data.tools && e.data.tools == "3") {
  5262. // U.MD.D.I.openApplication("mind")
  5263. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5264. } else if (e.data.tools && e.data.tools == "4") {
  5265. U.MD.D.I.openApplication("investigation")
  5266. } else if (e.data.tools && e.data.tools == "6") {
  5267. // U.MD.D.I.openApplication("doc")
  5268. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5269. } else if (e.data.tools && e.data.tools == "7") {
  5270. // U.MD.D.I.openApplication("mindNetwork")
  5271. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5272. } else if (e.data.tools && e.data.tools == "8") {
  5273. U.MD.D.I.openApplication("library")
  5274. } else if (e.data.tools && e.data.tools == "17") {
  5275. U.MD.D.I.openApplication("stuLibrary")
  5276. } else if (e.data.tools && e.data.tools == "18") {
  5277. U.MD.D.I.openApplication("train")
  5278. } else if (e.data.tools && e.data.tools == "21") {
  5279. U.MD.D.I.openApplication("program")
  5280. } else if (e.data.tools && e.data.tools == "22") {
  5281. U.MD.D.I.openApplication("AIprogram2")
  5282. } else if (e.data.tools && e.data.tools == "23") {
  5283. U.MD.D.I.openApplication("Pythonprogram")
  5284. } else if (e.data.tools && e.data.tools == "24") {
  5285. U.MD.D.I.openApplication("AIprogram")
  5286. } else if (e.data.tools && e.data.tools == "25") {
  5287. U.MD.D.I.openApplication("sys")
  5288. } else if (e.data.tools && e.data.tools == "26") {
  5289. // U.MD.D.I.openApplication("courseDesign")
  5290. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5291. } else if (e.data.tools && e.data.tools == "31") {
  5292. U.MD.D.I.openApplication("netWorkPanel")
  5293. } else if (e.data.tools && e.data.tools == "32") {
  5294. U.MD.D.I.openApplication("codeEdit")
  5295. } else if (e.data.tools && e.data.tools == "57") {
  5296. U.MD.D.I.openApplication("CocoPi")
  5297. } else if (e.data.tools && e.data.tools == "63") {
  5298. U.MD.D.I.openApplication("Wood")
  5299. } else if (e.data.tools && e.data.tools == "58") {
  5300. U.MD.D.I.openApplication("car")
  5301. } else if (e.data.tools && e.data.tools == "59") {
  5302. U.MD.D.I.openApplication("lineSearch")
  5303. } else if (e.data.tools && e.data.tools == "60") {
  5304. U.MD.D.I.openApplication("deepLearning")
  5305. } else if (e.data.tools && e.data.tools == "61") {
  5306. U.MD.D.I.openApplication("allHistory")
  5307. } else if (e.data.tools && e.data.tools == "28") {
  5308. U.MD.D.I.openApplication("translation")
  5309. } else if (e.data.tools && e.data.tools == "37") {
  5310. U.MD.D.I.openApplication("mohe")
  5311. } else if (e.data.tools && e.data.tools == "38") {
  5312. U.MD.D.I.openApplication("24game")
  5313. } else if (e.data.tools && e.data.tools == "39") {
  5314. U.MD.D.I.openApplication("GeoGebra")
  5315. } else if (e.data.tools && e.data.tools == "43") {
  5316. U.MD.D.I.openApplication("studentEvaluate")
  5317. } else if (e.data.tools && e.data.tools == "44") {
  5318. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  5319. } else if (e.data.tools && e.data.tools == "46") {
  5320. U.MD.D.I.openApplication("project")
  5321. } else if (e.data.tools && e.data.tools == "71") {
  5322. U.MD.D.I.openApplication("aigptCourse")
  5323. } else if (e.data.tools && e.data.tools == "72") {
  5324. U.MD.D.I.openInApplication("gptConfig", e.data.data)
  5325. } else if (e.data.tools && e.data.tools == "1s") {
  5326. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5327. } else if (e.data.tools && e.data.tools == "3s") {
  5328. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5329. } else if (e.data.tools && e.data.tools == "6s") {
  5330. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5331. } else if (e.data.tools && e.data.tools == "1studio") {
  5332. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5333. } else if (e.data.tools && e.data.tools == "3studio") {
  5334. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5335. } else if (e.data.tools && e.data.tools == "6studio") {
  5336. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5337. } else if (e.data.tools && e.data.tools == "3y") {
  5338. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5339. } else if (e.data.tools && e.data.tools == "73y") {
  5340. U.MD.D.I.openApplicationYu("ppt", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5341. } else if (e.data.tools && e.data.tools == "1y") {
  5342. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5343. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  5344. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  5345. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  5346. U.MD.D.I.openApplication("AIAnalyse")
  5347. } else if (e.data.tools && e.data.tools == "1teacher") {
  5348. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5349. } else if (e.data.tools && e.data.tools == "3teacher") {
  5350. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5351. } else if (e.data.tools && e.data.tools == "7teacher") {
  5352. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5353. } else if (e.data.tools && e.data.tools == "1teacherE") {
  5354. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5355. } else if (e.data.tools && e.data.tools == "3teacherE") {
  5356. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5357. } else if (e.data.tools && e.data.tools == "1E") {
  5358. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5359. } else if (e.data.tools && e.data.tools == "3E") {
  5360. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5361. } else if (e.data.tools && e.data.tools == "57y") {
  5362. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5363. } else if (e.data.tools && e.data.tools == "57u") {
  5364. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5365. } else if (e.data.tools && e.data.tools == "57teacher") {
  5366. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5367. } else if (e.data.tools && e.data.tools == "64") {
  5368. U.MD.D.I.openApplication("AIChat")
  5369. } else if (e.data.tools && e.data.tools == "66") {
  5370. U.MD.D.I.openApplication("formulaEdi")
  5371. } else if (e.data.tools && e.data.tools == "67") {
  5372. U.MD.D.I.openApplication("molStr")
  5373. } else if (e.data.tools && e.data.tools == "68") {
  5374. U.MD.D.I.openApplication("timeAxis")
  5375. } else if (e.data.tools && e.data.tools == "openCourse") {
  5376. let _data = {
  5377. typea: e.data.typea || '',
  5378. typeb: e.data.typeb || '',
  5379. typed: e.data.typed || '',
  5380. }
  5381. U.MD.D.I.openInApplication("index", _data)
  5382. } else if (e.data.tools && e.data.tools == "openDataClass") {
  5383. let _data = {
  5384. classid: e.data.classid || '',
  5385. }
  5386. U.MD.D.I.openInApplication("dataClass", _data)
  5387. } else if (e.data.tools && e.data.tools == "opencCscl") {
  5388. let _data = {
  5389. cid: e.data.cid || '',
  5390. gid: e.data.gid || '',
  5391. }
  5392. U.MD.D.I.openInApplication("opencCscl", _data)
  5393. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  5394. U.MD.D.I.openApplication("dataBoardTest")
  5395. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  5396. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  5397. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  5398. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  5399. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  5400. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  5401. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  5402. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  5403. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  5404. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  5405. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  5406. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  5407. }else if (e.data.tools && e.data.tools == "loginSz") {
  5408. U.MD.D.I.openInApplication("loginSz")
  5409. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  5410. if($('#classroom_observation_board')[0]){
  5411. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  5412. }
  5413. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  5414. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  5415. if($('#classroom_observation_ob_comment')[0]){
  5416. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  5417. }
  5418. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  5419. }else if (e.data.tools && e.data.tools == "logout"){
  5420. U.MD.U.LO.logoutSystem()
  5421. }else if (e.data.tools && e.data.tools == "getLogin"){
  5422. let _iframe = $('#UI_Login')[0];
  5423. if (_iframe) {
  5424. var userInfo = US.userInfo;
  5425. var type = 2
  5426. if(userInfo && userInfo.userid){
  5427. type = 1
  5428. }
  5429. _contentWindow = _iframe.contentWindow;
  5430. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  5431. }
  5432. }
  5433. });
  5434. U.MD.D.I.selectUser = function () {
  5435. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  5436. if (res.value[0].length > 0) {
  5437. US.userInfo = res.value[0][0];
  5438. $(".userName")[0].innerHTML = US.userInfo.username;
  5439. }
  5440. }, [], { "type": "GET", "withCredentials": true });
  5441. }
  5442. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  5443. var _userinfo = US.userInfo, //登录用户信息
  5444. _userid = US.userInfo.userid, //登录用户id
  5445. _oid = _userinfo.organizeid,
  5446. _type = US.userInfo.type,
  5447. _org = US.userInfo.org,
  5448. _role = US.userInfo.role,
  5449. _classId = US.userInfo.classid;
  5450. if (_type == 4) {
  5451. tType = 4
  5452. }
  5453. let opArray = [ "project", "study", "appStore", "futureClass", "evaluate", "student", "testTeacher", "testStudent", "testTeacherSies", "testStudentSies", "studyDetail"]
  5454. if(opArray.includes(str)){
  5455. let _str = str
  5456. if(str == 'appStore'){
  5457. _str = "cocoFlow"
  5458. }else if(str == "futureClass"){
  5459. _str = "cocoNote"
  5460. }else if(str == "testTeacher" || str == "testTeacherSies"){
  5461. _str = "IntelligentForm"
  5462. }else if(str == "testStudent" || str == "testStudentSies"){
  5463. _str = "TeacherCenter"
  5464. }
  5465. try {
  5466. if (data) {
  5467. U.MD.D.addOp3('1', "", { type: _str+'Open', cid: data }, "success")
  5468. }else {
  5469. U.MD.D.addOp3('1', "", { type: _str+'Open' }, "success")
  5470. }
  5471. } catch (error) {
  5472. console.log(error);
  5473. }
  5474. }
  5475. switch (str) {
  5476. case "studyDetailNT": //无终端模式
  5477. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5478. setTimeout(() => {
  5479. U.MD.U.L.login();
  5480. }, 2000);
  5481. } else {
  5482. _formdiv = new U.UF.UI.form(
  5483. "课程详情",
  5484. $$("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 }), {
  5485. "id": "studyDetailNT",
  5486. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5487. "onresize": function () { }
  5488. }, {
  5489. closecallback: function () { }
  5490. }, { "style": { "height": "36px" } }).form; //创建窗体
  5491. _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); } }
  5492. break;
  5493. }
  5494. case "studyDetail":
  5495. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5496. setTimeout(() => {
  5497. U.MD.U.L.login();
  5498. }, 2000);
  5499. } else {
  5500. _formdiv = new U.UF.UI.form(
  5501. "课程详情",
  5502. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetail?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  5503. "id": "studyDetail",
  5504. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5505. "onresize": function () { }
  5506. }, {
  5507. closecallback: function () { }
  5508. }, { "style": { "height": "36px" } }).form; //创建窗体
  5509. _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); } }
  5510. break;
  5511. }
  5512. case "studyDetailTrain":
  5513. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5514. setTimeout(() => {
  5515. U.MD.U.L.login();
  5516. }, 2000);
  5517. } else {
  5518. _formdiv = new U.UF.UI.form(
  5519. "培训详情",
  5520. $$("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 }), {
  5521. "id": "studyDetailTrain",
  5522. "style": { "width": "100%", "height": "100%", "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/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5528. break;
  5529. }
  5530. case "studyDetailS":
  5531. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5532. setTimeout(() => {
  5533. U.MD.U.L.login();
  5534. }, 2000);
  5535. } else {
  5536. _formdiv = new U.UF.UI.form(
  5537. "项目详情",
  5538. $$("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 }), {
  5539. "id": "studyDetailS",
  5540. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5541. "onresize": function () { }
  5542. }, {
  5543. closecallback: function () { }
  5544. }, { "style": { "height": "36px" } }).form; //创建窗体
  5545. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5546. break;
  5547. }
  5548. case "studyDetailStudio":
  5549. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5550. setTimeout(() => {
  5551. U.MD.U.L.login();
  5552. }, 2000);
  5553. } else {
  5554. _formdiv = new U.UF.UI.form(
  5555. "工作详情",
  5556. $$("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 }), {
  5557. "id": "studyDetailStudio",
  5558. "style": { "width": "95%", "height": "95%", "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/studioCourse.png)" }, "name": "工作详情", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5564. break;
  5565. }
  5566. case "studyDetailS5":
  5567. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5568. setTimeout(() => {
  5569. U.MD.U.L.login();
  5570. }, 2000);
  5571. } else {
  5572. _formdiv = new U.UF.UI.form(
  5573. "项目详情",
  5574. $$("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 }), {
  5575. "id": "studyDetailS",
  5576. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5577. "onresize": function () { }
  5578. }, {
  5579. closecallback: function () { }
  5580. }, { "style": { "height": "36px" } }).form; //创建窗体
  5581. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5582. break;
  5583. }
  5584. case "studyDetailGM":
  5585. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5586. setTimeout(() => {
  5587. U.MD.U.L.login();
  5588. }, 2000);
  5589. } else {
  5590. _formdiv = new U.UF.UI.form(
  5591. "课程详情",
  5592. $$("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 }), {
  5593. "id": "studyDetail",
  5594. "style": { "width": "100%", "height": "100%", "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/gm/learning.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5600. break;
  5601. }
  5602. case "hanUrl":
  5603. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5604. setTimeout(() => {
  5605. U.MD.U.L.login();
  5606. }, 2000);
  5607. } else {
  5608. _formdiv = new U.UF.UI.form(
  5609. "汉字宫",
  5610. $$("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" }), {
  5611. "id": "hanUrl",
  5612. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5613. "onresize": function () { }
  5614. }, {
  5615. closecallback: function () { }
  5616. }, { "style": { "height": "36px" } }).form; //创建窗体
  5617. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClass.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5618. break;
  5619. }
  5620. case "index":
  5621. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5622. setTimeout(() => {
  5623. U.MD.U.L.login();
  5624. }, 2000);
  5625. } else {
  5626. _formdiv = new U.UF.UI.form(
  5627. "课程中心",
  5628. $$("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 }), {
  5629. "id": "study",
  5630. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5631. "onresize": function () { }
  5632. }, {
  5633. closecallback: function () { }
  5634. }, { "style": { "height": "36px" } }).form; //创建窗体
  5635. _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); } }
  5636. break;
  5637. }
  5638. case "dataClass":
  5639. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5640. setTimeout(() => {
  5641. U.MD.U.L.login();
  5642. }, 2000);
  5643. } else {
  5644. _formdiv = new U.UF.UI.form(
  5645. "数据报告",
  5646. $$("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 }), {
  5647. "id": "dataClass",
  5648. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5649. "onresize": function () { }
  5650. }, {
  5651. closecallback: function () { }
  5652. }, { "style": { "height": "36px" } }).form; //创建窗体
  5653. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "数据报告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5654. break;
  5655. }
  5656. case "opencCscl":
  5657. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5658. setTimeout(() => {
  5659. U.MD.U.L.login();
  5660. }, 2000);
  5661. } else {
  5662. _formdiv = new U.UF.UI.form(
  5663. "协同建构",
  5664. $$("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 }), {
  5665. "id": "futureClass",
  5666. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5667. "onresize": function () { }
  5668. }, {
  5669. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5670. }, { "style": { "height": "36px" } }).form; //创建窗体
  5671. _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); } }
  5672. break;
  5673. }
  5674. case "openCourseUpdate":
  5675. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5676. setTimeout(() => {
  5677. U.MD.U.L.login();
  5678. }, 2000);
  5679. } else {
  5680. _formdiv = new U.UF.UI.form(
  5681. "课程管理",
  5682. $$("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 }), {
  5683. "id": "openCourseUpdate",
  5684. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5685. "onresize": function () { }
  5686. }, {
  5687. closecallback: function () { }
  5688. }, { "style": { "height": "36px" } }).form; //创建窗体
  5689. break;
  5690. }
  5691. case "openNewCourseUpdate":
  5692. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5693. setTimeout(() => {
  5694. U.MD.U.L.login();
  5695. }, 2000);
  5696. } else {
  5697. _formdiv = new U.UF.UI.form(
  5698. "课程管理",
  5699. $$("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 }), {
  5700. "id": "openCourseUpdate",
  5701. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5702. "onresize": function () { }
  5703. }, {
  5704. closecallback: function () { }
  5705. }, { "style": { "height": "36px" } }).form; //创建窗体
  5706. break;
  5707. }
  5708. case "openCourseEUpdate":
  5709. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5710. setTimeout(() => {
  5711. U.MD.U.L.login();
  5712. }, 2000);
  5713. } else {
  5714. _formdiv = new U.UF.UI.form(
  5715. "课程管理",
  5716. $$("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 }), {
  5717. "id": "openCourseUpdate",
  5718. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5719. "onresize": function () { }
  5720. }, {
  5721. closecallback: function () { }
  5722. }, { "style": { "height": "36px" } }).form; //创建窗体
  5723. break;
  5724. }
  5725. case "openCourseAiUpdate":
  5726. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5727. setTimeout(() => {
  5728. U.MD.U.L.login();
  5729. }, 2000);
  5730. } else {
  5731. _formdiv = new U.UF.UI.form(
  5732. "课程管理",
  5733. $$("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 }), {
  5734. "id": "openCourseUpdate",
  5735. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5736. "onresize": function () { }
  5737. }, {
  5738. closecallback: function () { }
  5739. }, { "style": { "height": "36px" } }).form; //创建窗体
  5740. break;
  5741. }
  5742. case "openCourseAiUpdate2":
  5743. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5744. setTimeout(() => {
  5745. U.MD.U.L.login();
  5746. }, 2000);
  5747. } else {
  5748. _formdiv = new U.UF.UI.form(
  5749. "课程管理",
  5750. $$("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 }), {
  5751. "id": "openCourseUpdate",
  5752. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5753. "onresize": function () { }
  5754. }, {
  5755. closecallback: function () { }
  5756. }, { "style": { "height": "36px" } }).form; //创建窗体
  5757. break;
  5758. }
  5759. case "openCourseNewUpdate":
  5760. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5761. setTimeout(() => {
  5762. U.MD.U.L.login();
  5763. }, 2000);
  5764. } else {
  5765. _formdiv = new U.UF.UI.form(
  5766. "课程管理",
  5767. $$("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 }), {
  5768. "id": "openCourseUpdate",
  5769. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5770. "onresize": function () { }
  5771. }, {
  5772. closecallback: function () { }
  5773. }, { "style": { "height": "36px" } }).form; //创建窗体
  5774. break;
  5775. }
  5776. case "inviteLoginSz":
  5777. _formdiv = new U.UF.UI.form(
  5778. "随机码登录",
  5779. $$("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://invitelogin.cocorobo.cn/#/inviteLoginSZ?code=" + data }), {
  5780. "id": "loginSz",
  5781. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5782. "onresize": function () { }
  5783. }, {
  5784. closecallback: function () { }
  5785. }, { "style": { "height": "36px" } }).form; //创建窗体
  5786. break;
  5787. case "loginSz":
  5788. _formdiv = new U.UF.UI.form(
  5789. "教师登录",
  5790. $$("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" }), {
  5791. "id": "loginSz",
  5792. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5793. "onresize": function () { }
  5794. }, {
  5795. closecallback: function () { }
  5796. }, { "style": { "height": "36px" } }).form; //创建窗体
  5797. break;
  5798. case "teacher":
  5799. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5800. setTimeout(() => {
  5801. U.MD.U.L.login();
  5802. }, 2000);
  5803. } else {
  5804. _formdiv = new U.UF.UI.form(
  5805. "教师管理",
  5806. $$("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 }), {
  5807. "id": "teacher",
  5808. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5809. "onresize": function () { }
  5810. }, {
  5811. closecallback: function () { }
  5812. }, { "style": { "height": "36px" } }).form; //创建窗体
  5813. break;
  5814. }
  5815. case "dataBoardSZArea":
  5816. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5817. setTimeout(() => {
  5818. U.MD.U.L.login();
  5819. }, 2000);
  5820. } else {
  5821. _formdiv = new U.UF.UI.form(
  5822. "综合数据看板",
  5823. $$("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 }), {
  5824. "id": "dataBoardSZArea",
  5825. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5826. "onresize": function () { }
  5827. }, {
  5828. closecallback: function () { }
  5829. }, { "style": { "height": "36px" } }).form; //创建窗体
  5830. break;
  5831. }
  5832. case "dataBoardSZCity":
  5833. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5834. setTimeout(() => {
  5835. U.MD.U.L.login();
  5836. }, 2000);
  5837. } else {
  5838. _formdiv = new U.UF.UI.form(
  5839. "综合数据看板",
  5840. $$("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 }), {
  5841. "id": "dataBoardSZCity",
  5842. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5843. "onresize": function () { }
  5844. }, {
  5845. closecallback: function () { }
  5846. }, { "style": { "height": "36px" } }).form; //创建窗体
  5847. break;
  5848. }
  5849. case "classroom_observation_board":
  5850. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5851. setTimeout(() => {
  5852. U.MD.U.L.login();
  5853. }, 2000);
  5854. } else {
  5855. _formdiv = new U.UF.UI.form(
  5856. "课堂观察",
  5857. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_board?tid="+data }), {
  5858. "id": "classroom_observation_board",
  5859. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5860. "onresize": function () { }
  5861. }, {
  5862. closecallback: function () { }
  5863. }, { "style": { "height": "36px" } }).form; //创建窗体
  5864. break;
  5865. }
  5866. case "classroom_observation_ob_comment":
  5867. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5868. setTimeout(() => {
  5869. U.MD.U.L.login();
  5870. }, 2000);
  5871. } else {
  5872. _formdiv = new U.UF.UI.form(
  5873. "课堂审核",
  5874. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_ob_comment?tid="+data }), {
  5875. "id": "classroom_observation_ob_comment",
  5876. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5877. "onresize": function () { }
  5878. }, {
  5879. closecallback: function () { }
  5880. }, { "style": { "height": "36px" } }).form; //创建窗体
  5881. break;
  5882. }
  5883. case "gptConfig":
  5884. _formdiv = new U.UF.UI.form(
  5885. data.name ? data.name : "应用中心",
  5886. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": data.url }), {
  5887. "id": "gptConfig" + data.id,
  5888. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5889. "onresize": function () { }
  5890. }, {
  5891. closecallback: function () { }
  5892. }, { "style": { "height": "36px" } }).form; //创建窗体
  5893. break;
  5894. case "testDetail":
  5895. _formdiv = new U.UF.UI.form(
  5896. "表单填写",
  5897. $$("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/#/doTest?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&type=3&role=" + _role }), {
  5898. "id": "testDetail" + data,
  5899. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5900. "onresize": function () { }
  5901. }, {
  5902. closecallback: function () { }
  5903. }, { "style": { "height": "36px" } }).form; //创建窗体
  5904. break;
  5905. }
  5906. }
  5907. U.MD.D.I.openApplication = function (str, obj, info) {
  5908. obj = obj || {};
  5909. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5910. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5911. _userinfo = US.userInfo, //登录用户信息
  5912. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5913. _oid = obj.organizeid || _userinfo.organizeid,
  5914. _type = US.userInfo.type,
  5915. _org = obj.org || US.userInfo.org,
  5916. _role = US.userInfo.role,
  5917. _classId = US.userInfo.classid,
  5918. _TscreenType = 1
  5919. _screenType = 2,
  5920. _SscreenType = 3;
  5921. let iframeBool = true
  5922. if(U.UF.UI.form.allForm[str]){
  5923. iframeBool = false
  5924. }
  5925. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5926. return;
  5927. }
  5928. let opArray = [ "project", "study", "appStore", "futureClass", "evaluate", "student", "testTeacher", "testStudent", "testTeacherSies", "testStudentSies"]
  5929. if(opArray.includes(str)){
  5930. let _str = str
  5931. if(str == 'appStore'){
  5932. _str = "cocoFlow"
  5933. }else if(str == "futureClass"){
  5934. _str = "cocoNote"
  5935. }else if(str == "testTeacher" || str == "testTeacherSies"){
  5936. _str = "IntelligentForm"
  5937. }else if(str == "testStudent" || str == "testStudentSies"){
  5938. _str = "TeacherCenter"
  5939. }
  5940. try {
  5941. U.MD.D.addOp3('1', "", { type: _str+'Open' }, "success")
  5942. } catch (error) {
  5943. console.log(error);
  5944. }
  5945. }
  5946. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5947. switch (str) {
  5948. case "studnetProject": //好友打开
  5949. _formdiv = new U.UF.UI.form(
  5950. "我的项目",
  5951. $$("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 }), {
  5952. "id": "studnetProject",
  5953. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5954. "onresize": function () { }
  5955. }, {
  5956. closecallback: function () { }
  5957. }, { "style": { "height": "36px" } }).form; //创建窗体
  5958. _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); } }
  5959. break;
  5960. case "studentEvaluate": //好友打开
  5961. _formdiv = new U.UF.UI.form(
  5962. "我的评价",
  5963. $$("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 }), {
  5964. "id": "studentEvaluate",
  5965. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5966. "onresize": function () { }
  5967. }, {
  5968. closecallback: function () { }
  5969. }, { "style": { "height": "36px" } }).form; //创建窗体
  5970. _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); } }
  5971. break;
  5972. case "my":
  5973. _formdiv = new U.UF.UI.form(
  5974. "我的资料",
  5975. $$("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 }), {
  5976. "id": "my",
  5977. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5978. "onresize": function () { }
  5979. }, {
  5980. closecallback: function () { }
  5981. }, { "style": { "height": "36px" } }).form; //创建窗体
  5982. _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); } }
  5983. break;
  5984. case "program":
  5985. _formdiv = new U.UF.UI.form(
  5986. "编程平台",
  5987. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5988. "id": "program",
  5989. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5990. "onresize": function () { }
  5991. }, {
  5992. closecallback: function () { }
  5993. }, { "style": { "height": "36px" } }).form; //创建窗体
  5994. _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); } }
  5995. break;
  5996. case "library":
  5997. _formdiv = new U.UF.UI.form(
  5998. "素材库",
  5999. $$("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 }), {
  6000. "id": "library",
  6001. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6002. "onresize": function () { }
  6003. }, {
  6004. closecallback: function () { }
  6005. }, { "style": { "height": "36px" } }).form; //创建窗体
  6006. _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); } }
  6007. break;
  6008. case "whiteboard":
  6009. _formdiv = new U.UF.UI.form(
  6010. "电子白板",
  6011. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6012. "id": "whiteboard",
  6013. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6014. "onresize": function () { }
  6015. }, {
  6016. closecallback: function () { }
  6017. }, { "style": { "height": "36px" } }).form; //创建窗体
  6018. _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); } }
  6019. break;
  6020. case "investigation":
  6021. _formdiv = new U.UF.UI.form(
  6022. "问卷调查",
  6023. $$("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 }), {
  6024. "id": "investigation",
  6025. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6026. "onresize": function () { }
  6027. }, {
  6028. closecallback: function () { }
  6029. }, { "style": { "height": "36px" } }).form; //创建窗体
  6030. _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); } }
  6031. break;
  6032. case "note":
  6033. _formdiv = new U.UF.UI.form(
  6034. "便签分类",
  6035. $$("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 }), {
  6036. "id": "note",
  6037. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6038. "onresize": function () { }
  6039. }, {
  6040. closecallback: function () { }
  6041. }, { "style": { "height": "36px" } }).form; //创建窗体
  6042. _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); } }
  6043. break;
  6044. // case "score":
  6045. // _formdiv = new U.UF.UI.form(
  6046. // "量规评分",
  6047. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6048. // "id": "score",
  6049. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6050. // "onresize": function() {}
  6051. // }, {
  6052. // closecallback: function() {}
  6053. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6054. // _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); } }
  6055. // break;
  6056. case "mind":
  6057. _formdiv = new U.UF.UI.form(
  6058. "思维导图",
  6059. $$("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"
  6060. "id": "mind",
  6061. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6062. "onresize": function () { }
  6063. }, {
  6064. closecallback: function () { }
  6065. }, { "style": { "height": "36px" } }).form; //创建窗体
  6066. _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); } }
  6067. break;
  6068. case "doc":
  6069. // U.MD.D.I.isRoom();
  6070. _formdiv = new U.UF.UI.form(
  6071. "协同文档",
  6072. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  6073. "id": "doc",
  6074. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6075. "onresize": function () { }
  6076. }, {
  6077. closecallback: function () { }
  6078. }, { "style": { "height": "36px" } }).form; //创建窗体
  6079. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6080. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6081. // })
  6082. _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); } }
  6083. break;
  6084. case "studentStudy":
  6085. _formdiv = new U.UF.UI.form(
  6086. "课程中心",
  6087. $$("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
  6088. "id": "studentStudy",
  6089. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6090. "onresize": function () { }
  6091. }, {
  6092. closecallback: function () { }
  6093. }, { "style": { "height": "36px" } }).form; //创建窗体
  6094. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6095. break;
  6096. case "train": //好友打开
  6097. _formdiv = new U.UF.UI.form(
  6098. "训练平台",
  6099. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6100. "id": "train",
  6101. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6102. "onresize": function () { }
  6103. }, {
  6104. closecallback: function () { }
  6105. }, { "style": { "height": "36px" } }).form; //创建窗体
  6106. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6107. break;
  6108. case "mindNetwork": //好友打开
  6109. _formdiv = new U.UF.UI.form(
  6110. "思维网格",
  6111. $$("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 }), {
  6112. "id": "mindNetwork",
  6113. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6114. "onresize": function () { }
  6115. }, {
  6116. closecallback: function () { }
  6117. }, { "style": { "height": "36px" } }).form; //创建窗体
  6118. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6119. break;
  6120. case "studentClassRoom": //好友打开
  6121. _formdiv = new U.UF.UI.form(
  6122. "实时课堂",
  6123. $$("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 }), {
  6124. "id": "studentClassRoom",
  6125. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6126. "onresize": function () { }
  6127. }, {
  6128. closecallback: function () { }
  6129. }, { "style": { "height": "36px" } }).form; //创建窗体
  6130. _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); } }
  6131. setTimeout(() => {
  6132. U.UF.F.windowZooming(_formdiv)
  6133. }, 0);
  6134. break;
  6135. }
  6136. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6137. switch (str) {
  6138. case "studnetProject": //好友打开
  6139. _formdiv = new U.UF.UI.form(
  6140. "我的项目",
  6141. $$("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 }), {
  6142. "id": "studnetProject",
  6143. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6144. "onresize": function () { }
  6145. }, {
  6146. closecallback: function () { }
  6147. }, { "style": { "height": "36px" } }).form; //创建窗体
  6148. _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); } }
  6149. break;
  6150. case "studentEvaluate": //好友打开
  6151. _formdiv = new U.UF.UI.form(
  6152. "我的评价",
  6153. $$("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 }), {
  6154. "id": "studentEvaluate",
  6155. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6156. "onresize": function () { }
  6157. }, {
  6158. closecallback: function () { }
  6159. }, { "style": { "height": "36px" } }).form; //创建窗体
  6160. _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); } }
  6161. break;
  6162. case "my":
  6163. _formdiv = new U.UF.UI.form(
  6164. "我的资料",
  6165. $$("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 }), {
  6166. "id": "my",
  6167. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6168. "onresize": function () { }
  6169. }, {
  6170. closecallback: function () { }
  6171. }, { "style": { "height": "36px" } }).form; //创建窗体
  6172. _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); } }
  6173. break;
  6174. case "program":
  6175. _formdiv = new U.UF.UI.form(
  6176. "编程平台",
  6177. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6178. "id": "program",
  6179. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6180. "onresize": function () { }
  6181. }, {
  6182. closecallback: function () { }
  6183. }, { "style": { "height": "36px" } }).form; //创建窗体
  6184. _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); } }
  6185. break;
  6186. case "library":
  6187. _formdiv = new U.UF.UI.form(
  6188. "素材库",
  6189. $$("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 }), {
  6190. "id": "library",
  6191. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6192. "onresize": function () { }
  6193. }, {
  6194. closecallback: function () { }
  6195. }, { "style": { "height": "36px" } }).form; //创建窗体
  6196. _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); } }
  6197. break;
  6198. case "whiteboard":
  6199. _formdiv = new U.UF.UI.form(
  6200. "电子白板",
  6201. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6202. "id": "whiteboard",
  6203. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6204. "onresize": function () { }
  6205. }, {
  6206. closecallback: function () { }
  6207. }, { "style": { "height": "36px" } }).form; //创建窗体
  6208. _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); } }
  6209. break;
  6210. case "investigation":
  6211. _formdiv = new U.UF.UI.form(
  6212. "问卷调查",
  6213. $$("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 }), {
  6214. "id": "investigation",
  6215. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6216. "onresize": function () { }
  6217. }, {
  6218. closecallback: function () { }
  6219. }, { "style": { "height": "36px" } }).form; //创建窗体
  6220. _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); } }
  6221. break;
  6222. case "note":
  6223. _formdiv = new U.UF.UI.form(
  6224. "便签分类",
  6225. $$("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 }), {
  6226. "id": "note",
  6227. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6228. "onresize": function () { }
  6229. }, {
  6230. closecallback: function () { }
  6231. }, { "style": { "height": "36px" } }).form; //创建窗体
  6232. _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); } }
  6233. break;
  6234. // case "score":
  6235. // _formdiv = new U.UF.UI.form(
  6236. // "量规评分",
  6237. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6238. // "id": "score",
  6239. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6240. // "onresize": function() {}
  6241. // }, {
  6242. // closecallback: function() {}
  6243. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6244. // _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); } }
  6245. // break;
  6246. case "mind":
  6247. _formdiv = new U.UF.UI.form(
  6248. "思维导图",
  6249. $$("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"
  6250. "id": "mind",
  6251. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6252. "onresize": function () { }
  6253. }, {
  6254. closecallback: function () { }
  6255. }, { "style": { "height": "36px" } }).form; //创建窗体
  6256. _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); } }
  6257. break;
  6258. case "doc":
  6259. // U.MD.D.I.isRoom();
  6260. _formdiv = new U.UF.UI.form(
  6261. "协同文档",
  6262. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6263. "id": "doc",
  6264. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6265. "onresize": function () { }
  6266. }, {
  6267. closecallback: function () { }
  6268. }, { "style": { "height": "36px" } }).form; //创建窗体
  6269. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6270. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6271. })
  6272. _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); } }
  6273. break;
  6274. case "train": //好友打开
  6275. _formdiv = new U.UF.UI.form(
  6276. "训练平台",
  6277. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6278. "id": "train",
  6279. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6280. "onresize": function () { }
  6281. }, {
  6282. closecallback: function () { }
  6283. }, { "style": { "height": "36px" } }).form; //创建窗体
  6284. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6285. break;
  6286. case "studentStudy":
  6287. _formdiv = new U.UF.UI.form(
  6288. "课程中心",
  6289. $$("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
  6290. "id": "studentStudy",
  6291. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6292. "onresize": function () { }
  6293. }, {
  6294. closecallback: function () { }
  6295. }, { "style": { "height": "36px" } }).form; //创建窗体
  6296. _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); } }
  6297. break;
  6298. case "mindNetwork": //好友打开
  6299. _formdiv = new U.UF.UI.form(
  6300. "思维网格",
  6301. $$("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 }), {
  6302. "id": "mindNetwork",
  6303. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6304. "onresize": function () { }
  6305. }, {
  6306. closecallback: function () { }
  6307. }, { "style": { "height": "36px" } }).form; //创建窗体
  6308. _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); } }
  6309. break;
  6310. case "studentClassRoom": //好友打开
  6311. _formdiv = new U.UF.UI.form(
  6312. "实时课堂",
  6313. $$("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 }), {
  6314. "id": "studentClassRoom",
  6315. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6316. "onresize": function () { }
  6317. }, {
  6318. closecallback: function () { }
  6319. }, { "style": { "height": "36px" } }).form; //创建窗体
  6320. _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); } }
  6321. setTimeout(() => {
  6322. U.UF.F.windowZooming(_formdiv)
  6323. }, 0);
  6324. break;
  6325. }
  6326. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  6327. //选择应用处理
  6328. switch (str) {
  6329. case "project": //好友打开
  6330. _formdiv = new U.UF.UI.form(
  6331. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  6332. $$("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 }), {
  6333. "id": "project",
  6334. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6335. "onresize": function () { }
  6336. }, {
  6337. closecallback: function () { }
  6338. }, { "style": { "height": "36px" } }).form; //创建窗体
  6339. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6340. break;
  6341. case "student":
  6342. _formdiv = new U.UF.UI.form(
  6343. "学生管理",
  6344. $$("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 }), {
  6345. "id": "student",
  6346. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6347. "onresize": function () { }
  6348. }, {
  6349. closecallback: function () { }
  6350. }, { "style": { "height": "36px" } }).form; //创建窗体
  6351. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6352. break;
  6353. case "evaluate":
  6354. _formdiv = new U.UF.UI.form(
  6355. "学生评价",
  6356. $$("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 }), {
  6357. "id": "evaluate",
  6358. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6359. "onresize": function () { }
  6360. }, {
  6361. closecallback: function () { }
  6362. }, { "style": { "height": "36px" } }).form; //创建窗体
  6363. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6364. break;
  6365. case "sys":
  6366. _formdiv = new U.UF.UI.form(
  6367. "目标管理",
  6368. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/evaluation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6369. "id": "sys",
  6370. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6371. "onresize": function () { }
  6372. }, {
  6373. closecallback: function () { }
  6374. }, { "style": { "height": "36px" } }).form; //创建窗体
  6375. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6376. break;
  6377. case "courseDesign":
  6378. _formdiv = new U.UF.UI.form(
  6379. "项目设计",
  6380. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6381. "id": "courseDesign",
  6382. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6383. "onresize": function () { }
  6384. }, {
  6385. closecallback: function () { }
  6386. }, { "style": { "height": "36px" } }).form; //创建窗体
  6387. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6388. break;
  6389. case "program":
  6390. _formdiv = new U.UF.UI.form(
  6391. "编程平台",
  6392. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6393. "id": "program",
  6394. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6395. "onresize": function () { }
  6396. }, {
  6397. closecallback: function () { }
  6398. }, { "style": { "height": "36px" } }).form; //创建窗体
  6399. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6400. break;
  6401. case "class":
  6402. _formdiv = new U.UF.UI.form(
  6403. "班级管理",
  6404. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/class?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6405. "id": "class",
  6406. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6407. "onresize": function () { }
  6408. }, {
  6409. closecallback: function () { }
  6410. }, { "style": { "height": "36px" } }).form; //创建窗体
  6411. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6412. break;
  6413. case "Grade":
  6414. _formdiv = new U.UF.UI.form(
  6415. "年级管理",
  6416. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/grade?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6417. "id": "Grade",
  6418. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6419. "onresize": function () { }
  6420. }, {
  6421. closecallback: function () { }
  6422. }, { "style": { "height": "36px" } }).form; //创建窗体
  6423. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Grade.png)" }, "name": "年级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6424. break;
  6425. case "teacherOffice":
  6426. _formdiv = new U.UF.UI.form(
  6427. "教研室",
  6428. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacherOffice?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6429. "id": "teacherOffice",
  6430. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6431. "onresize": function () { }
  6432. }, {
  6433. closecallback: function () { }
  6434. }, { "style": { "height": "36px" } }).form; //创建窗体
  6435. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacherOffice.png)" }, "name": "教研室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6436. break;
  6437. case "my":
  6438. _formdiv = new U.UF.UI.form(
  6439. "我的资料",
  6440. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  6441. "id": "my",
  6442. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6443. "onresize": function () { }
  6444. }, {
  6445. closecallback: function () { }
  6446. }, { "style": { "height": "36px" } }).form; //创建窗体
  6447. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6448. break;
  6449. case "notice":
  6450. _formdiv = new U.UF.UI.form(
  6451. "通知公告",
  6452. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/notice?userid=" + _userid + "&org=" + _org }), {
  6453. "id": "notice",
  6454. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6455. "onresize": function () { }
  6456. }, {
  6457. closecallback: function () { }
  6458. }, { "style": { "height": "36px" } }).form; //创建窗体
  6459. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6460. break;
  6461. case "library":
  6462. _formdiv = new U.UF.UI.form(
  6463. "素材库",
  6464. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  6465. "id": "library",
  6466. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6467. "onresize": function () { }
  6468. }, {
  6469. closecallback: function () { }
  6470. }, { "style": { "height": "36px" } }).form; //创建窗体
  6471. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6472. break;
  6473. case "whiteboard":
  6474. _formdiv = new U.UF.UI.form(
  6475. "电子白板",
  6476. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6477. "id": "whiteboard",
  6478. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6479. "onresize": function () { }
  6480. }, {
  6481. closecallback: function () { }
  6482. }, { "style": { "height": "36px" } }).form; //创建窗体
  6483. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6484. break;
  6485. case "investigation":
  6486. _formdiv = new U.UF.UI.form(
  6487. "问卷调查",
  6488. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  6489. "id": "investigation",
  6490. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6491. "onresize": function () { }
  6492. }, {
  6493. closecallback: function () { }
  6494. }, { "style": { "height": "36px" } }).form; //创建窗体
  6495. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6496. break;
  6497. case "note":
  6498. _formdiv = new U.UF.UI.form(
  6499. "便签分类",
  6500. $$("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 }), {
  6501. "id": "note",
  6502. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6503. "onresize": function () { }
  6504. }, {
  6505. closecallback: function () { }
  6506. }, { "style": { "height": "36px" } }).form; //创建窗体
  6507. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6508. break;
  6509. // case "score":
  6510. // _formdiv = new U.UF.UI.form(
  6511. // "量规评分",
  6512. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6513. // "id": "score",
  6514. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6515. // "onresize": function() {}
  6516. // }, {
  6517. // closecallback: function() {}
  6518. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6519. // _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); } }
  6520. // break;
  6521. case "mind":
  6522. _formdiv = new U.UF.UI.form(
  6523. "思维导图",
  6524. $$("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"
  6525. "id": "mind",
  6526. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6527. "onresize": function () { }
  6528. }, {
  6529. closecallback: function () { }
  6530. }, { "style": { "height": "36px" } }).form; //创建窗体
  6531. _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); } }
  6532. break;
  6533. case "doc":
  6534. // U.MD.D.I.isRoom();
  6535. _formdiv = new U.UF.UI.form(
  6536. "协同文档",
  6537. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6538. "id": "doc",
  6539. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6540. "onresize": function () { }
  6541. }, {
  6542. closecallback: function () { }
  6543. }, { "style": { "height": "36px" } }).form; //创建窗体
  6544. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6545. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6546. })
  6547. _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); } }
  6548. break;
  6549. case "study":
  6550. _formdiv = new U.UF.UI.form(
  6551. "课程中心",
  6552. $$("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
  6553. "id": "study",
  6554. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6555. "onresize": function () { }
  6556. }, {
  6557. closecallback: function () { }
  6558. }, { "style": { "height": "36px" } }).form; //创建窗体
  6559. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6560. break;
  6561. case "mindNetwork": //好友打开
  6562. _formdiv = new U.UF.UI.form(
  6563. "思维网格",
  6564. $$("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 }), {
  6565. "id": "mindNetwork",
  6566. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6567. "onresize": function () { }
  6568. }, {
  6569. closecallback: function () { }
  6570. }, { "style": { "height": "36px" } }).form; //创建窗体
  6571. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6572. break;
  6573. case "train": //好友打开
  6574. _formdiv = new U.UF.UI.form(
  6575. "训练平台",
  6576. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6577. "id": "mindNetwork",
  6578. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6579. "onresize": function () { }
  6580. }, {
  6581. closecallback: function () { }
  6582. }, { "style": { "height": "36px" } }).form; //创建窗体
  6583. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6584. break;
  6585. case "teacherClassRoom": //好友打开
  6586. _formdiv = new U.UF.UI.form(
  6587. "实时课堂",
  6588. $$("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 }), {
  6589. "id": "teacherClassRoom",
  6590. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6591. "onresize": function () { }
  6592. }, {
  6593. closecallback: function () { }
  6594. }, { "style": { "height": "36px" } }).form; //创建窗体
  6595. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6596. setTimeout(() => {
  6597. U.UF.F.windowZooming(_formdiv)
  6598. }, 0);
  6599. break;
  6600. }
  6601. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6602. switch (str) {
  6603. case "project": //好友打开
  6604. _formdiv = new U.UF.UI.form(
  6605. "课程管理",
  6606. $$("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 }), {
  6607. "id": "project",
  6608. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6609. "onresize": function () { }
  6610. }, {
  6611. closecallback: function () { }
  6612. }, { "style": { "height": "36px" } }).form; //创建窗体
  6613. _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); } }
  6614. break;
  6615. case "evaluate":
  6616. _formdiv = new U.UF.UI.form(
  6617. "学生评价",
  6618. $$("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 }), {
  6619. "id": "evaluate",
  6620. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6621. "onresize": function () { }
  6622. }, {
  6623. closecallback: function () { }
  6624. }, { "style": { "height": "36px" } }).form; //创建窗体
  6625. _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); } }
  6626. break;
  6627. case "notice":
  6628. _formdiv = new U.UF.UI.form(
  6629. "通知公告",
  6630. $$("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 }), {
  6631. "id": "notice",
  6632. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6633. "onresize": function () { }
  6634. }, {
  6635. closecallback: function () { }
  6636. }, { "style": { "height": "36px" } }).form; //创建窗体
  6637. _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); } }
  6638. break;
  6639. case "stuLibrary":
  6640. _formdiv = new U.UF.UI.form(
  6641. "学习资料",
  6642. $$("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 }), {
  6643. "id": "stuLibrary",
  6644. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6645. "onresize": function () { }
  6646. }, {
  6647. closecallback: function () { }
  6648. }, { "style": { "height": "36px" } }).form; //创建窗体
  6649. _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); } }
  6650. break;
  6651. case "program":
  6652. _formdiv = new U.UF.UI.form(
  6653. "编程平台",
  6654. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6655. "id": "program",
  6656. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6657. "onresize": function () { }
  6658. }, {
  6659. closecallback: function () { }
  6660. }, { "style": { "height": "36px" } }).form; //创建窗体
  6661. _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); } }
  6662. break;
  6663. case "whiteboard":
  6664. _formdiv = new U.UF.UI.form(
  6665. "电子白板",
  6666. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6667. "id": "whiteboard",
  6668. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6669. "onresize": function () { }
  6670. }, {
  6671. closecallback: function () { }
  6672. }, { "style": { "height": "36px" } }).form; //创建窗体
  6673. _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); } }
  6674. break;
  6675. case "investigation":
  6676. _formdiv = new U.UF.UI.form(
  6677. "问卷调查",
  6678. $$("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 }), {
  6679. "id": "investigation",
  6680. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6681. "onresize": function () { }
  6682. }, {
  6683. closecallback: function () { }
  6684. }, { "style": { "height": "36px" } }).form; //创建窗体
  6685. _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); } }
  6686. break;
  6687. case "mind":
  6688. _formdiv = new U.UF.UI.form(
  6689. "思维导图",
  6690. $$("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"
  6691. "id": "mind",
  6692. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6693. "onresize": function () { }
  6694. }, {
  6695. closecallback: function () { }
  6696. }, { "style": { "height": "36px" } }).form; //创建窗体
  6697. _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); } }
  6698. break;
  6699. case "doc":
  6700. // U.MD.D.I.isRoom();
  6701. _formdiv = new U.UF.UI.form(
  6702. "协同文档",
  6703. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6704. "id": "doc",
  6705. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6706. "onresize": function () { }
  6707. }, {
  6708. closecallback: function () { }
  6709. }, { "style": { "height": "36px" } }).form; //创建窗体
  6710. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6711. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6712. })
  6713. _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); } }
  6714. break;
  6715. case "study":
  6716. _formdiv = new U.UF.UI.form(
  6717. "课程中心",
  6718. $$("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
  6719. "id": "study",
  6720. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6721. "onresize": function () { }
  6722. }, {
  6723. closecallback: function () { }
  6724. }, { "style": { "height": "36px" } }).form; //创建窗体
  6725. _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); } }
  6726. break;
  6727. case "mindNetwork": //好友打开
  6728. _formdiv = new U.UF.UI.form(
  6729. "思维网格",
  6730. $$("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 }), {
  6731. "id": "mindNetwork",
  6732. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6733. "onresize": function () { }
  6734. }, {
  6735. closecallback: function () { }
  6736. }, { "style": { "height": "36px" } }).form; //创建窗体
  6737. _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); } }
  6738. break;
  6739. case "train": //好友打开
  6740. _formdiv = new U.UF.UI.form(
  6741. "训练平台",
  6742. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6743. "id": "train",
  6744. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6745. "onresize": function () { }
  6746. }, {
  6747. closecallback: function () { }
  6748. }, { "style": { "height": "36px" } }).form; //创建窗体
  6749. _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); } }
  6750. break;
  6751. case "sys":
  6752. _formdiv = new U.UF.UI.form(
  6753. "目标管理",
  6754. $$("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 }), {
  6755. "id": "sys",
  6756. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6757. "onresize": function () { }
  6758. }, {
  6759. closecallback: function () { }
  6760. }, { "style": { "height": "36px" } }).form; //创建窗体
  6761. _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); } }
  6762. break;
  6763. case "courseDesign":
  6764. _formdiv = new U.UF.UI.form(
  6765. "项目设计",
  6766. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6767. "id": "courseDesign",
  6768. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6769. "onresize": function () { }
  6770. }, {
  6771. closecallback: function () { }
  6772. }, { "style": { "height": "36px" } }).form; //创建窗体
  6773. _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); } }
  6774. break;
  6775. }
  6776. } else if (!_type) {
  6777. switch (str) {
  6778. case "my":
  6779. _formdiv = new U.UF.UI.form(
  6780. "我的资料",
  6781. $$("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 }), {
  6782. "id": "my",
  6783. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6784. "onresize": function () { }
  6785. }, {
  6786. closecallback: function () { }
  6787. }, { "style": { "height": "36px" } }).form; //创建窗体
  6788. _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); } }
  6789. break;
  6790. }
  6791. }
  6792. switch (str) {
  6793. // AIprogram2 AI体验 aihub.cocorobo.cn
  6794. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6795. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6796. case "formulaEdi": //公式编辑
  6797. _formdiv = new U.UF.UI.form(
  6798. "公式编辑",
  6799. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6800. "id": "formulaEdi",
  6801. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6802. "onresize": function () { }
  6803. }, {
  6804. closecallback: function () { }
  6805. }, { "style": { "height": "36px" } }).form; //创建窗体
  6806. _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); } }
  6807. break;
  6808. case "molStr": //分子结构
  6809. _formdiv = new U.UF.UI.form(
  6810. "分子结构",
  6811. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6812. "id": "molStr",
  6813. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6814. "onresize": function () { }
  6815. }, {
  6816. closecallback: function () { }
  6817. }, { "style": { "height": "36px" } }).form; //创建窗体
  6818. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/molStr.png)" }, "name": "分子结构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6819. break;
  6820. case "timeAxis": //时间轴
  6821. _formdiv = new U.UF.UI.form(
  6822. "时间轴",
  6823. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6824. "id": "timeAxis",
  6825. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6826. "onresize": function () { }
  6827. }, {
  6828. closecallback: function () { }
  6829. }, { "style": { "height": "36px" } }).form; //创建窗体
  6830. _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); } }
  6831. break;
  6832. case "AIprogram2": //AI体验
  6833. _formdiv = new U.UF.UI.form(
  6834. "AI体验",
  6835. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6836. "id": "AIprogram2",
  6837. "style": { "width": "70%", "height": "90%", "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/AIprogram2.png)" }, "name": "AI体验", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6843. break;
  6844. case "Pythonprogram": //python编程
  6845. _formdiv = new U.UF.UI.form(
  6846. "Python编程",
  6847. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6848. "id": "Pythonprogram",
  6849. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6850. "onresize": function () { }
  6851. }, {
  6852. closecallback: function () { }
  6853. }, { "style": { "height": "36px" } }).form; //创建窗体
  6854. _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); } }
  6855. break;
  6856. case "AIprogram": //ai编程
  6857. _formdiv = new U.UF.UI.form(
  6858. "AI编程平台",
  6859. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6860. "id": "AIprogram",
  6861. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6862. "onresize": function () { }
  6863. }, {
  6864. closecallback: function () { }
  6865. }, { "style": { "height": "36px" } }).form; //创建窗体
  6866. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram.png)" }, "name": "AI编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6867. break;
  6868. case "CocoPi": //CocoPi
  6869. _formdiv = new U.UF.UI.form(
  6870. "CocoPi",
  6871. $$("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" }), {
  6872. "id": "CocoPi",
  6873. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6874. "onresize": function () { }
  6875. }, {
  6876. closecallback: function () { }
  6877. }, { "style": { "height": "36px" } }).form; //创建窗体
  6878. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/cocopi.png)" }, "name": "CocoPi", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6879. break;
  6880. case "Wood": //Wood
  6881. _formdiv = new U.UF.UI.form(
  6882. "海龟编程",
  6883. $$("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/" }), {
  6884. "id": "Wood",
  6885. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6886. "onresize": function () { }
  6887. }, {
  6888. closecallback: function () { }
  6889. }, { "style": { "height": "36px" } }).form; //创建窗体
  6890. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Wood.png)" }, "name": "海龟编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6891. break;
  6892. case "car": //模拟驾驶
  6893. _formdiv = new U.UF.UI.form(
  6894. "模拟驾驶",
  6895. $$("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/" }), {
  6896. "id": "car",
  6897. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6898. "onresize": function () { }
  6899. }, {
  6900. closecallback: function () { }
  6901. }, { "style": { "height": "36px" } }).form; //创建窗体
  6902. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/car.png)" }, "name": "模拟驾驶", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6903. break;
  6904. case "lineSearch": //路径搜索
  6905. _formdiv = new U.UF.UI.form(
  6906. "路径搜索",
  6907. $$("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/" }), {
  6908. "id": "lineSearch",
  6909. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6910. "onresize": function () { }
  6911. }, {
  6912. closecallback: function () { }
  6913. }, { "style": { "height": "36px" } }).form; //创建窗体
  6914. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/lineSearch.png)" }, "name": "路径搜索", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6915. break;
  6916. case "deepLearning": //深度学习
  6917. _formdiv = new U.UF.UI.form(
  6918. "深度学习",
  6919. $$("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/#" }), {
  6920. "id": "deepLearning",
  6921. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6922. "onresize": function () { }
  6923. }, {
  6924. closecallback: function () { }
  6925. }, { "style": { "height": "36px" } }).form; //创建窗体
  6926. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/deepLearning.png)" }, "name": "深度学习", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6927. break;
  6928. case "allHistory": //深度学习
  6929. _formdiv = new U.UF.UI.form(
  6930. "全历史",
  6931. $$("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/" }), {
  6932. "id": "allHistory",
  6933. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6934. "onresize": function () { }
  6935. }, {
  6936. closecallback: function () { }
  6937. }, { "style": { "height": "36px" } }).form; //创建窗体
  6938. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/allHistory.png)" }, "name": "全历史", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6939. break;
  6940. case "chatPDF": //ai编程
  6941. _formdiv = new U.UF.UI.form(
  6942. "chatPDF",
  6943. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6944. "id": "chatPDF",
  6945. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6946. "onresize": function () { }
  6947. }, {
  6948. closecallback: function () { }
  6949. }, { "style": { "height": "36px" } }).form; //创建窗体
  6950. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/chatPDF.png)" }, "name": "chatPDF", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6951. break;
  6952. case "resources": //国家教育
  6953. _formdiv = new U.UF.UI.form(
  6954. "国家教育",
  6955. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6956. "id": "resources",
  6957. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6958. "onresize": function () { }
  6959. }, {
  6960. closecallback: function () { }
  6961. }, { "style": { "height": "36px" } }).form; //创建窗体
  6962. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/resources.png)" }, "name": "国家教育", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6963. break;
  6964. case "codeEdit": //源码编辑
  6965. _formdiv = new U.UF.UI.form(
  6966. "源码编辑",
  6967. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6968. "id": "codeEdit",
  6969. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6970. "onresize": function () { }
  6971. }, {
  6972. closecallback: function () { }
  6973. }, { "style": { "height": "36px" } }).form; //创建窗体
  6974. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/code.png)" }, "name": "源码编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6975. break; //
  6976. case "MindMap": //MindMap
  6977. _formdiv = new U.UF.UI.form(
  6978. "MindMap",
  6979. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6980. "id": "MindMap",
  6981. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6982. "onresize": function () { }
  6983. }, {
  6984. closecallback: function () { }
  6985. }, { "style": { "height": "36px" } }).form; //创建窗体
  6986. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/MIndMap.png)" }, "name": "MindMap", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6987. break;
  6988. case "netWorkPanel": //netWorkPanel
  6989. _formdiv = new U.UF.UI.form(
  6990. "netWorkPanel",
  6991. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6992. "id": "netWorkPanel",
  6993. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6994. "onresize": function () { }
  6995. }, {
  6996. closecallback: function () { }
  6997. }, { "style": { "height": "36px" } }).form; //创建窗体
  6998. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/netWorkPanel.png)" }, "name": "netWorkPanel", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6999. break;
  7000. case "GeoGebra": //GeoGebra
  7001. _formdiv = new U.UF.UI.form(
  7002. "GeoGebra",
  7003. $$("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" }), {
  7004. "id": "GeoGebra",
  7005. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7006. "onresize": function () { }
  7007. }, {
  7008. closecallback: function () { }
  7009. }, { "style": { "height": "36px" } }).form; //创建窗体
  7010. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/GeoGebra.png)" }, "name": "GeoGebra", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7011. break;
  7012. case "translation": //翻译
  7013. _formdiv = new U.UF.UI.form(
  7014. "翻译",
  7015. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  7016. "id": "translation",
  7017. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7018. "onresize": function () { }
  7019. }, {
  7020. closecallback: function () { }
  7021. }, { "style": { "height": "36px" } }).form; //创建窗体
  7022. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/translation.png)" }, "name": "翻译", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7023. break;
  7024. case "mohe": //魔盒
  7025. _formdiv = new U.UF.UI.form(
  7026. "魔盒识字",
  7027. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  7028. "id": "mohe",
  7029. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  7030. "onresize": function () { }
  7031. }, {
  7032. closecallback: function () { }
  7033. }, { "style": { "height": "36px" } }).form; //创建窗体
  7034. _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); } }
  7035. break;
  7036. case "24game": //24点
  7037. _formdiv = new U.UF.UI.form(
  7038. "24点",
  7039. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  7040. "id": "24game",
  7041. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  7042. "onresize": function () { }
  7043. }, {
  7044. closecallback: function () { }
  7045. }, { "style": { "height": "36px" } }).form; //创建窗体
  7046. _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); } }
  7047. break;
  7048. case "case":
  7049. _formdiv = new U.UF.UI.form(
  7050. "课程进展",
  7051. $$("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 }), {
  7052. "id": "case",
  7053. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7054. "onresize": function () { }
  7055. }, {
  7056. closecallback: function () { }
  7057. }, { "style": { "height": "36px" } }).form; //创建窗体
  7058. _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); } }
  7059. break;
  7060. case "snf":
  7061. _formdiv = new U.UF.UI.form(
  7062. "赛诺梵",
  7063. $$("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" }), {
  7064. "id": "snf",
  7065. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7066. "onresize": function () { }
  7067. }, {
  7068. closecallback: function () { }
  7069. }, { "style": { "height": "36px" } }).form; //创建窗体
  7070. _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); } }
  7071. break;
  7072. case "hanFamily":
  7073. _formdiv = new U.UF.UI.form(
  7074. "汉字家族",
  7075. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  7076. "id": "hanFamily",
  7077. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7078. "onresize": function () { }
  7079. }, {
  7080. closecallback: function () { }
  7081. }, { "style": { "height": "36px" } }).form; //创建窗体
  7082. _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); } }
  7083. break;
  7084. case "hanClassics":
  7085. _formdiv = new U.UF.UI.form(
  7086. "国学经典",
  7087. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  7088. "id": "hanClassics",
  7089. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7090. "onresize": function () { }
  7091. }, {
  7092. closecallback: function () { }
  7093. }, { "style": { "height": "36px" } }).form; //创建窗体
  7094. _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); } }
  7095. break;
  7096. case "hanTraining":
  7097. _formdiv = new U.UF.UI.form(
  7098. "笔画训练",
  7099. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  7100. "id": "hanTraining",
  7101. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7102. "onresize": function () { }
  7103. }, {
  7104. closecallback: function () { }
  7105. }, { "style": { "height": "36px" } }).form; //创建窗体
  7106. _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); } }
  7107. break;
  7108. case "hanClass":
  7109. _formdiv = new U.UF.UI.form(
  7110. "书法课堂",
  7111. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  7112. "id": "hanClass",
  7113. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7114. "onresize": function () { }
  7115. }, {
  7116. closecallback: function () { }
  7117. }, { "style": { "height": "36px" } }).form; //创建窗体
  7118. _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); } }
  7119. break;
  7120. case "han":
  7121. _formdiv = new U.UF.UI.form(
  7122. "汉字宫",
  7123. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  7124. "id": "han",
  7125. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7126. "onresize": function () { }
  7127. }, {
  7128. closecallback: function () { }
  7129. }, { "style": { "height": "36px" } }).form; //创建窗体
  7130. _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); } }
  7131. break;
  7132. case "projectGM": //课程管理
  7133. _formdiv = new U.UF.UI.form(
  7134. "课程管理",
  7135. $$("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 }), {
  7136. "id": "projectGM",
  7137. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7138. "onresize": function () { }
  7139. }, {
  7140. closecallback: function () { }
  7141. }, { "style": { "height": "36px" } }).form; //创建窗体
  7142. _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); } }
  7143. break;
  7144. case "studyGM": //课程中心
  7145. _formdiv = new U.UF.UI.form(
  7146. "课程中心",
  7147. $$("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
  7148. "id": "study",
  7149. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7150. "onresize": function () { }
  7151. }, {
  7152. closecallback: function () { }
  7153. }, { "style": { "height": "36px" } }).form; //创建窗体
  7154. _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); } }
  7155. break;
  7156. // studentGM
  7157. case "studentGM": //学生管理
  7158. _formdiv = new U.UF.UI.form(
  7159. "学生管理",
  7160. $$("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 }), {
  7161. "id": "studentGM",
  7162. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7163. "onresize": function () { }
  7164. }, {
  7165. closecallback: function () { }
  7166. }, { "style": { "height": "36px" } }).form; //创建窗体
  7167. _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); } }
  7168. break;
  7169. case "evaluateGM": //学生评价
  7170. _formdiv = new U.UF.UI.form(
  7171. "学生评价",
  7172. $$("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 }), {
  7173. "id": "evaluateGM",
  7174. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7175. "onresize": function () { }
  7176. }, {
  7177. closecallback: function () { }
  7178. }, { "style": { "height": "36px" } }).form; //创建窗体
  7179. _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); } }
  7180. break;
  7181. // classGM
  7182. case "classGM": //班级管理
  7183. _formdiv = new U.UF.UI.form(
  7184. "班级管理",
  7185. $$("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 }), {
  7186. "id": "classGM",
  7187. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7188. "onresize": function () { }
  7189. }, {
  7190. closecallback: function () { }
  7191. }, { "style": { "height": "36px" } }).form; //创建窗体
  7192. _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); } }
  7193. break;
  7194. // dataGM
  7195. case "dataGM":
  7196. _formdiv = new U.UF.UI.form(
  7197. "我的资料",
  7198. $$("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 }), {
  7199. "id": "dataGM",
  7200. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7201. "onresize": function () { }
  7202. }, {
  7203. closecallback: function () { }
  7204. }, { "style": { "height": "36px" } }).form; //创建窗体
  7205. _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); } }
  7206. break;
  7207. // caseGM
  7208. case "caseGM": //课程进展
  7209. _formdiv = new U.UF.UI.form(
  7210. "课程进展",
  7211. $$("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 }), {
  7212. "id": "caseGM",
  7213. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7214. "onresize": function () { }
  7215. }, {
  7216. closecallback: function () { }
  7217. }, { "style": { "height": "36px" } }).form; //创建窗体
  7218. _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); } }
  7219. break;
  7220. // meterialGM
  7221. case "meterialGM": //素材库
  7222. _formdiv = new U.UF.UI.form(
  7223. "素材库",
  7224. $$("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 }), {
  7225. "id": "meterialGM",
  7226. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7227. "onresize": function () { }
  7228. }, {
  7229. closecallback: function () { }
  7230. }, { "style": { "height": "36px" } }).form; //创建窗体
  7231. _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); } }
  7232. break;
  7233. // evaluateSGM
  7234. case "evaluateSGM": //我的评价
  7235. _formdiv = new U.UF.UI.form(
  7236. "我的评价",
  7237. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/worksGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7238. "id": "evaluateSGM",
  7239. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7240. "onresize": function () { }
  7241. }, {
  7242. closecallback: function () { }
  7243. }, { "style": { "height": "36px" } }).form; //创建窗体
  7244. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7245. break;
  7246. case "jupyter": //jupyter
  7247. _formdiv = new U.UF.UI.form(
  7248. "jupyter",
  7249. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  7250. "id": "jupyter",
  7251. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7252. "onresize": function () { }
  7253. }, {
  7254. closecallback: function () { }
  7255. }, { "style": { "height": "36px" } }).form; //创建窗体
  7256. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/jupyter.png)" }, "name": "jupyter", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7257. break;
  7258. case "number": //数字实验室
  7259. _formdiv = new U.UF.UI.form(
  7260. "数字实验室",
  7261. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  7262. "id": "number",
  7263. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7264. "onresize": function () { }
  7265. }, {
  7266. closecallback: function () { }
  7267. }, { "style": { "height": "36px" } }).form; //创建窗体
  7268. _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); } }
  7269. break;
  7270. case "studentCourse": //项目管理 学生
  7271. _formdiv = new U.UF.UI.form(
  7272. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  7273. $$("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 }), {
  7274. "id": "studentCourse",
  7275. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7276. "onresize": function () { }
  7277. }, {
  7278. closecallback: function () { }
  7279. }, { "style": { "height": "36px" } }).form; //创建窗体
  7280. _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); } }
  7281. break;
  7282. case "studentCourseS": //项目管理 老师
  7283. _formdiv = new U.UF.UI.form(
  7284. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  7285. $$("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 }), {
  7286. "id": "studentCourseS",
  7287. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7288. "onresize": function () { }
  7289. }, {
  7290. closecallback: function () { }
  7291. }, { "style": { "height": "36px" } }).form; //创建窗体
  7292. _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); } }
  7293. break;
  7294. case "studentIndex": //项目中心
  7295. _formdiv = new U.UF.UI.form(
  7296. "项目中心",
  7297. $$("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 }), {
  7298. "id": "studentIndex",
  7299. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7300. "onresize": function () { }
  7301. }, {
  7302. closecallback: function () { }
  7303. }, { "style": { "height": "36px" } }).form; //创建窗体
  7304. _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); } }
  7305. break;
  7306. case "CaseDesignS":
  7307. _formdiv = new U.UF.UI.form(
  7308. "项目进展",
  7309. $$("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 }), {
  7310. "id": "case",
  7311. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7312. "onresize": function () { }
  7313. }, {
  7314. closecallback: function () { }
  7315. }, { "style": { "height": "36px" } }).form; //创建窗体
  7316. _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); } }
  7317. break;
  7318. case "tcStudent": //腾讯学生管理
  7319. _formdiv = new U.UF.UI.form(
  7320. "学生管理",
  7321. $$("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 }), {
  7322. "id": "tcStudent",
  7323. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7324. "onresize": function () { }
  7325. }, {
  7326. closecallback: function () { }
  7327. }, { "style": { "height": "36px" } }).form; //创建窗体
  7328. _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); } }
  7329. break;
  7330. case "tcSchool": //腾讯学校管理
  7331. _formdiv = new U.UF.UI.form(
  7332. "学校管理",
  7333. $$("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 }), {
  7334. "id": "tcSchool",
  7335. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7336. "onresize": function () { }
  7337. }, {
  7338. closecallback: function () { }
  7339. }, { "style": { "height": "36px" } }).form; //创建窗体
  7340. _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); } }
  7341. break;
  7342. case "tcTeacher": //腾讯学校管理
  7343. _formdiv = new U.UF.UI.form(
  7344. "教师管理",
  7345. $$("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 }), {
  7346. "id": "tcTeacher",
  7347. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7348. "onresize": function () { }
  7349. }, {
  7350. closecallback: function () { }
  7351. }, { "style": { "height": "36px" } }).form; //创建窗体
  7352. _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); } }
  7353. break;
  7354. case "teacher":
  7355. _formdiv = new U.UF.UI.form(
  7356. "教师管理",
  7357. $$("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 }), {
  7358. "id": "teacher",
  7359. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7360. "onresize": function () { }
  7361. }, {
  7362. closecallback: function () { }
  7363. }, { "style": { "height": "36px" } }).form; //创建窗体
  7364. _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); } }
  7365. break;
  7366. case "tcData": //腾讯我的资料
  7367. _formdiv = new U.UF.UI.form(
  7368. "我的资料",
  7369. $$("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 }), {
  7370. "id": "tcData",
  7371. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7372. "onresize": function () { }
  7373. }, {
  7374. closecallback: function () { }
  7375. }, { "style": { "height": "36px" } }).form; //创建窗体
  7376. _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); } }
  7377. break;
  7378. case "tcNotice": //腾讯消息通知
  7379. _formdiv = new U.UF.UI.form(
  7380. "消息通知",
  7381. $$("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 }), {
  7382. "id": "tcNotice",
  7383. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7384. "onresize": function () { }
  7385. }, {
  7386. closecallback: function () { }
  7387. }, { "style": { "height": "36px" } }).form; //创建窗体
  7388. _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); } }
  7389. break;
  7390. case "myReport": //好友打开
  7391. _formdiv = new U.UF.UI.form(
  7392. "我的评价",
  7393. $$("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 }), {
  7394. "id": "myReport",
  7395. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7396. "onresize": function () { }
  7397. }, {
  7398. closecallback: function () { }
  7399. }, { "style": { "height": "36px" } }).form; //创建窗体
  7400. _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); } }
  7401. break;
  7402. case "learnAna": //好友打开
  7403. _formdiv = new U.UF.UI.form(
  7404. "学习分析",
  7405. $$("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 }), {
  7406. "id": "learnAna",
  7407. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7408. "onresize": function () { }
  7409. }, {
  7410. closecallback: function () { }
  7411. }, { "style": { "height": "36px" } }).form; //创建窗体
  7412. _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); } }
  7413. break;
  7414. case "AIChat": //AI共创
  7415. _formdiv = new U.UF.UI.form(
  7416. "AI共创",
  7417. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  7418. "id": "AIChat",
  7419. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  7420. "onresize": function () { }
  7421. }, {
  7422. istop: true,
  7423. closecallback: function () { $("#aichat_icon").remove(); },
  7424. narrowcallback: function () {
  7425. if (!$("#aichat_icon")[0]) {
  7426. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  7427. }
  7428. },
  7429. }, { "style": { "height": "36px" } }).form; //创建窗体
  7430. _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); } }
  7431. break;
  7432. case "ainew": //AI共创
  7433. _formdiv = new U.UF.UI.form(
  7434. "AI协同",
  7435. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  7436. "id": "ainew",
  7437. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7438. "onresize": function () { }
  7439. }, {
  7440. closecallback: function () { }
  7441. }, { "style": { "height": "36px" } }).form; //创建窗体
  7442. _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); } }
  7443. break;
  7444. case "gpt4": //gpt4
  7445. _formdiv = new U.UF.UI.form(
  7446. "AI助手",
  7447. $$("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 }), {
  7448. "id": "gpt4",
  7449. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7450. "onresize": function () { }
  7451. }, {
  7452. closecallback: function () { }
  7453. }, { "style": { "height": "36px" } }).form; //创建窗体
  7454. _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); } }
  7455. break;
  7456. case "aigpt": //gpt4
  7457. _formdiv = new U.UF.UI.form(
  7458. "AI助手+",
  7459. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7460. "id": "aigpt",
  7461. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7462. "onresize": function () { }
  7463. }, {
  7464. closecallback: function () {
  7465. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  7466. }
  7467. }, { "style": { "height": "36px" } }).form; //创建窗体
  7468. _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); } }
  7469. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7470. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  7471. })
  7472. break;
  7473. case "aiKnowledge": //aiKnowledge
  7474. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7475. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  7476. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7477. }
  7478. _formdiv = new U.UF.UI.form(
  7479. "知识建构",
  7480. $$("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 }), {
  7481. "id": "aiKnowledge",
  7482. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7483. "onresize": function () { }
  7484. }, {
  7485. closecallback: function () { }
  7486. }, { "style": { "height": "36px" } }).form; //创建窗体
  7487. _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); } }
  7488. break;
  7489. case "futureClass": //AI共创
  7490. _formdiv = new U.UF.UI.form(
  7491. "协同建构",
  7492. $$("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
  7493. "id": "synergyCourse",
  7494. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7495. "onresize": function () { }
  7496. }, {
  7497. closecallback: function () {
  7498. $("iframe", _formdiv)[0].contentWindow.loginout();
  7499. }
  7500. }, { "style": { "height": "36px" } }).form; //创建窗体
  7501. _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); } }
  7502. break;
  7503. case "aiagent": //ai agent
  7504. _formdiv = new U.UF.UI.form(
  7505. "AI Agent",
  7506. $$("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" }), {
  7507. "id": "AIAgent",
  7508. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7509. "onresize": function () { }
  7510. }, {
  7511. closecallback: function () { }
  7512. }, { "style": { "height": "36px" } }).form; //创建窗体
  7513. _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); } }
  7514. break;
  7515. case "dataBoard": //数据看板
  7516. _formdiv = new U.UF.UI.form(
  7517. "数据看板",
  7518. $$("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 }), {
  7519. "id": "dataBoard",
  7520. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7521. "onresize": function () { }
  7522. }, {
  7523. closecallback: function () { }
  7524. }, { "style": { "height": "36px" } }).form; //创建窗体
  7525. _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); } }
  7526. break;
  7527. case "dataBoardSies": //数据融合
  7528. _formdiv = new U.UF.UI.form(
  7529. "数据融合",
  7530. $$("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 }), {
  7531. "id": "dataBoardSies",
  7532. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7533. "onresize": function () { }
  7534. }, {
  7535. closecallback: function () { }
  7536. }, { "style": { "height": "36px" } }).form; //创建窗体
  7537. _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); } }
  7538. break;
  7539. case "dataBoardNew": //数据看板
  7540. _formdiv = new U.UF.UI.form(
  7541. "综合看板",
  7542. $$("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 }), {
  7543. "id": "dataBoardNew",
  7544. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7545. "onresize": function () { }
  7546. }, {
  7547. closecallback: function () { }
  7548. }, { "style": { "height": "36px" } }).form; //创建窗体
  7549. _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); } }
  7550. break;
  7551. case "dataBoardTest": //数据看板
  7552. _formdiv = new U.UF.UI.form(
  7553. "评测看板",
  7554. $$("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 }), {
  7555. "id": "dataBoardTest",
  7556. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7557. "onresize": function () { }
  7558. }, {
  7559. closecallback: function () { }
  7560. }, { "style": { "height": "36px" } }).form; //创建窗体
  7561. _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); } }
  7562. break;
  7563. case "AIAnalyse": //AI共创
  7564. _formdiv = new U.UF.UI.form(
  7565. "AI分析",
  7566. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  7567. "id": "AIAnalyse",
  7568. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7569. "onresize": function () { }
  7570. }, {
  7571. closecallback: function () { }
  7572. }, { "style": { "height": "36px" } }).form; //创建窗体
  7573. _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); } }
  7574. break;
  7575. case "studioCourse": //AI共创
  7576. _formdiv = new U.UF.UI.form(
  7577. "工作管理",
  7578. $$("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 }), {
  7579. "id": "studioCourse",
  7580. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7581. "onresize": function () { }
  7582. }, {
  7583. closecallback: function () { }
  7584. }, { "style": { "height": "36px" } }).form; //创建窗体
  7585. _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); } }
  7586. break;
  7587. case "studioIndex": //AI共创
  7588. _formdiv = new U.UF.UI.form(
  7589. "工作中心",
  7590. $$("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 }), {
  7591. "id": "studioIndex",
  7592. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7593. "onresize": function () { }
  7594. }, {
  7595. closecallback: function () { }
  7596. }, { "style": { "height": "36px" } }).form; //创建窗体
  7597. _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); } }
  7598. break;
  7599. case "source":
  7600. _formdiv = new U.UF.UI.form(
  7601. "教学资源",
  7602. $$("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 }), {
  7603. "id": "source",
  7604. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7605. "onresize": function () { }
  7606. }, {
  7607. closecallback: function () { }
  7608. }, { "style": { "height": "36px" } }).form; //创建窗体
  7609. _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); } }
  7610. break;
  7611. case "testTeacher":
  7612. _formdiv = new U.UF.UI.form(
  7613. "智能表单",
  7614. $$("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 }), {
  7615. "id": "testTeacher",
  7616. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7617. "onresize": function () { }
  7618. }, {
  7619. closecallback: function () { }
  7620. }, { "style": { "height": "36px" } }).form; //创建窗体
  7621. _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); } }
  7622. break;
  7623. case "testStudent":
  7624. _formdiv = new U.UF.UI.form(
  7625. "教师中心",
  7626. $$("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 }), {
  7627. "id": "testStudent",
  7628. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7629. "onresize": function () { }
  7630. }, {
  7631. closecallback: function () { }
  7632. }, { "style": { "height": "36px" } }).form; //创建窗体
  7633. _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); } }
  7634. break;
  7635. case "testTeacherSies":
  7636. _formdiv = new U.UF.UI.form(
  7637. "教师管理",
  7638. $$("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 }), {
  7639. "id": "testTeacherSies",
  7640. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7641. "onresize": function () { }
  7642. }, {
  7643. closecallback: function () { }
  7644. }, { "style": { "height": "36px" } }).form; //创建窗体
  7645. _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); } }
  7646. break;
  7647. case "testStudentSies":
  7648. _formdiv = new U.UF.UI.form(
  7649. "教师中心",
  7650. $$("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 }), {
  7651. "id": "testStudentSies",
  7652. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7653. "onresize": function () { }
  7654. }, {
  7655. closecallback: function () { }
  7656. }, { "style": { "height": "36px" } }).form; //创建窗体
  7657. _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); } }
  7658. break;
  7659. case "ytpbl": //消息通知
  7660. _formdiv = new U.UF.UI.form(
  7661. "案例征集",
  7662. $$("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 }), {
  7663. "id": "ytpbl",
  7664. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7665. "onresize": function () { }
  7666. }, {
  7667. closecallback: function () { }
  7668. }, { "style": { "height": "36px" } }).form; //创建窗体
  7669. _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); } }
  7670. // 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");
  7671. break;
  7672. case "aiCourseResource": //人工智能窗体
  7673. _formdiv = new U.UF.UI.form(
  7674. false,
  7675. $$("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 }), {
  7676. "id": "aiCourseResource",
  7677. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7678. "onresize": function () { },
  7679. "isdrag": false,
  7680. }, {
  7681. closecallback: function () { }
  7682. }, { "style": { "height": "36px" } }).form; //创建窗体
  7683. _taskbar = ''
  7684. break;
  7685. case "szdjgCocooroboX": //图形化编程
  7686. _formdiv = new U.UF.UI.form(
  7687. "图形化编程",
  7688. $$("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" }), {
  7689. "id": "szdjgCocooroboX",
  7690. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7691. "onresize": function () { }
  7692. }, {
  7693. closecallback: function () { }
  7694. }, { "style": { "height": "36px" } }).form; //创建窗体
  7695. _taskbar = ''
  7696. break;
  7697. case "szdjgPython": //python编程
  7698. _formdiv = new U.UF.UI.form(
  7699. "Python编程",
  7700. $$("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" }), {
  7701. "id": "szdjgPython",
  7702. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7703. "onresize": function () { }
  7704. }, {
  7705. closecallback: function () { }
  7706. }, { "style": { "height": "36px" } }).form; //创建窗体
  7707. _taskbar = ''
  7708. break;
  7709. case "Record":
  7710. _formdiv = new U.UF.UI.form(
  7711. "观察记录",
  7712. $$("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 }), {
  7713. "id": "Record",
  7714. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7715. "onresize": function () { }
  7716. }, {
  7717. closecallback: function () { }
  7718. }, { "style": { "height": "36px" } }).form; //创建窗体
  7719. _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); } }
  7720. break;
  7721. case "aigptCourse":
  7722. _formdiv = new U.UF.UI.form(
  7723. "AI智能体",
  7724. $$("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' }), {
  7725. "id": "aigptCourse",
  7726. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7727. "onresize": function () { }
  7728. }, {
  7729. closecallback: function () { }
  7730. }, { "style": { "height": "36px" } }).form; //创建窗体
  7731. _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); } }
  7732. break;
  7733. case "classroomObservation":
  7734. _formdiv = new U.UF.UI.form(
  7735. "课堂观察",
  7736. $$("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 }), {
  7737. "id": "classroomObservation",
  7738. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7739. "onresize": function () { }
  7740. }, {
  7741. closecallback: function () { }
  7742. }, { "style": { "height": "36px" } }).form; //创建窗体
  7743. _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); } }
  7744. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7745. break;
  7746. case "pblCourse":
  7747. _formdiv = new U.UF.UI.form(
  7748. "学生PBL",
  7749. $$("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 }), {
  7750. "id": "pblCourse",
  7751. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7752. "onresize": function () { }
  7753. }, {
  7754. closecallback: function () { }
  7755. }, { "style": { "height": "36px" } }).form; //创建窗体
  7756. _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); } }
  7757. break;
  7758. case "appStore":
  7759. U.MD.D.addOp('','cocoflowOpen','')
  7760. _formdiv = new U.UF.UI.form(
  7761. "CocoFlow",
  7762. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//beta.app.cocorobo.cn/#/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7763. "id": "appStore",
  7764. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7765. "onresize": function () { }
  7766. }, {
  7767. closecallback: function () { }
  7768. }, { "style": { "height": "36px" } }).form; //创建窗体
  7769. _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); } }
  7770. break;
  7771. case "sassPlatform":
  7772. _formdiv = new U.UF.UI.form(
  7773. "Sass通用后台管理",
  7774. $$("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 }), {
  7775. "id": "sassPlatform",
  7776. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7777. "onresize": function () { }
  7778. }, {
  7779. closecallback: function () { }
  7780. }, { "style": { "height": "36px" } }).form; //创建窗体
  7781. _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); } }
  7782. break;
  7783. case "EDU":
  7784. _formdiv = new U.UF.UI.form(
  7785. "EDU",
  7786. $$("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" }), {
  7787. "id": "EDU",
  7788. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7789. "onresize": function () { }
  7790. }, {
  7791. closecallback: function () { }
  7792. }, { "style": { "height": "36px" } }).form; //创建窗体
  7793. _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); } }
  7794. break;
  7795. case "knowledge":
  7796. _formdiv = new U.UF.UI.form(
  7797. "知识库",
  7798. $$("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 }), {
  7799. "id": "knowledge",
  7800. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7801. "onresize": function () { }
  7802. }, {
  7803. closecallback: function () { }
  7804. }, { "style": { "height": "36px" } }).form; //创建窗体
  7805. _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); } }
  7806. break;
  7807. case "userExamine":
  7808. _formdiv = new U.UF.UI.form(
  7809. "账号申请",
  7810. $$("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" }), {
  7811. "id": "userExamine",
  7812. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7813. "onresize": function () { }
  7814. }, {
  7815. closecallback: function () { }
  7816. }, { "style": { "height": "36px" } }).form; //创建窗体
  7817. break;
  7818. case "cocoflowDeskTop": //cocoflowDeskTop
  7819. _formdiv = new U.UF.UI.form(
  7820. false,
  7821. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//app.cocorobo.cn/#/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7822. "id": "cocoflowDeskTop",
  7823. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7824. "onresize": function () { },
  7825. }, {
  7826. closecallback: function () { },
  7827. "isdrag": false,
  7828. }, { "style": { "height": "36px" } }).form; //创建窗体
  7829. _taskbar = ''
  7830. break;
  7831. case "liyuanLogin": //liyuanLogin
  7832. _formdiv = new U.UF.UI.form(
  7833. false,
  7834. $$("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": "//liyuan.cocorobo.cn/#/login?org=" + _org + "&oid=" + _oid }), {
  7835. "id": "liyuanLogin",
  7836. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7837. "onresize": function () { },
  7838. }, {
  7839. closecallback: function () { },
  7840. isdrag: false,
  7841. isstretching: false,
  7842. isenlarge: false,
  7843. isnarrow: false
  7844. }, { "style": { "height": "36px" } }).form; //创建窗体
  7845. _taskbar = ''
  7846. break;
  7847. case "updatePaDialog":
  7848. _formdiv = new U.UF.UI.form(
  7849. "密码修改",
  7850. $$("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://invitelogin.cocorobo.cn/#/changePswd?userid=" + _userid }), {
  7851. "id": "updatePaDialog",
  7852. "style": { "width": "450px", "height": "610px", "overflow": 'hidden' },
  7853. "onresize": function () { },
  7854. }, {
  7855. closecallback: function () { },
  7856. isclose: false,
  7857. isdrag: false,
  7858. isstretching: false,
  7859. isenlarge: false,
  7860. isnarrow: false
  7861. }, { "style": { "height": "36px" } }).form; //创建窗体
  7862. break;
  7863. }
  7864. //U.MD.D.I.openClick(str);
  7865. //如果有任务栏信息
  7866. if (_taskbar) {
  7867. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7868. }
  7869. if(iframeBool){
  7870. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7871. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7872. // console.log("iframe进入");
  7873. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7874. // };
  7875. setTimeout(() => {
  7876. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7877. }, 2000);
  7878. }
  7879. }
  7880. U.MD.D.I.openApplicationWai = function (id, url, dom, array) {
  7881. var _formdiv, //创建任务栏时同时弹出的窗体元素。
  7882. _userinfo = US.userInfo, //登录用户信息
  7883. { userid: _userid, organizeid: _oid, type: _type, org: _org, role: _role, classid: _classId } = _userinfo; // 解构赋值获取用户信息
  7884. const _TscreenType = 1, _screenType = 2, _SscreenType = 3; // 常量定义
  7885. let iframeBool = true;
  7886. let queryString = ''
  7887. if(array && array.length){
  7888. const paramsMap = {
  7889. userid: _userid,
  7890. org: _org,
  7891. oid: _oid,
  7892. type: _type,
  7893. role: _role,
  7894. classId: _classId,
  7895. TscreenType: _TscreenType,
  7896. SscreenType: _SscreenType
  7897. };
  7898. const canshu = array
  7899. .filter(param => paramsMap[param] !== undefined)
  7900. .map(param => `${param}=${paramsMap[param]}`);
  7901. queryString = canshu.length ? (url.includes('?') ? '&' : '?') + canshu.join('&') : ''; // 生成查询字符串
  7902. }
  7903. let _url = url + queryString
  7904. if(U.UF.UI.form.allForm[id]){
  7905. iframeBool = false
  7906. }
  7907. _formdiv = new U.UF.UI.form(
  7908. false,
  7909. $$("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 }),
  7910. {
  7911. "id": id,
  7912. "style": { "width": "100%", "height": "100%", "overflow": 'hidden',"position": 'unset',"boxShadow": "unset" },
  7913. "onresize": function () { },
  7914. },
  7915. {
  7916. closecallback: function () { },
  7917. isdrag: false,
  7918. isstretching: false,
  7919. isenlarge: false,
  7920. isnarrow: false
  7921. },
  7922. { "style": { "height": "36px" } },
  7923. undefined,
  7924. undefined,
  7925. dom
  7926. ).form
  7927. }
  7928. // U.MD.D.I.openClick = function(str){
  7929. // var click = '';
  7930. // switch(str){
  7931. // case 'friend':
  7932. // click = '我的好友';
  7933. // break;
  7934. // case 'domain':
  7935. // click = '域名管理';
  7936. // break;
  7937. // case 'disk':
  7938. // click = '我的云盘';
  7939. // break;
  7940. // case 'word':
  7941. // click = 'Word';
  7942. // break;
  7943. // case 'excel':
  7944. // click = 'Execl';
  7945. // break;
  7946. // case 'txt':
  7947. // click = '文本文件';
  7948. // break;
  7949. // case 'lookupFriend':
  7950. // click = '查找好友';
  7951. // break;
  7952. // case 'ftp':
  7953. // click = 'FTP';
  7954. // break;
  7955. // case 'group':
  7956. // click = '群组';
  7957. // break;
  7958. // case 'set':
  7959. // click = '我的设置';
  7960. // break;
  7961. // case 'systemSet':
  7962. // click = '系统设置';
  7963. // break;
  7964. // case 'boomYun':
  7965. // click = '互联办公';
  7966. // break;
  7967. // case 'xz':
  7968. // click = '云端下载';
  7969. // break;
  7970. // case 'client':
  7971. // click = '有思浏览器';
  7972. // break;
  7973. // case 'backEndProgramming':
  7974. // click = '在线后台编程';
  7975. // break;
  7976. // case 'frontEndProgramming':
  7977. // click = '在线前端编程';
  7978. // break;
  7979. // default: break;
  7980. // }
  7981. // if(U.MD.D.I.Ip && click){
  7982. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7983. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7984. // })
  7985. // }
  7986. // }
  7987. /**
  7988. *函数作用:ajax简易函数,使用post格式
  7989. *@param url {data} 后台地址
  7990. *@param data {data} 参数json
  7991. *@param fn {data} 回调函数
  7992. *
  7993. */
  7994. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7995. // var xhr = new XMLHttpRequest();
  7996. // xhr.open("GET",url,true);
  7997. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7998. // xhr.onreadystatechange = function(){
  7999. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  8000. // fn.call(this,xhr.responseText);
  8001. // }
  8002. // };
  8003. // xhr.send();
  8004. // }
  8005. /*判断是否是内网IP*/
  8006. // U.MD.D.I.isInnerIPFn = function(str){
  8007. // var curPageUrl = str;
  8008. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  8009. // curPageUrl =curPageUrl.replace(reg1,'');
  8010. // // console.log('curPageUrl-1 '+curPageUrl);
  8011. // var reg2 = /\:+/g;//替换冒号为一点
  8012. // curPageUrl =curPageUrl.replace(reg2,'.');
  8013. // // console.log('curPageUrl-2 '+curPageUrl);
  8014. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  8015. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  8016. // if(curPageUrl[2] != '16'){
  8017. // return ipAddress;
  8018. // }else{
  8019. // return false;
  8020. // }
  8021. // }
  8022. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  8023. // //compatibility for firefox and chrome
  8024. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  8025. // var pc = new myPeerConnection({
  8026. // iceServers: []
  8027. // }),
  8028. // noop = function() {},
  8029. // localIPs = {},
  8030. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  8031. // key;
  8032. // function iterateIP(ip) {
  8033. // if (!localIPs[ip]) onNewIP(ip);
  8034. // localIPs[ip] = true;
  8035. // }
  8036. // //create a bogus data channel
  8037. // pc.createDataChannel("");
  8038. // // create offer and set local description
  8039. // pc.createOffer().then(function(sdp) {
  8040. // sdp.sdp.split('\n').forEach(function(line) {
  8041. // if (line.indexOf('candidate') < 0) return;
  8042. // line.match(ipRegex).forEach(iterateIP);
  8043. // });
  8044. // pc.setLocalDescription(sdp, noop, noop);
  8045. // }).catch(function(reason) {
  8046. // // An error occurred, so handle the failure to connect
  8047. // });
  8048. // //sten for candidate events
  8049. // pc.onicecandidate = function(ice) {
  8050. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  8051. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  8052. // };
  8053. // }
  8054. // U.MD.D.I.getUserIpBool = function(callback){
  8055. // U.MD.D.I.getUserIP(function(ip){
  8056. // alert("Got IP! :" + ip);
  8057. // });
  8058. //}
  8059. //#endregion
  8060. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  8061. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8062. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8063. _userinfo = US.userInfo, //登录用户信息
  8064. _userid = US.userInfo.userid //登录用户id
  8065. let _iframe;
  8066. let _cid = cid,
  8067. _stage = stage,
  8068. _task = task,
  8069. _tool = tool;
  8070. var _jie = $$("div", {
  8071. "style": {
  8072. "position": "absolute",
  8073. "bottom": "50px",
  8074. "right": "50px",
  8075. "zIndex": "9999",
  8076. "backgroundColor": "#2268bc",
  8077. "color": "#fff",
  8078. "padding": "12px 20px",
  8079. "cursor": "pointer",
  8080. "borderRadius": "4px",
  8081. },
  8082. "innerHTML": "提交作业"
  8083. })
  8084. let aTool = ''
  8085. let _loading = document.createElement('div')
  8086. _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;"
  8087. // _loading.id = "";
  8088. let _lchild = document.createElement('div')
  8089. let _limg = document.createElement('img')
  8090. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8091. _limg.style = "width: 26px;margin-right: 10px;"
  8092. _lchild.appendChild(_limg)
  8093. let _lspan = document.createElement('span')
  8094. _lspan.innerHTML = "上传中..."
  8095. _lchild.appendChild(_lspan)
  8096. _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%);"
  8097. _loading.appendChild(_lchild)
  8098. var _box = $$('div', {
  8099. "style": {
  8100. "position": "relative",
  8101. "width": "100%",
  8102. "height": "100%",
  8103. },
  8104. })
  8105. _box.appendChild(_loading)
  8106. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  8107. switch (str) {
  8108. case "whiteboard":
  8109. aTool = 1;
  8110. _iframe = $$("iframe", {
  8111. "frameborder": "no",
  8112. "border": "0",
  8113. "scrolling ": "no",
  8114. "style": {
  8115. "cssText": "border:0;width:100%;height:100%"
  8116. },
  8117. "src": "https://beta.iwb.cocorobo.cn/"
  8118. })
  8119. _box.appendChild(_iframe);
  8120. _box.appendChild(_jie);
  8121. _formdiv = new U.UF.UI.form(
  8122. "电子白板",
  8123. _box, {
  8124. "id": "whiteboard" + cid + stage + task + tool,
  8125. "style": {
  8126. "width": "90%",
  8127. "height": "90%",
  8128. "overflow": 'hidden'
  8129. },
  8130. "onresize": function () { }
  8131. }, {
  8132. closecallback: function () { }
  8133. }, {
  8134. "style": {
  8135. "height": "36px"
  8136. }
  8137. }).form; //创建窗体
  8138. _taskbar = {
  8139. "id": str + _formdiv.id,
  8140. "style": {
  8141. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8142. },
  8143. "name": "电子白板",
  8144. "forms": _formdiv,
  8145. "click": function () {
  8146. U.MD.D.I.openApplication(str, obj, info);
  8147. }
  8148. }
  8149. break;
  8150. case "mind":
  8151. aTool = 3;
  8152. _iframe = $$("iframe", {
  8153. "frameborder": "no",
  8154. "border": "0",
  8155. "scrolling ": "no",
  8156. "style": {
  8157. "cssText": "border:0;width:100%;height:100%"
  8158. },
  8159. "src": "/kityminder-editor/dist/index.html"
  8160. })
  8161. _box.appendChild(_iframe);
  8162. _box.appendChild(_jie);
  8163. _formdiv = new U.UF.UI.form(
  8164. "思维导图",
  8165. _box, { //"/jsmind/example/demo.html"
  8166. "id": "mind" + cid + stage + task + tool,
  8167. "style": {
  8168. "width": "90%",
  8169. "height": "90%",
  8170. "overflow": 'hidden'
  8171. },
  8172. "onresize": function () { }
  8173. }, {
  8174. closecallback: function () { }
  8175. }, {
  8176. "style": {
  8177. "height": "36px"
  8178. }
  8179. }).form; //创建窗体
  8180. _taskbar = {
  8181. "id": str + _formdiv.id,
  8182. "style": {
  8183. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8184. },
  8185. "name": "思维导图",
  8186. "forms": _formdiv,
  8187. "click": function () {
  8188. U.MD.D.I.openApplication(str, obj, info);
  8189. }
  8190. }
  8191. break;
  8192. case "MindMap":
  8193. aTool = 3;
  8194. _iframe = $$("iframe", {
  8195. "frameborder": "no",
  8196. "border": "0",
  8197. "scrolling ": "no",
  8198. "style": {
  8199. "cssText": "border:0;width:100%;height:100%"
  8200. },
  8201. "src": "//cloud.cocorobo.cn/mind/"
  8202. })
  8203. _box.appendChild(_iframe);
  8204. _box.appendChild(_jie);
  8205. _formdiv = new U.UF.UI.form(
  8206. "思维导图",
  8207. _box, { //"/jsmind/example/demo.html"
  8208. "id": "mind" + cid + stage + task + tool,
  8209. "style": {
  8210. "width": "90%",
  8211. "height": "90%",
  8212. "overflow": 'hidden'
  8213. },
  8214. "onresize": function () { }
  8215. }, {
  8216. closecallback: function () { }
  8217. }, {
  8218. "style": {
  8219. "height": "36px"
  8220. }
  8221. }).form; //创建窗体
  8222. _taskbar = {
  8223. "id": str + _formdiv.id,
  8224. "style": {
  8225. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8226. },
  8227. "name": "思维导图",
  8228. "forms": _formdiv,
  8229. "click": function () {
  8230. U.MD.D.I.openApplication(str, obj, info);
  8231. }
  8232. }
  8233. break;
  8234. case "doc":
  8235. aTool = 6;
  8236. _iframe = $$("iframe", {
  8237. "frameborder": "no",
  8238. "border": "0",
  8239. "scrolling ": "no",
  8240. "style": {
  8241. "cssText": "border:0;width:100%;height:100%"
  8242. },
  8243. "src": "/Office/Word/WordEditArea.htm"
  8244. })
  8245. _box.appendChild(_iframe);
  8246. _box.appendChild(_jie);
  8247. _formdiv = new U.UF.UI.form(
  8248. "协同文档",
  8249. _box, {
  8250. "id": "doc" + cid + stage + task + tool,
  8251. "style": {
  8252. "width": "90%",
  8253. "height": "90%",
  8254. "overflow": 'hidden'
  8255. },
  8256. "onresize": function () { }
  8257. }, {
  8258. closecallback: function () { }
  8259. }, {
  8260. "style": {
  8261. "height": "36px"
  8262. }
  8263. }).form; //创建窗体
  8264. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8265. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8266. })
  8267. _taskbar = {
  8268. "id": str + _formdiv.id,
  8269. "style": {
  8270. "backgroundImage": "url(/img/icon/doc.png)"
  8271. },
  8272. "name": "协同文档",
  8273. "forms": _formdiv,
  8274. "click": function () {
  8275. U.MD.D.I.openApplication(str, obj, info);
  8276. }
  8277. }
  8278. break;
  8279. case "mindNetwork": //好友打开
  8280. aTool = 7;
  8281. _iframe = $$("iframe", {
  8282. "webkitallowfullscreen": "",
  8283. "mozallowfullscreen": "",
  8284. "allowfullscreen": "",
  8285. "frameborder": "no",
  8286. "border": "0",
  8287. "scrolling ": "no",
  8288. "style": {
  8289. "cssText": "border:0; width:100%; height:100%;"
  8290. },
  8291. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8292. })
  8293. _box.appendChild(_iframe);
  8294. _box.appendChild(_jie);
  8295. _formdiv = new U.UF.UI.form(
  8296. "思维网格",
  8297. _box, {
  8298. "id": "mindNetwork" + cid + stage + task + tool,
  8299. "style": {
  8300. "width": "90%",
  8301. "height": "90%",
  8302. "overflow": 'hidden'
  8303. },
  8304. "onresize": function () { }
  8305. }, {
  8306. closecallback: function () { }
  8307. }, {
  8308. "style": {
  8309. "height": "36px"
  8310. }
  8311. }).form; //创建窗体
  8312. _taskbar = {
  8313. "id": str + _formdiv.id,
  8314. "style": {
  8315. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8316. },
  8317. "name": "思维网格",
  8318. "forms": _formdiv,
  8319. "click": function () {
  8320. U.MD.D.I.openApplication(str, obj, info);
  8321. }
  8322. }
  8323. break;
  8324. case "courseDesign":
  8325. _iframe = $$("iframe", {
  8326. "webkitallowfullscreen": "",
  8327. "mozallowfullscreen": "",
  8328. "allowfullscreen": "",
  8329. "frameborder": "no",
  8330. "border": "0",
  8331. "scrolling ": "no",
  8332. "style": {
  8333. "cssText": "border:0; width:100%; height:100%;"
  8334. },
  8335. "src": "/course-design-vue"
  8336. })
  8337. _box.appendChild(_iframe);
  8338. _box.appendChild(_jie);
  8339. _formdiv = new U.UF.UI.form(
  8340. "项目设计",
  8341. _box, {
  8342. "id": "courseDesign" + cid + stage + task + tool,
  8343. "style": {
  8344. "width": "90%",
  8345. "height": "90%",
  8346. "overflow": 'hidden'
  8347. },
  8348. "onresize": function () { }
  8349. }, {
  8350. closecallback: function () { }
  8351. }, {
  8352. "style": {
  8353. "height": "36px"
  8354. }
  8355. }).form; //创建窗体
  8356. _taskbar = {
  8357. "id": str + _formdiv.id,
  8358. "style": {
  8359. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8360. },
  8361. "name": "项目设计",
  8362. "forms": _formdiv,
  8363. "click": function () {
  8364. U.MD.D.I.openApplication(str, obj, info);
  8365. }
  8366. }
  8367. break;
  8368. }
  8369. const script1 = document.createElement("script");
  8370. script1.type = "text/javascript";
  8371. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8372. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8373. const script2 = document.createElement("script");
  8374. script2.type = "text/javascript";
  8375. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8376. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8377. const script3 = document.createElement("script");
  8378. script3.type = "text/javascript";
  8379. script3.charset = "UTF-8";
  8380. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8381. const script4 = document.createElement("script");
  8382. script4.type = "text/javascript";
  8383. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8384. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8385. if (_iframe) {
  8386. if (str == 'doc') {
  8387. _iframe = _formdiv.querySelector('iframe')
  8388. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8389. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8390. _iframe.contentWindow.document.body.appendChild(script1);
  8391. _iframe.contentWindow.document.body.appendChild(script2);
  8392. // _iframe.contentWindow.document.body.appendChild(script3);
  8393. _iframe.contentWindow.document.body.appendChild(script4);
  8394. })
  8395. if (onloadListener) {
  8396. _iframe.contentDocument.location.reload()
  8397. } else {
  8398. _iframe.contentDocument.location.reload()
  8399. }
  8400. } else if (str == 'courseDesign') {
  8401. U.UF.DL.iframeLoad(_iframe, function () {
  8402. // _iframe.contentWindow.U.MD.O.W.load();
  8403. // _iframe.contentWindow.document.body.appendChild(script1);
  8404. _iframe.contentWindow.document.body.appendChild(script2);
  8405. _iframe.contentWindow.document.body.appendChild(script4);
  8406. })
  8407. } else if (str == 'mind') {
  8408. _iframe = _formdiv.querySelector('iframe')
  8409. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8410. //
  8411. _iframe.contentWindow.document.body.appendChild(script1);
  8412. _iframe.contentWindow.document.body.appendChild(script2);
  8413. _iframe.contentWindow.document.body.appendChild(script4);
  8414. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8415. })
  8416. if (onloadListener) {
  8417. _iframe.contentDocument.location.reload()
  8418. } else {
  8419. _iframe.contentDocument.location.reload()
  8420. }
  8421. } else if (str == 'whiteboard') {
  8422. _iframe = _formdiv.querySelector('iframe')
  8423. let onloadListener = _iframe.onload = () => {
  8424. _iframe.contentWindow.document.body.appendChild(script1);
  8425. _iframe.contentWindow.document.body.appendChild(script2);
  8426. _iframe.contentWindow.document.body.appendChild(script4);
  8427. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8428. };
  8429. // if (onloadListener) {
  8430. // try {
  8431. // _iframe.src += "?cocorobo="+new Date().getTime()
  8432. // _iframe.contentWindow.document.location.reload()
  8433. // } catch (error) {
  8434. // }
  8435. // } else {
  8436. // _iframe.contentDocument.location.reload()
  8437. // }
  8438. } else {
  8439. _iframe.onload = () => {
  8440. _iframe.contentWindow.document.body.appendChild(script1);
  8441. _iframe.contentWindow.document.body.appendChild(script2);
  8442. // _iframe.contentWindow.document.body.appendChild(script3);
  8443. _iframe.contentWindow.document.body.appendChild(script4);
  8444. };
  8445. }
  8446. _jie.onclick = async () => {
  8447. let text = ''
  8448. if (aTool == 1) {
  8449. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8450. } else if (aTool == 6) {
  8451. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8452. } else if (aTool == 3) {
  8453. text = await U.MD.D.I.getEditorContent(_iframe);
  8454. }
  8455. _loading.style.display = 'flex'
  8456. console.log(_loading);
  8457. var _ajs = _iframe.contentWindow.document.createElement("script");
  8458. _ajs.type = "text/javascript";
  8459. _ajs.innerHTML =
  8460. // 'console.log(' + _loading + ');\n' +
  8461. 'var _js = document.createElement("script");\n' +
  8462. '_js.type="text/javascript";\n' +
  8463. '_js.charset="UTF-8";\n' +
  8464. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8465. "_js.onload = function(){\n" +
  8466. ' var a = document.getElementsByTagName("img")\n' +
  8467. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8468. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8469. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8470. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8471. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8472. "beforeUpload_shishi(file," +
  8473. "'" +
  8474. _userid +
  8475. "'" +
  8476. ", " +
  8477. "'" +
  8478. _cid +
  8479. "'" +
  8480. ", " +
  8481. "'" +
  8482. _stage +
  8483. "'" +
  8484. ", " +
  8485. "'" +
  8486. _task +
  8487. "'" +
  8488. ", " +
  8489. "'" +
  8490. _tool +
  8491. "'" +
  8492. ", " +
  8493. "'" +
  8494. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  8495. "'" +
  8496. ", " +
  8497. "'" +
  8498. aTool +
  8499. "'" +
  8500. ", " +
  8501. "`" +
  8502. text +
  8503. "`" +
  8504. ")\n" +
  8505. " });\n" +
  8506. "}\n" +
  8507. "document.head.appendChild(_js);\n";
  8508. _iframe.contentWindow.document.head.appendChild(_ajs);
  8509. }
  8510. }
  8511. //U.MD.D.I.openClick(str);
  8512. //如果有任务栏信息
  8513. // if (_taskbar) {
  8514. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8515. // }
  8516. }
  8517. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  8518. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8519. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8520. _userinfo = US.userInfo, //登录用户信息
  8521. _userid = US.userInfo.userid //登录用户id
  8522. let _iframe;
  8523. let _cid = cid,
  8524. _stage = stage,
  8525. _task = task,
  8526. _tool = tool;
  8527. var _jie = $$("div", {
  8528. "style": {
  8529. "position": "absolute",
  8530. "bottom": "50px",
  8531. "right": "50px",
  8532. "zIndex": "9999",
  8533. "backgroundColor": "#2268bc",
  8534. "color": "#fff",
  8535. "padding": "12px 20px",
  8536. "cursor": "pointer",
  8537. "borderRadius": "4px",
  8538. },
  8539. "innerHTML": "提交作业"
  8540. })
  8541. let aTool = ''
  8542. let _loading = document.createElement('div')
  8543. _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;"
  8544. // _loading.id = "";
  8545. let _lchild = document.createElement('div')
  8546. let _limg = document.createElement('img')
  8547. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8548. _limg.style = "width: 26px;margin-right: 10px;"
  8549. _lchild.appendChild(_limg)
  8550. let _lspan = document.createElement('span')
  8551. _lspan.innerHTML = "上传中..."
  8552. _lchild.appendChild(_lspan)
  8553. _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%);"
  8554. _loading.appendChild(_lchild)
  8555. let _box = $$('div', {
  8556. "style": {
  8557. "position": "relative",
  8558. "width": "100%",
  8559. "height": "100%",
  8560. },
  8561. })
  8562. _box.appendChild(_loading)
  8563. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  8564. switch (str) {
  8565. case "whiteboard":
  8566. aTool = 1;
  8567. _iframe = $$("iframe", {
  8568. "frameborder": "no",
  8569. "border": "0",
  8570. "scrolling ": "no",
  8571. "style": {
  8572. "cssText": "border:0;width:100%;height:100%"
  8573. },
  8574. "src": "https://beta.iwb.cocorobo.cn/"
  8575. })
  8576. _box.appendChild(_iframe);
  8577. _box.appendChild(_jie);
  8578. _formdiv = new U.UF.UI.form(
  8579. "电子白板",
  8580. _box, {
  8581. "id": "whiteboard" + cid + stage + task + tool,
  8582. "style": {
  8583. "width": "90%",
  8584. "height": "90%",
  8585. "overflow": 'hidden'
  8586. },
  8587. "onresize": function () { }
  8588. }, {
  8589. closecallback: function () { }
  8590. }, {
  8591. "style": {
  8592. "height": "36px"
  8593. }
  8594. }).form; //创建窗体
  8595. _taskbar = {
  8596. "id": str + _formdiv.id,
  8597. "style": {
  8598. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8599. },
  8600. "name": "电子白板",
  8601. "forms": _formdiv,
  8602. "click": function () {
  8603. U.MD.D.I.openApplication(str, obj, info);
  8604. }
  8605. }
  8606. break;
  8607. case "mind":
  8608. aTool = 3;
  8609. _iframe = $$("iframe", {
  8610. "frameborder": "no",
  8611. "border": "0",
  8612. "scrolling ": "no",
  8613. "style": {
  8614. "cssText": "border:0;width:100%;height:100%"
  8615. },
  8616. "src": "/kityminder-editor/dist/index.html"
  8617. })
  8618. _box.appendChild(_iframe);
  8619. _box.appendChild(_jie);
  8620. _formdiv = new U.UF.UI.form(
  8621. "思维导图",
  8622. _box, { //"/jsmind/example/demo.html"
  8623. "id": "mind" + cid + stage + task + tool,
  8624. "style": {
  8625. "width": "90%",
  8626. "height": "90%",
  8627. "overflow": 'hidden'
  8628. },
  8629. "onresize": function () { }
  8630. }, {
  8631. closecallback: function () { }
  8632. }, {
  8633. "style": {
  8634. "height": "36px"
  8635. }
  8636. }).form; //创建窗体
  8637. _taskbar = {
  8638. "id": str + _formdiv.id,
  8639. "style": {
  8640. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8641. },
  8642. "name": "思维导图",
  8643. "forms": _formdiv,
  8644. "click": function () {
  8645. U.MD.D.I.openApplication(str, obj, info);
  8646. }
  8647. }
  8648. break;
  8649. case "MindMap":
  8650. aTool = 3;
  8651. _iframe = $$("iframe", {
  8652. "frameborder": "no",
  8653. "border": "0",
  8654. "scrolling ": "no",
  8655. "style": {
  8656. "cssText": "border:0;width:100%;height:100%"
  8657. },
  8658. "src": "//cloud.cocorobo.cn/mind/"
  8659. })
  8660. _box.appendChild(_iframe);
  8661. _box.appendChild(_jie);
  8662. _formdiv = new U.UF.UI.form(
  8663. "思维导图",
  8664. _box, { //"/jsmind/example/demo.html"
  8665. "id": "mind" + cid + stage + task + tool,
  8666. "style": {
  8667. "width": "90%",
  8668. "height": "90%",
  8669. "overflow": 'hidden'
  8670. },
  8671. "onresize": function () { }
  8672. }, {
  8673. closecallback: function () { }
  8674. }, {
  8675. "style": {
  8676. "height": "36px"
  8677. }
  8678. }).form; //创建窗体
  8679. _taskbar = {
  8680. "id": str + _formdiv.id,
  8681. "style": {
  8682. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8683. },
  8684. "name": "思维导图",
  8685. "forms": _formdiv,
  8686. "click": function () {
  8687. U.MD.D.I.openApplication(str, obj, info);
  8688. }
  8689. }
  8690. break;
  8691. case "doc":
  8692. aTool = 6;
  8693. _iframe = $$("iframe", {
  8694. "frameborder": "no",
  8695. "border": "0",
  8696. "scrolling ": "no",
  8697. "style": {
  8698. "cssText": "border:0;width:100%;height:100%"
  8699. },
  8700. "src": "/Office/Word/WordEditArea.htm"
  8701. })
  8702. _box.appendChild(_iframe);
  8703. _box.appendChild(_jie);
  8704. _formdiv = new U.UF.UI.form(
  8705. "协同文档",
  8706. _box, {
  8707. "id": "doc" + cid + stage + task + tool,
  8708. "style": {
  8709. "width": "90%",
  8710. "height": "90%",
  8711. "overflow": 'hidden'
  8712. },
  8713. "onresize": function () { }
  8714. }, {
  8715. closecallback: function () { }
  8716. }, {
  8717. "style": {
  8718. "height": "36px"
  8719. }
  8720. }).form; //创建窗体
  8721. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8722. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8723. })
  8724. _taskbar = {
  8725. "id": str + _formdiv.id,
  8726. "style": {
  8727. "backgroundImage": "url(/img/icon/doc.png)"
  8728. },
  8729. "name": "协同文档",
  8730. "forms": _formdiv,
  8731. "click": function () {
  8732. U.MD.D.I.openApplication(str, obj, info);
  8733. }
  8734. }
  8735. break;
  8736. case "mindNetwork": //好友打开
  8737. aTool = 7;
  8738. _iframe = $$("iframe", {
  8739. "webkitallowfullscreen": "",
  8740. "mozallowfullscreen": "",
  8741. "allowfullscreen": "",
  8742. "frameborder": "no",
  8743. "border": "0",
  8744. "scrolling ": "no",
  8745. "style": {
  8746. "cssText": "border:0; width:100%; height:100%;"
  8747. },
  8748. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8749. })
  8750. _box.appendChild(_iframe);
  8751. _box.appendChild(_jie);
  8752. _formdiv = new U.UF.UI.form(
  8753. "思维网格",
  8754. _box, {
  8755. "id": "mindNetwork" + cid + stage + task + tool,
  8756. "style": {
  8757. "width": "90%",
  8758. "height": "90%",
  8759. "overflow": 'hidden'
  8760. },
  8761. "onresize": function () { }
  8762. }, {
  8763. closecallback: function () { }
  8764. }, {
  8765. "style": {
  8766. "height": "36px"
  8767. }
  8768. }).form; //创建窗体
  8769. _taskbar = {
  8770. "id": str + _formdiv.id,
  8771. "style": {
  8772. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8773. },
  8774. "name": "思维网格",
  8775. "forms": _formdiv,
  8776. "click": function () {
  8777. U.MD.D.I.openApplication(str, obj, info);
  8778. }
  8779. }
  8780. break;
  8781. case "courseDesign":
  8782. _iframe = $$("iframe", {
  8783. "webkitallowfullscreen": "",
  8784. "mozallowfullscreen": "",
  8785. "allowfullscreen": "",
  8786. "frameborder": "no",
  8787. "border": "0",
  8788. "scrolling ": "no",
  8789. "style": {
  8790. "cssText": "border:0; width:100%; height:100%;"
  8791. },
  8792. "src": "/course-design-vue"
  8793. })
  8794. _box.appendChild(_iframe);
  8795. _box.appendChild(_jie);
  8796. _formdiv = new U.UF.UI.form(
  8797. "项目设计",
  8798. _box, {
  8799. "id": "courseDesign" + cid + stage + task + tool,
  8800. "style": {
  8801. "width": "90%",
  8802. "height": "90%",
  8803. "overflow": 'hidden'
  8804. },
  8805. "onresize": function () { }
  8806. }, {
  8807. closecallback: function () { }
  8808. }, {
  8809. "style": {
  8810. "height": "36px"
  8811. }
  8812. }).form; //创建窗体
  8813. _taskbar = {
  8814. "id": str + _formdiv.id,
  8815. "style": {
  8816. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8817. },
  8818. "name": "项目设计",
  8819. "forms": _formdiv,
  8820. "click": function () {
  8821. U.MD.D.I.openApplication(str, obj, info);
  8822. }
  8823. }
  8824. break;
  8825. }
  8826. const script1 = document.createElement("script");
  8827. script1.type = "text/javascript";
  8828. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8829. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8830. const script2 = document.createElement("script");
  8831. script2.type = "text/javascript";
  8832. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8833. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8834. const script3 = document.createElement("script");
  8835. script3.type = "text/javascript";
  8836. script3.charset = "UTF-8";
  8837. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8838. const script4 = document.createElement("script");
  8839. script4.type = "text/javascript";
  8840. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8841. script4.src = window.origin + "/js/Common/jietu2E.js";
  8842. if (_iframe) {
  8843. if (str == 'doc') {
  8844. _iframe = _formdiv.querySelector('iframe')
  8845. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8846. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8847. _iframe.contentWindow.document.body.appendChild(script1);
  8848. _iframe.contentWindow.document.body.appendChild(script2);
  8849. // _iframe.contentWindow.document.body.appendChild(script3);
  8850. _iframe.contentWindow.document.body.appendChild(script4);
  8851. })
  8852. if (onloadListener) {
  8853. _iframe.contentDocument.location.reload()
  8854. } else {
  8855. _iframe.contentDocument.location.reload()
  8856. }
  8857. } else if (str == 'courseDesign') {
  8858. U.UF.DL.iframeLoad(_iframe, function () {
  8859. // _iframe.contentWindow.U.MD.O.W.load();
  8860. // _iframe.contentWindow.document.body.appendChild(script1);
  8861. _iframe.contentWindow.document.body.appendChild(script2);
  8862. _iframe.contentWindow.document.body.appendChild(script4);
  8863. })
  8864. } else if (str == 'mind') {
  8865. _iframe = _formdiv.querySelector('iframe')
  8866. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8867. //
  8868. _iframe.contentWindow.document.body.appendChild(script1);
  8869. _iframe.contentWindow.document.body.appendChild(script2);
  8870. _iframe.contentWindow.document.body.appendChild(script4);
  8871. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8872. })
  8873. if (onloadListener) {
  8874. _iframe.contentDocument.location.reload()
  8875. } else {
  8876. _iframe.contentDocument.location.reload()
  8877. }
  8878. } else if (str == 'whiteboard') {
  8879. _iframe = _formdiv.querySelector('iframe')
  8880. let onloadListener = _iframe.onload = () => {
  8881. _iframe.contentWindow.document.body.appendChild(script1);
  8882. _iframe.contentWindow.document.body.appendChild(script2);
  8883. _iframe.contentWindow.document.body.appendChild(script4);
  8884. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8885. };
  8886. // if (onloadListener) {
  8887. // try {
  8888. // _iframe.src += "?cocorobo="+new Date().getTime()
  8889. // _iframe.contentWindow.document.location.reload()
  8890. // } catch (error) {
  8891. // }
  8892. // } else {
  8893. // _iframe.contentDocument.location.reload()
  8894. // }
  8895. } else {
  8896. _iframe.onload = () => {
  8897. _iframe.contentWindow.document.body.appendChild(script1);
  8898. _iframe.contentWindow.document.body.appendChild(script2);
  8899. // _iframe.contentWindow.document.body.appendChild(script3);
  8900. _iframe.contentWindow.document.body.appendChild(script4);
  8901. };
  8902. }
  8903. _jie.onclick = async () => {
  8904. let text = ''
  8905. if (aTool == 1) {
  8906. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8907. } else if (aTool == 6) {
  8908. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8909. } else if (aTool == 3) {
  8910. text = await U.MD.D.I.getEditorContent(_iframe);
  8911. }
  8912. _loading.style.display = 'flex'
  8913. console.log(_loading);
  8914. var _ajs = _iframe.contentWindow.document.createElement("script");
  8915. _ajs.type = "text/javascript";
  8916. _ajs.innerHTML =
  8917. // 'console.log(' + _loading + ');\n' +
  8918. 'var _js = document.createElement("script");\n' +
  8919. '_js.type="text/javascript";\n' +
  8920. '_js.charset="UTF-8";\n' +
  8921. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8922. "_js.onload = function(){\n" +
  8923. ' var a = document.getElementsByTagName("img")\n' +
  8924. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8925. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8926. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8927. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8928. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8929. "beforeUpload_shishi(file," +
  8930. "'" +
  8931. _userid +
  8932. "'" +
  8933. ", " +
  8934. "'" +
  8935. _cid +
  8936. "'" +
  8937. ", " +
  8938. "'" +
  8939. _stage +
  8940. "'" +
  8941. ", " +
  8942. "'" +
  8943. _task +
  8944. "'" +
  8945. ", " +
  8946. "'" +
  8947. _tool +
  8948. "'" +
  8949. ", " +
  8950. "'" +
  8951. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8952. "'" +
  8953. ", " +
  8954. "'" +
  8955. aTool +
  8956. "'" +
  8957. ", " +
  8958. "`" +
  8959. text +
  8960. "`" +
  8961. ")\n" +
  8962. " });\n" +
  8963. "}\n" +
  8964. "document.head.appendChild(_js);\n";
  8965. _iframe.contentWindow.document.head.appendChild(_ajs);
  8966. }
  8967. }
  8968. //U.MD.D.I.openClick(str);
  8969. //如果有任务栏信息
  8970. // if (_taskbar) {
  8971. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8972. // }
  8973. }
  8974. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8975. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8976. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8977. _userid = student.userid, //登录用户id
  8978. _username = student.student //用户名字
  8979. let _iframe;
  8980. let _cid = cid,
  8981. _stage = stage,
  8982. _task = task,
  8983. _tool = tool;
  8984. var _jie = $$("div", {
  8985. "style": {
  8986. "position": "absolute",
  8987. "bottom": "50px",
  8988. "right": "50px",
  8989. "zIndex": "9999",
  8990. "backgroundColor": "#2268bc",
  8991. "color": "#fff",
  8992. "padding": "12px 20px",
  8993. "cursor": "pointer",
  8994. "borderRadius": "4px",
  8995. },
  8996. "innerHTML": "提交作业"
  8997. })
  8998. let aTool = ''
  8999. let _loading = document.createElement('div')
  9000. _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;"
  9001. // _loading.id = "";
  9002. let _lchild = document.createElement('div')
  9003. let _limg = document.createElement('img')
  9004. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9005. _limg.style = "width: 26px;margin-right: 10px;"
  9006. _lchild.appendChild(_limg)
  9007. let _lspan = document.createElement('span')
  9008. _lspan.innerHTML = "上传中..."
  9009. _lchild.appendChild(_lspan)
  9010. _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%);"
  9011. _loading.appendChild(_lchild)
  9012. var _box = $$('div', {
  9013. "style": {
  9014. "position": "relative",
  9015. "width": "100%",
  9016. "height": "100%",
  9017. },
  9018. })
  9019. _box.appendChild(_loading)
  9020. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  9021. switch (str) {
  9022. case "whiteboard":
  9023. aTool = 1;
  9024. _iframe = $$("iframe", {
  9025. "frameborder": "no",
  9026. "border": "0",
  9027. "scrolling ": "no",
  9028. "style": {
  9029. "cssText": "border:0;width:100%;height:100%"
  9030. },
  9031. "src": "https://beta.iwb.cocorobo.cn/"
  9032. })
  9033. _box.appendChild(_iframe);
  9034. _box.appendChild(_jie);
  9035. _formdiv = new U.UF.UI.form(
  9036. "电子白板-" + _username,
  9037. _box, {
  9038. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9039. "style": {
  9040. "width": "90%",
  9041. "height": "90%",
  9042. "overflow": 'hidden'
  9043. },
  9044. "onresize": function () { }
  9045. }, {
  9046. closecallback: function () { }
  9047. }, {
  9048. "style": {
  9049. "height": "36px"
  9050. }
  9051. }).form; //创建窗体
  9052. _taskbar = {
  9053. "id": str + _formdiv.id,
  9054. "style": {
  9055. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9056. },
  9057. "name": "电子白板",
  9058. "forms": _formdiv,
  9059. "click": function () {
  9060. U.MD.D.I.openApplication(str, obj, info);
  9061. }
  9062. }
  9063. break;
  9064. case "mind":
  9065. aTool = 3;
  9066. _iframe = $$("iframe", {
  9067. "frameborder": "no",
  9068. "border": "0",
  9069. "scrolling ": "no",
  9070. "style": {
  9071. "cssText": "border:0;width:100%;height:100%"
  9072. },
  9073. "src": "/kityminder-editor/dist/index.html"
  9074. })
  9075. _box.appendChild(_iframe);
  9076. _box.appendChild(_jie);
  9077. _formdiv = new U.UF.UI.form(
  9078. "思维导图-" + _username,
  9079. _box, { //"/jsmind/example/demo.html"
  9080. "id": "mind" + cid + stage + task + tool + _userid,
  9081. "style": {
  9082. "width": "90%",
  9083. "height": "90%",
  9084. "overflow": 'hidden'
  9085. },
  9086. "onresize": function () { }
  9087. }, {
  9088. closecallback: function () { }
  9089. }, {
  9090. "style": {
  9091. "height": "36px"
  9092. }
  9093. }).form; //创建窗体
  9094. _taskbar = {
  9095. "id": str + _formdiv.id,
  9096. "style": {
  9097. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9098. },
  9099. "name": "思维导图",
  9100. "forms": _formdiv,
  9101. "click": function () {
  9102. U.MD.D.I.openApplication(str, obj, info);
  9103. }
  9104. }
  9105. break;
  9106. case "MindMap":
  9107. aTool = 3;
  9108. _iframe = $$("iframe", {
  9109. "frameborder": "no",
  9110. "border": "0",
  9111. "scrolling ": "no",
  9112. "style": {
  9113. "cssText": "border:0;width:100%;height:100%"
  9114. },
  9115. "src": "//cloud.cocorobo.cn/mind/"
  9116. })
  9117. _box.appendChild(_iframe);
  9118. _box.appendChild(_jie);
  9119. _formdiv = new U.UF.UI.form(
  9120. "思维导图-" + _username,
  9121. _box, { //"/jsmind/example/demo.html"
  9122. "id": "mind" + cid + stage + task + tool + _userid,
  9123. "style": {
  9124. "width": "90%",
  9125. "height": "90%",
  9126. "overflow": 'hidden'
  9127. },
  9128. "onresize": function () { }
  9129. }, {
  9130. closecallback: function () { }
  9131. }, {
  9132. "style": {
  9133. "height": "36px"
  9134. }
  9135. }).form; //创建窗体
  9136. _taskbar = {
  9137. "id": str + _formdiv.id,
  9138. "style": {
  9139. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9140. },
  9141. "name": "思维导图",
  9142. "forms": _formdiv,
  9143. "click": function () {
  9144. U.MD.D.I.openApplication(str, obj, info);
  9145. }
  9146. }
  9147. break;
  9148. case "doc":
  9149. aTool = 6;
  9150. _iframe = $$("iframe", {
  9151. "frameborder": "no",
  9152. "border": "0",
  9153. "scrolling ": "no",
  9154. "style": {
  9155. "cssText": "border:0;width:100%;height:100%"
  9156. },
  9157. "src": "/Office/Word/WordEditArea.htm"
  9158. })
  9159. _box.appendChild(_iframe);
  9160. _box.appendChild(_jie);
  9161. _formdiv = new U.UF.UI.form(
  9162. "协同文档-" + _username,
  9163. _box, {
  9164. "id": "doc" + cid + stage + task + tool + _userid,
  9165. "style": {
  9166. "width": "90%",
  9167. "height": "90%",
  9168. "overflow": 'hidden'
  9169. },
  9170. "onresize": function () { }
  9171. }, {
  9172. closecallback: function () { }
  9173. }, {
  9174. "style": {
  9175. "height": "36px"
  9176. }
  9177. }).form; //创建窗体
  9178. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9179. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9180. })
  9181. _taskbar = {
  9182. "id": str + _formdiv.id,
  9183. "style": {
  9184. "backgroundImage": "url(/img/icon/doc.png)"
  9185. },
  9186. "name": "协同文档",
  9187. "forms": _formdiv,
  9188. "click": function () {
  9189. U.MD.D.I.openApplication(str, obj, info);
  9190. }
  9191. }
  9192. break;
  9193. case "mindNetwork": //好友打开
  9194. aTool = 7;
  9195. _iframe = $$("iframe", {
  9196. "webkitallowfullscreen": "",
  9197. "mozallowfullscreen": "",
  9198. "allowfullscreen": "",
  9199. "frameborder": "no",
  9200. "border": "0",
  9201. "scrolling ": "no",
  9202. "style": {
  9203. "cssText": "border:0; width:100%; height:100%;"
  9204. },
  9205. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9206. })
  9207. _box.appendChild(_iframe);
  9208. _box.appendChild(_jie);
  9209. _formdiv = new U.UF.UI.form(
  9210. "思维网格-" + _username,
  9211. _box, {
  9212. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9213. "style": {
  9214. "width": "90%",
  9215. "height": "90%",
  9216. "overflow": 'hidden'
  9217. },
  9218. "onresize": function () { }
  9219. }, {
  9220. closecallback: function () { }
  9221. }, {
  9222. "style": {
  9223. "height": "36px"
  9224. }
  9225. }).form; //创建窗体
  9226. _taskbar = {
  9227. "id": str + _formdiv.id,
  9228. "style": {
  9229. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9230. },
  9231. "name": "思维网格",
  9232. "forms": _formdiv,
  9233. "click": function () {
  9234. U.MD.D.I.openApplication(str, obj, info);
  9235. }
  9236. }
  9237. break;
  9238. case "courseDesign":
  9239. _iframe = $$("iframe", {
  9240. "webkitallowfullscreen": "",
  9241. "mozallowfullscreen": "",
  9242. "allowfullscreen": "",
  9243. "frameborder": "no",
  9244. "border": "0",
  9245. "scrolling ": "no",
  9246. "style": {
  9247. "cssText": "border:0; width:100%; height:100%;"
  9248. },
  9249. "src": "/course-design-vue"
  9250. })
  9251. _box.appendChild(_iframe);
  9252. _box.appendChild(_jie);
  9253. _formdiv = new U.UF.UI.form(
  9254. "项目设计-" + _username,
  9255. _box, {
  9256. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9257. "style": {
  9258. "width": "90%",
  9259. "height": "90%",
  9260. "overflow": 'hidden'
  9261. },
  9262. "onresize": function () { }
  9263. }, {
  9264. closecallback: function () { }
  9265. }, {
  9266. "style": {
  9267. "height": "36px"
  9268. }
  9269. }).form; //创建窗体
  9270. _taskbar = {
  9271. "id": str + _formdiv.id,
  9272. "style": {
  9273. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9274. },
  9275. "name": "项目设计",
  9276. "forms": _formdiv,
  9277. "click": function () {
  9278. U.MD.D.I.openApplication(str, obj, info);
  9279. }
  9280. }
  9281. break;
  9282. }
  9283. const script1 = document.createElement("script");
  9284. script1.type = "text/javascript";
  9285. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9286. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9287. const script2 = document.createElement("script");
  9288. script2.type = "text/javascript";
  9289. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9290. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9291. const script3 = document.createElement("script");
  9292. script3.type = "text/javascript";
  9293. script3.charset = "UTF-8";
  9294. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9295. const script4 = document.createElement("script");
  9296. script4.type = "text/javascript";
  9297. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9298. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  9299. if (_iframe) {
  9300. if (str == 'doc') {
  9301. _iframe = _formdiv.querySelector('iframe')
  9302. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9303. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9304. _iframe.contentWindow.document.body.appendChild(script1);
  9305. _iframe.contentWindow.document.body.appendChild(script2);
  9306. // _iframe.contentWindow.document.body.appendChild(script3);
  9307. _iframe.contentWindow.document.body.appendChild(script4);
  9308. })
  9309. if (onloadListener) {
  9310. _iframe.contentDocument.location.reload()
  9311. } else {
  9312. _iframe.contentDocument.location.reload()
  9313. }
  9314. } else if (str == 'courseDesign') {
  9315. U.UF.DL.iframeLoad(_iframe, function () {
  9316. // _iframe.contentWindow.U.MD.O.W.load();
  9317. // _iframe.contentWindow.document.body.appendChild(script1);
  9318. _iframe.contentWindow.document.body.appendChild(script2);
  9319. _iframe.contentWindow.document.body.appendChild(script4);
  9320. })
  9321. } else if (str == 'mind') {
  9322. _iframe = _formdiv.querySelector('iframe')
  9323. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9324. //
  9325. _iframe.contentWindow.document.body.appendChild(script1);
  9326. _iframe.contentWindow.document.body.appendChild(script2);
  9327. _iframe.contentWindow.document.body.appendChild(script4);
  9328. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9329. })
  9330. if (onloadListener) {
  9331. _iframe.contentDocument.location.reload()
  9332. } else {
  9333. _iframe.contentDocument.location.reload()
  9334. }
  9335. } else if (str == 'whiteboard') {
  9336. _iframe = _formdiv.querySelector('iframe')
  9337. let onloadListener = _iframe.onload = () => {
  9338. _iframe.contentWindow.document.body.appendChild(script1);
  9339. _iframe.contentWindow.document.body.appendChild(script2);
  9340. _iframe.contentWindow.document.body.appendChild(script4);
  9341. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9342. };
  9343. // if (onloadListener) {
  9344. // try {
  9345. // _iframe.src += "?cocorobo="+new Date().getTime()
  9346. // _iframe.contentWindow.document.location.reload()
  9347. // } catch (error) {
  9348. // }
  9349. // } else {
  9350. // _iframe.contentDocument.location.reload()
  9351. // }
  9352. } else {
  9353. _iframe.onload = () => {
  9354. _iframe.contentWindow.document.body.appendChild(script1);
  9355. _iframe.contentWindow.document.body.appendChild(script2);
  9356. // _iframe.contentWindow.document.body.appendChild(script3);
  9357. _iframe.contentWindow.document.body.appendChild(script4);
  9358. };
  9359. }
  9360. _jie.onclick = async () => {
  9361. let text = ''
  9362. if (aTool == 1) {
  9363. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9364. } else if (aTool == 6) {
  9365. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9366. } else if (aTool == 3) {
  9367. text = await U.MD.D.I.getEditorContent(_iframe);
  9368. }
  9369. _loading.style.display = 'flex'
  9370. console.log(_loading);
  9371. var _ajs = _iframe.contentWindow.document.createElement("script");
  9372. _ajs.type = "text/javascript";
  9373. _ajs.innerHTML =
  9374. // 'console.log(' + _loading + ');\n' +
  9375. 'var _js = document.createElement("script");\n' +
  9376. '_js.type="text/javascript";\n' +
  9377. '_js.charset="UTF-8";\n' +
  9378. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9379. "_js.onload = function(){\n" +
  9380. ' var a = document.getElementsByTagName("img")\n' +
  9381. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9382. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9383. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9384. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9385. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9386. "beforeUpload_shishi(file," +
  9387. "'" +
  9388. _userid +
  9389. "'" +
  9390. ", " +
  9391. "'" +
  9392. _cid +
  9393. "'" +
  9394. ", " +
  9395. "'" +
  9396. _stage +
  9397. "'" +
  9398. ", " +
  9399. "'" +
  9400. _task +
  9401. "'" +
  9402. ", " +
  9403. "'" +
  9404. _tool +
  9405. "'" +
  9406. ", " +
  9407. "'" +
  9408. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  9409. "'" +
  9410. ", " +
  9411. "'" +
  9412. aTool +
  9413. "'" +
  9414. ", " +
  9415. "`" +
  9416. text +
  9417. "`" +
  9418. ")\n" +
  9419. " });\n" +
  9420. "}\n" +
  9421. "document.head.appendChild(_js);\n";
  9422. _iframe.contentWindow.document.head.appendChild(_ajs);
  9423. }
  9424. }
  9425. }
  9426. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  9427. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9428. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9429. _userid = student.userid, //登录用户id
  9430. _username = student.student //用户名字
  9431. let _iframe;
  9432. let _cid = cid,
  9433. _stage = stage,
  9434. _task = task,
  9435. _tool = tool;
  9436. var _jie = $$("div", {
  9437. "style": {
  9438. "position": "absolute",
  9439. "bottom": "50px",
  9440. "right": "50px",
  9441. "zIndex": "9999",
  9442. "backgroundColor": "#2268bc",
  9443. "color": "#fff",
  9444. "padding": "12px 20px",
  9445. "cursor": "pointer",
  9446. "borderRadius": "4px",
  9447. },
  9448. "innerHTML": "提交作业"
  9449. })
  9450. let aTool = ''
  9451. let _loading = document.createElement('div')
  9452. _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;"
  9453. // _loading.id = "";
  9454. let _lchild = document.createElement('div')
  9455. let _limg = document.createElement('img')
  9456. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9457. _limg.style = "width: 26px;margin-right: 10px;"
  9458. _lchild.appendChild(_limg)
  9459. let _lspan = document.createElement('span')
  9460. _lspan.innerHTML = "上传中..."
  9461. _lchild.appendChild(_lspan)
  9462. _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%);"
  9463. _loading.appendChild(_lchild)
  9464. var _box = $$('div', {
  9465. "style": {
  9466. "position": "relative",
  9467. "width": "100%",
  9468. "height": "100%",
  9469. },
  9470. })
  9471. _box.appendChild(_loading)
  9472. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  9473. switch (str) {
  9474. case "whiteboard":
  9475. aTool = 1;
  9476. _iframe = $$("iframe", {
  9477. "frameborder": "no",
  9478. "border": "0",
  9479. "scrolling ": "no",
  9480. "style": {
  9481. "cssText": "border:0;width:100%;height:100%"
  9482. },
  9483. "src": "https://beta.iwb.cocorobo.cn/"
  9484. })
  9485. _box.appendChild(_iframe);
  9486. _box.appendChild(_jie);
  9487. _formdiv = new U.UF.UI.form(
  9488. "电子白板-" + _username,
  9489. _box, {
  9490. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9491. "style": {
  9492. "width": "90%",
  9493. "height": "90%",
  9494. "overflow": 'hidden'
  9495. },
  9496. "onresize": function () { }
  9497. }, {
  9498. closecallback: function () { }
  9499. }, {
  9500. "style": {
  9501. "height": "36px"
  9502. }
  9503. }).form; //创建窗体
  9504. _taskbar = {
  9505. "id": str + _formdiv.id,
  9506. "style": {
  9507. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9508. },
  9509. "name": "电子白板",
  9510. "forms": _formdiv,
  9511. "click": function () {
  9512. U.MD.D.I.openApplication(str, obj, info);
  9513. }
  9514. }
  9515. break;
  9516. case "mind":
  9517. aTool = 3;
  9518. _iframe = $$("iframe", {
  9519. "frameborder": "no",
  9520. "border": "0",
  9521. "scrolling ": "no",
  9522. "style": {
  9523. "cssText": "border:0;width:100%;height:100%"
  9524. },
  9525. "src": "/kityminder-editor/dist/index.html"
  9526. })
  9527. _box.appendChild(_iframe);
  9528. _box.appendChild(_jie);
  9529. _formdiv = new U.UF.UI.form(
  9530. "思维导图-" + _username,
  9531. _box, { //"/jsmind/example/demo.html"
  9532. "id": "mind" + cid + stage + task + tool + _userid,
  9533. "style": {
  9534. "width": "90%",
  9535. "height": "90%",
  9536. "overflow": 'hidden'
  9537. },
  9538. "onresize": function () { }
  9539. }, {
  9540. closecallback: function () { }
  9541. }, {
  9542. "style": {
  9543. "height": "36px"
  9544. }
  9545. }).form; //创建窗体
  9546. _taskbar = {
  9547. "id": str + _formdiv.id,
  9548. "style": {
  9549. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9550. },
  9551. "name": "思维导图",
  9552. "forms": _formdiv,
  9553. "click": function () {
  9554. U.MD.D.I.openApplication(str, obj, info);
  9555. }
  9556. }
  9557. break;
  9558. case "MindMap":
  9559. aTool = 3;
  9560. _iframe = $$("iframe", {
  9561. "frameborder": "no",
  9562. "border": "0",
  9563. "scrolling ": "no",
  9564. "style": {
  9565. "cssText": "border:0;width:100%;height:100%"
  9566. },
  9567. "src": "//cloud.cocorobo.cn/mind/"
  9568. })
  9569. _box.appendChild(_iframe);
  9570. _box.appendChild(_jie);
  9571. _formdiv = new U.UF.UI.form(
  9572. "思维导图-" + _username,
  9573. _box, { //"/jsmind/example/demo.html"
  9574. "id": "mind" + cid + stage + task + tool + _userid,
  9575. "style": {
  9576. "width": "90%",
  9577. "height": "90%",
  9578. "overflow": 'hidden'
  9579. },
  9580. "onresize": function () { }
  9581. }, {
  9582. closecallback: function () { }
  9583. }, {
  9584. "style": {
  9585. "height": "36px"
  9586. }
  9587. }).form; //创建窗体
  9588. _taskbar = {
  9589. "id": str + _formdiv.id,
  9590. "style": {
  9591. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9592. },
  9593. "name": "思维导图",
  9594. "forms": _formdiv,
  9595. "click": function () {
  9596. U.MD.D.I.openApplication(str, obj, info);
  9597. }
  9598. }
  9599. break;
  9600. case "doc":
  9601. aTool = 6;
  9602. _iframe = $$("iframe", {
  9603. "frameborder": "no",
  9604. "border": "0",
  9605. "scrolling ": "no",
  9606. "style": {
  9607. "cssText": "border:0;width:100%;height:100%"
  9608. },
  9609. "src": "/Office/Word/WordEditArea.htm"
  9610. })
  9611. _box.appendChild(_iframe);
  9612. _box.appendChild(_jie);
  9613. _formdiv = new U.UF.UI.form(
  9614. "协同文档-" + _username,
  9615. _box, {
  9616. "id": "doc" + cid + stage + task + tool + _userid,
  9617. "style": {
  9618. "width": "90%",
  9619. "height": "90%",
  9620. "overflow": 'hidden'
  9621. },
  9622. "onresize": function () { }
  9623. }, {
  9624. closecallback: function () { }
  9625. }, {
  9626. "style": {
  9627. "height": "36px"
  9628. }
  9629. }).form; //创建窗体
  9630. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9631. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9632. })
  9633. _taskbar = {
  9634. "id": str + _formdiv.id,
  9635. "style": {
  9636. "backgroundImage": "url(/img/icon/doc.png)"
  9637. },
  9638. "name": "协同文档",
  9639. "forms": _formdiv,
  9640. "click": function () {
  9641. U.MD.D.I.openApplication(str, obj, info);
  9642. }
  9643. }
  9644. break;
  9645. case "mindNetwork": //好友打开
  9646. aTool = 7;
  9647. _iframe = $$("iframe", {
  9648. "webkitallowfullscreen": "",
  9649. "mozallowfullscreen": "",
  9650. "allowfullscreen": "",
  9651. "frameborder": "no",
  9652. "border": "0",
  9653. "scrolling ": "no",
  9654. "style": {
  9655. "cssText": "border:0; width:100%; height:100%;"
  9656. },
  9657. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9658. })
  9659. _box.appendChild(_iframe);
  9660. _box.appendChild(_jie);
  9661. _formdiv = new U.UF.UI.form(
  9662. "思维网格-" + _username,
  9663. _box, {
  9664. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9665. "style": {
  9666. "width": "90%",
  9667. "height": "90%",
  9668. "overflow": 'hidden'
  9669. },
  9670. "onresize": function () { }
  9671. }, {
  9672. closecallback: function () { }
  9673. }, {
  9674. "style": {
  9675. "height": "36px"
  9676. }
  9677. }).form; //创建窗体
  9678. _taskbar = {
  9679. "id": str + _formdiv.id,
  9680. "style": {
  9681. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9682. },
  9683. "name": "思维网格",
  9684. "forms": _formdiv,
  9685. "click": function () {
  9686. U.MD.D.I.openApplication(str, obj, info);
  9687. }
  9688. }
  9689. break;
  9690. case "courseDesign":
  9691. _iframe = $$("iframe", {
  9692. "webkitallowfullscreen": "",
  9693. "mozallowfullscreen": "",
  9694. "allowfullscreen": "",
  9695. "frameborder": "no",
  9696. "border": "0",
  9697. "scrolling ": "no",
  9698. "style": {
  9699. "cssText": "border:0; width:100%; height:100%;"
  9700. },
  9701. "src": "/course-design-vue"
  9702. })
  9703. _box.appendChild(_iframe);
  9704. _box.appendChild(_jie);
  9705. _formdiv = new U.UF.UI.form(
  9706. "项目设计-" + _username,
  9707. _box, {
  9708. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9709. "style": {
  9710. "width": "90%",
  9711. "height": "90%",
  9712. "overflow": 'hidden'
  9713. },
  9714. "onresize": function () { }
  9715. }, {
  9716. closecallback: function () { }
  9717. }, {
  9718. "style": {
  9719. "height": "36px"
  9720. }
  9721. }).form; //创建窗体
  9722. _taskbar = {
  9723. "id": str + _formdiv.id,
  9724. "style": {
  9725. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9726. },
  9727. "name": "项目设计",
  9728. "forms": _formdiv,
  9729. "click": function () {
  9730. U.MD.D.I.openApplication(str, obj, info);
  9731. }
  9732. }
  9733. break;
  9734. }
  9735. const script1 = document.createElement("script");
  9736. script1.type = "text/javascript";
  9737. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9738. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9739. const script2 = document.createElement("script");
  9740. script2.type = "text/javascript";
  9741. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9742. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9743. const script3 = document.createElement("script");
  9744. script3.type = "text/javascript";
  9745. script3.charset = "UTF-8";
  9746. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9747. const script4 = document.createElement("script");
  9748. script4.type = "text/javascript";
  9749. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9750. script4.src = window.origin + "/js/Common/jietu2E.js";
  9751. if (_iframe) {
  9752. if (str == 'doc') {
  9753. _iframe = _formdiv.querySelector('iframe')
  9754. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9755. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9756. _iframe.contentWindow.document.body.appendChild(script1);
  9757. _iframe.contentWindow.document.body.appendChild(script2);
  9758. // _iframe.contentWindow.document.body.appendChild(script3);
  9759. _iframe.contentWindow.document.body.appendChild(script4);
  9760. })
  9761. if (onloadListener) {
  9762. _iframe.contentDocument.location.reload()
  9763. } else {
  9764. _iframe.contentDocument.location.reload()
  9765. }
  9766. } else if (str == 'courseDesign') {
  9767. U.UF.DL.iframeLoad(_iframe, function () {
  9768. // _iframe.contentWindow.U.MD.O.W.load();
  9769. // _iframe.contentWindow.document.body.appendChild(script1);
  9770. _iframe.contentWindow.document.body.appendChild(script2);
  9771. _iframe.contentWindow.document.body.appendChild(script4);
  9772. })
  9773. } else if (str == 'mind') {
  9774. _iframe = _formdiv.querySelector('iframe')
  9775. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9776. //
  9777. _iframe.contentWindow.document.body.appendChild(script1);
  9778. _iframe.contentWindow.document.body.appendChild(script2);
  9779. _iframe.contentWindow.document.body.appendChild(script4);
  9780. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9781. })
  9782. if (onloadListener) {
  9783. _iframe.contentDocument.location.reload()
  9784. } else {
  9785. _iframe.contentDocument.location.reload()
  9786. }
  9787. } else if (str == 'whiteboard') {
  9788. _iframe = _formdiv.querySelector('iframe')
  9789. let onloadListener = _iframe.onload = () => {
  9790. _iframe.contentWindow.document.body.appendChild(script1);
  9791. _iframe.contentWindow.document.body.appendChild(script2);
  9792. _iframe.contentWindow.document.body.appendChild(script4);
  9793. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9794. };
  9795. // if (onloadListener) {
  9796. // try {
  9797. // _iframe.src += "?cocorobo="+new Date().getTime()
  9798. // _iframe.contentWindow.document.location.reload()
  9799. // } catch (error) {
  9800. // }
  9801. // } else {
  9802. // _iframe.contentDocument.location.reload()
  9803. // }
  9804. } else {
  9805. _iframe.onload = () => {
  9806. _iframe.contentWindow.document.body.appendChild(script1);
  9807. _iframe.contentWindow.document.body.appendChild(script2);
  9808. // _iframe.contentWindow.document.body.appendChild(script3);
  9809. _iframe.contentWindow.document.body.appendChild(script4);
  9810. };
  9811. }
  9812. _jie.onclick = async () => {
  9813. let text = ''
  9814. if (aTool == 1) {
  9815. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9816. } else if (aTool == 6) {
  9817. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9818. } else if (aTool == 3) {
  9819. text = await U.MD.D.I.getEditorContent(_iframe);
  9820. }
  9821. _loading.style.display = 'flex'
  9822. console.log(_loading);
  9823. var _ajs = _iframe.contentWindow.document.createElement("script");
  9824. _ajs.type = "text/javascript";
  9825. _ajs.innerHTML =
  9826. // 'console.log(' + _loading + ');\n' +
  9827. 'var _js = document.createElement("script");\n' +
  9828. '_js.type="text/javascript";\n' +
  9829. '_js.charset="UTF-8";\n' +
  9830. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9831. "_js.onload = function(){\n" +
  9832. ' var a = document.getElementsByTagName("img")\n' +
  9833. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9834. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9835. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9836. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9837. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9838. "beforeUpload_shishi(file," +
  9839. "'" +
  9840. _userid +
  9841. "'" +
  9842. ", " +
  9843. "'" +
  9844. _cid +
  9845. "'" +
  9846. ", " +
  9847. "'" +
  9848. _stage +
  9849. "'" +
  9850. ", " +
  9851. "'" +
  9852. _task +
  9853. "'" +
  9854. ", " +
  9855. "'" +
  9856. _tool +
  9857. "'" +
  9858. ", " +
  9859. "'" +
  9860. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9861. "'" +
  9862. ", " +
  9863. "'" +
  9864. aTool +
  9865. "'" +
  9866. ", " +
  9867. "`" +
  9868. text +
  9869. "`" +
  9870. ")\n" +
  9871. " });\n" +
  9872. "}\n" +
  9873. "document.head.appendChild(_js);\n";
  9874. _iframe.contentWindow.document.head.appendChild(_ajs);
  9875. }
  9876. }
  9877. }
  9878. U.MD.D.I.getEditorContent = function (iframe) {
  9879. return new Promise((resolve, reject) => {
  9880. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9881. console.log(content);
  9882. resolve(content)
  9883. });
  9884. });
  9885. }
  9886. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9887. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9888. // if (res.value[0].length > 0) {
  9889. // // resolve(res.value[0][0].text);
  9890. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9891. // $(fileInput).val('');
  9892. // });
  9893. // }
  9894. // }, [], { "type": "GET", "withCredentials": true });
  9895. var xmlhttp;
  9896. var Mac, Sn, DeviceId
  9897. if (window.XMLHttpRequest) {
  9898. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9899. xmlhttp = new XMLHttpRequest();
  9900. } else {
  9901. // IE6, IE5 浏览器执行代码
  9902. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9903. }
  9904. xmlhttp.onreadystatechange = function () {
  9905. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9906. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9907. // resolve(res.value[0][0].text);
  9908. if (type == '2') {
  9909. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9910. } else if (type == '3') {
  9911. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9912. }
  9913. } else {
  9914. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9915. }
  9916. }
  9917. }
  9918. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9919. xmlhttp.send();
  9920. }
  9921. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9922. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9923. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9924. _userinfo = US.userInfo, //登录用户信息
  9925. _userid = US.userInfo.userid //登录用户id
  9926. let _iframe;
  9927. let _cid = cid,
  9928. _stage = stage,
  9929. _task = task,
  9930. _tool = tool;
  9931. var _jie = $$("div", {
  9932. "style": {
  9933. "position": "absolute",
  9934. "bottom": "50px",
  9935. "right": "50px",
  9936. "zIndex": "9999",
  9937. "backgroundColor": "#2268bc",
  9938. "color": "#fff",
  9939. "padding": "12px 20px",
  9940. "cursor": "pointer",
  9941. "borderRadius": "4px",
  9942. },
  9943. "innerHTML": "确认并提交"
  9944. })
  9945. let aTool = ''
  9946. let _loading = document.createElement('div')
  9947. _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;"
  9948. // _loading.id = "";
  9949. let _lchild = document.createElement('div')
  9950. let _limg = document.createElement('img')
  9951. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9952. _limg.style = "width: 26px;margin-right: 10px;"
  9953. _lchild.appendChild(_limg)
  9954. let _lspan = document.createElement('span')
  9955. _lspan.innerHTML = "上传中..."
  9956. _lchild.appendChild(_lspan)
  9957. _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%);"
  9958. _loading.appendChild(_lchild)
  9959. var _box = $$('div', {
  9960. "style": {
  9961. "position": "relative",
  9962. "width": "100%",
  9963. "height": "100%",
  9964. },
  9965. })
  9966. _box.appendChild(_loading)
  9967. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9968. switch (str) {
  9969. case "whiteboard":
  9970. aTool = 1;
  9971. _iframe = $$("iframe", {
  9972. "frameborder": "no",
  9973. "border": "0",
  9974. "scrolling ": "no",
  9975. "style": {
  9976. "cssText": "border:0;width:100%;height:100%"
  9977. },
  9978. "src": "https://beta.iwb.cocorobo.cn/"
  9979. })
  9980. _box.appendChild(_iframe);
  9981. _box.appendChild(_jie);
  9982. _formdiv = new U.UF.UI.form(
  9983. "电子白板",
  9984. _box, {
  9985. "id": "whiteboards" + cid + stage + task + tool,
  9986. "style": {
  9987. "width": "90%",
  9988. "height": "90%",
  9989. "overflow": 'hidden'
  9990. },
  9991. "onresize": function () { }
  9992. }, {
  9993. closecallback: function () { }
  9994. }, {
  9995. "style": {
  9996. "height": "36px"
  9997. }
  9998. }).form; //创建窗体
  9999. _taskbar = {
  10000. "id": str + _formdiv.id,
  10001. "style": {
  10002. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10003. },
  10004. "name": "电子白板",
  10005. "forms": _formdiv,
  10006. "click": function () {
  10007. U.MD.D.I.openApplication(str, obj, info);
  10008. }
  10009. }
  10010. break;
  10011. case "mind":
  10012. aTool = 3;
  10013. _iframe = $$("iframe", {
  10014. "frameborder": "no",
  10015. "border": "0",
  10016. "scrolling ": "no",
  10017. "style": {
  10018. "cssText": "border:0;width:100%;height:100%"
  10019. },
  10020. "src": "/kityminder-editor/dist/index.html"
  10021. });
  10022. _box.appendChild(_iframe);
  10023. _box.appendChild(_jie);
  10024. _formdiv = new U.UF.UI.form(
  10025. "思维导图",
  10026. _box, { //"/jsmind/example/demo.html"
  10027. "id": "minds" + cid + stage + task + tool,
  10028. "style": {
  10029. "width": "90%",
  10030. "height": "90%",
  10031. "overflow": 'hidden'
  10032. },
  10033. "onresize": function () { }
  10034. }, {
  10035. closecallback: function () { }
  10036. }, {
  10037. "style": {
  10038. "height": "36px"
  10039. }
  10040. }).form; //创建窗体
  10041. _taskbar = {
  10042. "id": str + _formdiv.id,
  10043. "style": {
  10044. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10045. },
  10046. "name": "思维导图",
  10047. "forms": _formdiv,
  10048. "click": function () {
  10049. U.MD.D.I.openApplication(str, obj, info);
  10050. }
  10051. }
  10052. break;
  10053. case "doc":
  10054. aTool = 6;
  10055. _iframe = $$("iframe", {
  10056. "frameborder": "no",
  10057. "border": "0",
  10058. "scrolling ": "no",
  10059. "style": {
  10060. "cssText": "border:0;width:100%;height:100%"
  10061. },
  10062. "src": "/Office/Word/WordEditArea.htm"
  10063. })
  10064. _box.appendChild(_iframe);
  10065. _box.appendChild(_jie);
  10066. _formdiv = new U.UF.UI.form(
  10067. "协同文档",
  10068. _box, {
  10069. "id": "docs" + cid + stage + task + tool,
  10070. "style": {
  10071. "width": "90%",
  10072. "height": "90%",
  10073. "overflow": 'hidden'
  10074. },
  10075. "onresize": function () { }
  10076. }, {
  10077. closecallback: function () { }
  10078. }, {
  10079. "style": {
  10080. "height": "36px"
  10081. }
  10082. }).form; //创建窗体
  10083. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10084. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10085. })
  10086. _taskbar = {
  10087. "id": str + _formdiv.id,
  10088. "style": {
  10089. "backgroundImage": "url(/img/icon/doc.png)"
  10090. },
  10091. "name": "协同文档",
  10092. "forms": _formdiv,
  10093. "click": function () {
  10094. U.MD.D.I.openApplication(str, obj, info);
  10095. }
  10096. }
  10097. break;
  10098. }
  10099. const script1 = document.createElement("script");
  10100. script1.type = "text/javascript";
  10101. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10102. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  10103. const script2 = document.createElement("script");
  10104. script2.type = "text/javascript";
  10105. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10106. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  10107. const script3 = document.createElement("script");
  10108. script3.type = "text/javascript";
  10109. script3.charset = "UTF-8";
  10110. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  10111. const script4 = document.createElement("script");
  10112. script4.type = "text/javascript";
  10113. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10114. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  10115. if (_iframe) {
  10116. if (str == 'doc') {
  10117. _iframe = _formdiv.querySelector('iframe')
  10118. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10119. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10120. _iframe.contentWindow.document.body.appendChild(script1);
  10121. _iframe.contentWindow.document.body.appendChild(script2);
  10122. // _iframe.contentWindow.document.body.appendChild(script3);
  10123. _iframe.contentWindow.document.body.appendChild(script4);
  10124. })
  10125. if (onloadListener) {
  10126. _iframe.contentDocument.location.reload()
  10127. } else {
  10128. _iframe.contentDocument.location.reload()
  10129. }
  10130. } else if (str == 'mind') {
  10131. _iframe = _formdiv.querySelector('iframe')
  10132. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10133. _iframe.contentWindow.document.body.appendChild(script1);
  10134. _iframe.contentWindow.document.body.appendChild(script2);
  10135. _iframe.contentWindow.document.body.appendChild(script4);
  10136. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10137. })
  10138. if (onloadListener) {
  10139. _iframe.contentDocument.location.reload()
  10140. } else {
  10141. _iframe.contentDocument.location.reload()
  10142. }
  10143. } else {
  10144. _iframe.onload = () => {
  10145. _iframe.contentWindow.document.body.appendChild(script1);
  10146. _iframe.contentWindow.document.body.appendChild(script2);
  10147. // _iframe.contentWindow.document.body.appendChild(script3);
  10148. _iframe.contentWindow.document.body.appendChild(script4);
  10149. };
  10150. }
  10151. _jie.onclick = async () => {
  10152. let text = ''
  10153. if (aTool == 6) {
  10154. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10155. } else if (aTool == 3) {
  10156. text = await U.MD.D.I.getEditorContent(_iframe);
  10157. }
  10158. _loading.style.display = 'flex'
  10159. console.log(_loading);
  10160. var _ajs = _iframe.contentWindow.document.createElement("script");
  10161. _ajs.type = "text/javascript";
  10162. _ajs.innerHTML =
  10163. // 'console.log(' + _loading + ');\n' +
  10164. 'var _js = document.createElement("script");\n' +
  10165. '_js.type="text/javascript";\n' +
  10166. '_js.charset="UTF-8";\n' +
  10167. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10168. "_js.onload = function(){\n" +
  10169. ' var a = document.getElementsByTagName("img")\n' +
  10170. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10171. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10172. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10173. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10174. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10175. "beforeUpload_shishi(file," +
  10176. "'" +
  10177. _userid +
  10178. "'" +
  10179. ", " +
  10180. "'" +
  10181. _cid +
  10182. "'" +
  10183. ", " +
  10184. "'" +
  10185. _stage +
  10186. "'" +
  10187. ", " +
  10188. "'" +
  10189. _task +
  10190. "'" +
  10191. ", " +
  10192. "'" +
  10193. _tool +
  10194. "'" +
  10195. ", " +
  10196. "'" +
  10197. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  10198. "'" +
  10199. ", " +
  10200. "'" +
  10201. aTool +
  10202. "'" +
  10203. ", " +
  10204. "`" +
  10205. text +
  10206. "`" +
  10207. ")\n" +
  10208. " });\n" +
  10209. "}\n" +
  10210. "document.head.appendChild(_js);\n";
  10211. _iframe.contentWindow.document.head.appendChild(_ajs);
  10212. }
  10213. }
  10214. //U.MD.D.I.openClick(str);
  10215. //如果有任务栏信息
  10216. // if (_taskbar) {
  10217. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10218. // }
  10219. }
  10220. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  10221. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10222. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10223. _userinfo = US.userInfo, //登录用户信息
  10224. _userid = US.userInfo.userid //登录用户id
  10225. let _iframe;
  10226. let _cid = cid,
  10227. _stage = stage,
  10228. _task = task,
  10229. _tool = tool;
  10230. var _jie = $$("div", {
  10231. "style": {
  10232. "position": "absolute",
  10233. "bottom": "50px",
  10234. "right": "50px",
  10235. "zIndex": "9999",
  10236. "backgroundColor": "#2268bc",
  10237. "color": "#fff",
  10238. "padding": "12px 20px",
  10239. "cursor": "pointer",
  10240. "borderRadius": "4px",
  10241. },
  10242. "innerHTML": "确认并提交"
  10243. })
  10244. let aTool = ''
  10245. let _loading = document.createElement('div')
  10246. _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;"
  10247. // _loading.id = "";
  10248. let _lchild = document.createElement('div')
  10249. let _limg = document.createElement('img')
  10250. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10251. _limg.style = "width: 26px;margin-right: 10px;"
  10252. _lchild.appendChild(_limg)
  10253. let _lspan = document.createElement('span')
  10254. _lspan.innerHTML = "上传中..."
  10255. _lchild.appendChild(_lspan)
  10256. _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%);"
  10257. _loading.appendChild(_lchild)
  10258. var _box = $$('div', {
  10259. "style": {
  10260. "position": "relative",
  10261. "width": "100%",
  10262. "height": "100%",
  10263. },
  10264. })
  10265. _box.appendChild(_loading)
  10266. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  10267. switch (str) {
  10268. case "whiteboard":
  10269. aTool = 1;
  10270. _iframe = $$("iframe", {
  10271. "frameborder": "no",
  10272. "border": "0",
  10273. "scrolling ": "no",
  10274. "style": {
  10275. "cssText": "border:0;width:100%;height:100%"
  10276. },
  10277. "src": "https://beta.iwb.cocorobo.cn/"
  10278. })
  10279. _box.appendChild(_iframe);
  10280. _box.appendChild(_jie);
  10281. _formdiv = new U.UF.UI.form(
  10282. "电子白板",
  10283. _box, {
  10284. "id": "whiteboards" + cid + stage + task + tool,
  10285. "style": {
  10286. "width": "90%",
  10287. "height": "90%",
  10288. "overflow": 'hidden'
  10289. },
  10290. "onresize": function () { }
  10291. }, {
  10292. closecallback: function () { }
  10293. }, {
  10294. "style": {
  10295. "height": "36px"
  10296. }
  10297. }).form; //创建窗体
  10298. _taskbar = {
  10299. "id": str + _formdiv.id,
  10300. "style": {
  10301. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10302. },
  10303. "name": "电子白板",
  10304. "forms": _formdiv,
  10305. "click": function () {
  10306. U.MD.D.I.openApplication(str, obj, info);
  10307. }
  10308. }
  10309. break;
  10310. case "mind":
  10311. aTool = 3;
  10312. _iframe = $$("iframe", {
  10313. "frameborder": "no",
  10314. "border": "0",
  10315. "scrolling ": "no",
  10316. "style": {
  10317. "cssText": "border:0;width:100%;height:100%"
  10318. },
  10319. "src": "/kityminder-editor/dist/index.html"
  10320. });
  10321. _box.appendChild(_iframe);
  10322. _box.appendChild(_jie);
  10323. _formdiv = new U.UF.UI.form(
  10324. "思维导图",
  10325. _box, { //"/jsmind/example/demo.html"
  10326. "id": "minds" + cid + stage + task + tool,
  10327. "style": {
  10328. "width": "90%",
  10329. "height": "90%",
  10330. "overflow": 'hidden'
  10331. },
  10332. "onresize": function () { }
  10333. }, {
  10334. closecallback: function () { }
  10335. }, {
  10336. "style": {
  10337. "height": "36px"
  10338. }
  10339. }).form; //创建窗体
  10340. _taskbar = {
  10341. "id": str + _formdiv.id,
  10342. "style": {
  10343. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10344. },
  10345. "name": "思维导图",
  10346. "forms": _formdiv,
  10347. "click": function () {
  10348. U.MD.D.I.openApplication(str, obj, info);
  10349. }
  10350. }
  10351. break;
  10352. case "doc":
  10353. aTool = 6;
  10354. _iframe = $$("iframe", {
  10355. "frameborder": "no",
  10356. "border": "0",
  10357. "scrolling ": "no",
  10358. "style": {
  10359. "cssText": "border:0;width:100%;height:100%"
  10360. },
  10361. "src": "/Office/Word/WordEditArea.htm"
  10362. })
  10363. _box.appendChild(_iframe);
  10364. _box.appendChild(_jie);
  10365. _formdiv = new U.UF.UI.form(
  10366. "协同文档",
  10367. _box, {
  10368. "id": "docs" + cid + stage + task + tool,
  10369. "style": {
  10370. "width": "90%",
  10371. "height": "90%",
  10372. "overflow": 'hidden'
  10373. },
  10374. "onresize": function () { }
  10375. }, {
  10376. closecallback: function () { }
  10377. }, {
  10378. "style": {
  10379. "height": "36px"
  10380. }
  10381. }).form; //创建窗体
  10382. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10383. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10384. })
  10385. _taskbar = {
  10386. "id": str + _formdiv.id,
  10387. "style": {
  10388. "backgroundImage": "url(/img/icon/doc.png)"
  10389. },
  10390. "name": "协同文档",
  10391. "forms": _formdiv,
  10392. "click": function () {
  10393. U.MD.D.I.openApplication(str, obj, info);
  10394. }
  10395. }
  10396. break;
  10397. }
  10398. const script1 = document.createElement("script");
  10399. script1.type = "text/javascript";
  10400. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10401. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  10402. const script2 = document.createElement("script");
  10403. script2.type = "text/javascript";
  10404. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10405. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  10406. const script3 = document.createElement("script");
  10407. script3.type = "text/javascript";
  10408. script3.charset = "UTF-8";
  10409. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  10410. const script4 = document.createElement("script");
  10411. script4.type = "text/javascript";
  10412. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10413. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  10414. if (_iframe) {
  10415. if (str == 'doc') {
  10416. _iframe = _formdiv.querySelector('iframe')
  10417. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10418. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10419. _iframe.contentWindow.document.body.appendChild(script1);
  10420. _iframe.contentWindow.document.body.appendChild(script2);
  10421. // _iframe.contentWindow.document.body.appendChild(script3);
  10422. _iframe.contentWindow.document.body.appendChild(script4);
  10423. })
  10424. if (onloadListener) {
  10425. _iframe.contentDocument.location.reload()
  10426. } else {
  10427. _iframe.contentDocument.location.reload()
  10428. }
  10429. } else if (str == 'mind') {
  10430. _iframe = _formdiv.querySelector('iframe')
  10431. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10432. _iframe.contentWindow.document.body.appendChild(script1);
  10433. _iframe.contentWindow.document.body.appendChild(script2);
  10434. _iframe.contentWindow.document.body.appendChild(script4);
  10435. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10436. })
  10437. if (onloadListener) {
  10438. _iframe.contentDocument.location.reload()
  10439. } else {
  10440. _iframe.contentDocument.location.reload()
  10441. }
  10442. } else {
  10443. _iframe.onload = () => {
  10444. _iframe.contentWindow.document.body.appendChild(script1);
  10445. _iframe.contentWindow.document.body.appendChild(script2);
  10446. // _iframe.contentWindow.document.body.appendChild(script3);
  10447. _iframe.contentWindow.document.body.appendChild(script4);
  10448. };
  10449. }
  10450. _jie.onclick = async () => {
  10451. let text = ''
  10452. if (aTool == 6) {
  10453. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10454. } else if (aTool == 3) {
  10455. text = await U.MD.D.I.getEditorContent(_iframe);
  10456. }
  10457. _loading.style.display = 'flex'
  10458. console.log(_loading);
  10459. var _ajs = _iframe.contentWindow.document.createElement("script");
  10460. _ajs.type = "text/javascript";
  10461. _ajs.innerHTML =
  10462. // 'console.log(' + _loading + ');\n' +
  10463. 'var _js = document.createElement("script");\n' +
  10464. '_js.type="text/javascript";\n' +
  10465. '_js.charset="UTF-8";\n' +
  10466. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10467. "_js.onload = function(){\n" +
  10468. ' var a = document.getElementsByTagName("img")\n' +
  10469. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10470. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10471. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10472. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10473. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10474. "beforeUpload_shishi(file," +
  10475. "'" +
  10476. _userid +
  10477. "'" +
  10478. ", " +
  10479. "'" +
  10480. _cid +
  10481. "'" +
  10482. ", " +
  10483. "'" +
  10484. _stage +
  10485. "'" +
  10486. ", " +
  10487. "'" +
  10488. _task +
  10489. "'" +
  10490. ", " +
  10491. "'" +
  10492. _tool +
  10493. "'" +
  10494. ", " +
  10495. "'" +
  10496. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  10497. "'" +
  10498. ", " +
  10499. "'" +
  10500. aTool +
  10501. "'" +
  10502. ", " +
  10503. "`" +
  10504. text +
  10505. "`" +
  10506. ")\n" +
  10507. " });\n" +
  10508. "}\n" +
  10509. "document.head.appendChild(_js);\n";
  10510. _iframe.contentWindow.document.head.appendChild(_ajs);
  10511. }
  10512. }
  10513. //U.MD.D.I.openClick(str);
  10514. //如果有任务栏信息
  10515. // if (_taskbar) {
  10516. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10517. // }
  10518. }
  10519. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  10520. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10521. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10522. _userinfo = US.userInfo, //登录用户信息
  10523. _userid = US.userInfo.userid //登录用户id
  10524. let _iframe;
  10525. let _cid = cid,
  10526. _stage = stage,
  10527. _task = task,
  10528. _tool = tool;
  10529. var _jie = $$("div", {
  10530. "style": {
  10531. "position": "absolute",
  10532. "bottom": "50px",
  10533. "right": "50px",
  10534. "zIndex": "9999",
  10535. "backgroundColor": "#2268bc",
  10536. "color": "#fff",
  10537. "padding": "12px 20px",
  10538. "cursor": "pointer",
  10539. "borderRadius": "4px",
  10540. },
  10541. "innerHTML": "上传模板"
  10542. })
  10543. let aTool = ''
  10544. let _loading = document.createElement('div')
  10545. _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;"
  10546. // _loading.id = "";
  10547. let _lchild = document.createElement('div')
  10548. let _limg = document.createElement('img')
  10549. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10550. _limg.style = "width: 26px;margin-right: 10px;"
  10551. _lchild.appendChild(_limg)
  10552. let _lspan = document.createElement('span')
  10553. _lspan.innerHTML = "上传中..."
  10554. _lchild.appendChild(_lspan)
  10555. _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%);"
  10556. _loading.appendChild(_lchild)
  10557. var _box = $$('div', {
  10558. "style": {
  10559. "position": "relative",
  10560. "width": "100%",
  10561. "height": "100%",
  10562. },
  10563. })
  10564. _box.appendChild(_loading)
  10565. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  10566. switch (str) {
  10567. case "whiteboard":
  10568. aTool = 1;
  10569. _iframe = $$("iframe", {
  10570. "frameborder": "no",
  10571. "border": "0",
  10572. "scrolling ": "no",
  10573. "style": {
  10574. "cssText": "border:0;width:100%;height:100%"
  10575. },
  10576. "src": "https://beta.iwb.cocorobo.cn/"
  10577. })
  10578. _box.appendChild(_iframe);
  10579. _box.appendChild(_jie);
  10580. _formdiv = new U.UF.UI.form(
  10581. "电子白板",
  10582. _box, {
  10583. "id": "whiteboards_Yu" + cid + stage + task + tool,
  10584. "style": {
  10585. "width": "90%",
  10586. "height": "90%",
  10587. "overflow": 'hidden'
  10588. },
  10589. "onresize": function () { }
  10590. }, {
  10591. closecallback: function () { }
  10592. }, {
  10593. "style": {
  10594. "height": "36px"
  10595. }
  10596. }).form; //创建窗体
  10597. _taskbar = {
  10598. "id": str + _formdiv.id,
  10599. "style": {
  10600. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10601. },
  10602. "name": "电子白板",
  10603. "forms": _formdiv,
  10604. "click": function () {
  10605. U.MD.D.I.openApplication(str, obj, info);
  10606. }
  10607. }
  10608. break;
  10609. case "mind":
  10610. aTool = 3;
  10611. _iframe = $$("iframe", {
  10612. "frameborder": "no",
  10613. "border": "0",
  10614. "scrolling ": "no",
  10615. "style": {
  10616. "cssText": "border:0;width:100%;height:100%"
  10617. },
  10618. "src": "/kityminder-editor/dist/index.html"
  10619. });
  10620. _box.appendChild(_iframe);
  10621. _box.appendChild(_jie);
  10622. _formdiv = new U.UF.UI.form(
  10623. "思维导图",
  10624. _box, { //"/jsmind/example/demo.html"
  10625. "id": "minds_Yu" + cid + stage + task + tool,
  10626. "style": {
  10627. "width": "90%",
  10628. "height": "90%",
  10629. "overflow": 'hidden'
  10630. },
  10631. "onresize": function () { }
  10632. }, {
  10633. closecallback: function () { }
  10634. }, {
  10635. "style": {
  10636. "height": "36px"
  10637. }
  10638. }).form; //创建窗体
  10639. _taskbar = {
  10640. "id": str + _formdiv.id,
  10641. "style": {
  10642. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10643. },
  10644. "name": "思维导图",
  10645. "forms": _formdiv,
  10646. "click": function () {
  10647. U.MD.D.I.openApplication(str, obj, info);
  10648. }
  10649. }
  10650. break;
  10651. case "doc":
  10652. aTool = 6;
  10653. _iframe = $$("iframe", {
  10654. "frameborder": "no",
  10655. "border": "0",
  10656. "scrolling ": "no",
  10657. "style": {
  10658. "cssText": "border:0;width:100%;height:100%"
  10659. },
  10660. "src": "/Office/Word/WordEditArea.htm"
  10661. })
  10662. _box.appendChild(_iframe);
  10663. _box.appendChild(_jie);
  10664. _formdiv = new U.UF.UI.form(
  10665. "协同文档",
  10666. _box, {
  10667. "id": "docs_Yu" + cid + stage + task + tool,
  10668. "style": {
  10669. "width": "90%",
  10670. "height": "90%",
  10671. "overflow": 'hidden'
  10672. },
  10673. "onresize": function () { }
  10674. }, {
  10675. closecallback: function () { }
  10676. }, {
  10677. "style": {
  10678. "height": "36px"
  10679. }
  10680. }).form; //创建窗体
  10681. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10682. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10683. })
  10684. _taskbar = {
  10685. "id": str + _formdiv.id,
  10686. "style": {
  10687. "backgroundImage": "url(/img/icon/doc.png)"
  10688. },
  10689. "name": "协同文档",
  10690. "forms": _formdiv,
  10691. "click": function () {
  10692. U.MD.D.I.openApplication(str, obj, info);
  10693. }
  10694. }
  10695. break;
  10696. case "CocoPi":
  10697. aTool = 57;
  10698. _iframe = $$("iframe", {
  10699. "allowpaymentrequest": "allowpaymentrequest",
  10700. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10701. "webkitallowfullscreen": "",
  10702. "mozallowfullscreen": "",
  10703. "frameborder": "no",
  10704. "border": "0",
  10705. "scrolling ": "no",
  10706. "style": {
  10707. "cssText": "border:0;width:100%;height:100%"
  10708. },
  10709. "src": "https://pi.cocorobo.cn/"
  10710. })
  10711. _box.appendChild(_iframe);
  10712. _box.appendChild(_jie);
  10713. _formdiv = new U.UF.UI.form(
  10714. "CocoPi",
  10715. _box, {
  10716. "id": "CocoPi_Yu" + cid + stage + task + tool,
  10717. "style": {
  10718. "width": "90%",
  10719. "height": "90%",
  10720. "overflow": 'hidden'
  10721. },
  10722. "onresize": function () { }
  10723. }, {
  10724. closecallback: function () { }
  10725. }, {
  10726. "style": {
  10727. "height": "36px"
  10728. }
  10729. }).form; //创建窗体
  10730. _taskbar = {
  10731. "id": str + _formdiv.id,
  10732. "style": {
  10733. "backgroundImage": "url(/img/icon/cocopi.png)"
  10734. },
  10735. "name": "CocoPi",
  10736. "forms": _formdiv,
  10737. "click": function () {
  10738. U.MD.D.I.openApplication(str, obj, info);
  10739. }
  10740. }
  10741. break;
  10742. case "ppt":
  10743. aTool = 73;
  10744. _iframe = $$("iframe", {
  10745. "frameborder": "no",
  10746. "border": "0",
  10747. "scrolling ": "no",
  10748. "style": {
  10749. "cssText": "border:0;width:100%;height:100%"
  10750. },
  10751. "src": "https://ppt.cocorobo.cn/"
  10752. });
  10753. _box.appendChild(_iframe);
  10754. _box.appendChild(_jie);
  10755. _formdiv = new U.UF.UI.form(
  10756. "PPT",
  10757. _box, { //"/jsmind/example/demo.html"
  10758. "id": "ppts_Yu" + cid + stage + task + tool,
  10759. "style": {
  10760. "width": "90%",
  10761. "height": "90%",
  10762. "overflow": 'hidden'
  10763. },
  10764. "onresize": function () { }
  10765. }, {
  10766. closecallback: function () { }
  10767. }, {
  10768. "style": {
  10769. "height": "36px"
  10770. }
  10771. }).form; //创建窗体
  10772. _taskbar = {
  10773. "id": str + _formdiv.id,
  10774. "style": {
  10775. "backgroundImage": "url(/img/icon/ppt.png)"
  10776. },
  10777. "name": "PPT",
  10778. "forms": _formdiv,
  10779. "click": function () {
  10780. U.MD.D.I.openApplication(str, obj, info);
  10781. }
  10782. }
  10783. break;
  10784. }
  10785. if (_iframe) {
  10786. if (str == 'doc') {
  10787. _iframe = _formdiv.querySelector('iframe')
  10788. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10789. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10790. })
  10791. if (onloadListener) {
  10792. _iframe.contentDocument.location.reload()
  10793. } else {
  10794. _iframe.contentDocument.location.reload()
  10795. }
  10796. } else if (str == 'mind') {
  10797. _iframe = _formdiv.querySelector('iframe')
  10798. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10799. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10800. })
  10801. if (onloadListener) {
  10802. _iframe.contentDocument.location.reload()
  10803. } else {
  10804. _iframe.contentDocument.location.reload()
  10805. }
  10806. } else if (str == 'whiteboard') {
  10807. _iframe = _formdiv.querySelector('iframe')
  10808. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10809. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10810. })
  10811. // if (onloadListener) {
  10812. // try {
  10813. // _iframe.src += "?cocorobo="+new Date().getTime()
  10814. // _iframe.contentWindow.document.location.reload()
  10815. // } catch (error) {
  10816. // }
  10817. // } else {
  10818. // _iframe.contentDocument.location.reload()
  10819. // }
  10820. } else if (str == 'CocoPi') {
  10821. _iframe = _formdiv.querySelector('iframe')
  10822. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10823. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10824. })
  10825. if (onloadListener) {
  10826. _iframe.contentDocument.location.reload()
  10827. } else {
  10828. _iframe.contentDocument.location.reload()
  10829. }
  10830. } else if (str == 'ppt') {
  10831. _iframe = _formdiv.querySelector('iframe')
  10832. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10833. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '5', _iframe)
  10834. })
  10835. if (onloadListener) {
  10836. _iframe.contentDocument.location.reload()
  10837. } else {
  10838. _iframe.contentDocument.location.reload()
  10839. }
  10840. } else {
  10841. _iframe.onload = () => { };
  10842. }
  10843. _jie.onclick = async () => {
  10844. let text = ''
  10845. let type = '2'
  10846. if (aTool == 1) {
  10847. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10848. type = '3'
  10849. } else if (aTool == 6) {
  10850. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10851. type = '1'
  10852. } else if (aTool == 3) {
  10853. text = await U.MD.D.I.getEditorContent(_iframe);
  10854. type = '2'
  10855. } else if (aTool == 57) {
  10856. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10857. type = '4'
  10858. } else if (aTool == 73) {
  10859. text = encodeURIComponent(JSON.stringify(_iframe.contentWindow.window.exportJSON()))
  10860. type = '5'
  10861. }
  10862. _loading.style.display = 'flex'
  10863. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10864. }
  10865. }
  10866. //U.MD.D.I.openClick(str);
  10867. //如果有任务栏信息
  10868. // if (_taskbar) {
  10869. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10870. // }
  10871. }
  10872. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10873. var xmlhttp;
  10874. var Mac, Sn, DeviceId
  10875. if (window.XMLHttpRequest) {
  10876. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10877. xmlhttp = new XMLHttpRequest();
  10878. } else {
  10879. // IE6, IE5 浏览器执行代码
  10880. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10881. }
  10882. xmlhttp.onreadystatechange = function () {
  10883. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10884. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10885. // resolve(res.value[0][0].text);
  10886. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10887. }
  10888. }
  10889. }
  10890. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10891. xmlhttp.send();
  10892. }
  10893. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10894. var xmlhttp;
  10895. var Mac, Sn, DeviceId
  10896. if (window.XMLHttpRequest) {
  10897. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10898. xmlhttp = new XMLHttpRequest();
  10899. } else {
  10900. // IE6, IE5 浏览器执行代码
  10901. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10902. }
  10903. xmlhttp.onreadystatechange = function () {
  10904. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10905. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10906. // resolve(res.value[0][0].text);
  10907. if (type == '2') {
  10908. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10909. } else if (type == '3') {
  10910. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10911. } else if (type == '4') {
  10912. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10913. } else if (type == '5') {
  10914. console.log("设置ppt数据1",xmlhttp.response)
  10915. // iframe.contentWindow.window.readJSON(JSON.parse(JSON.parse(xmlhttp.response)[0][0].text), true)
  10916. }
  10917. } else {
  10918. if (type == '2') {
  10919. iframe.contentWindow.editor.minder.importData('json', '')
  10920. } else if (type == '3') {
  10921. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10922. } else if (type == '4') {
  10923. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10924. }
  10925. }
  10926. }
  10927. }
  10928. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10929. xmlhttp.send();
  10930. }
  10931. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10932. var xmlhttp;
  10933. var Mac, Sn, DeviceId
  10934. if (window.XMLHttpRequest) {
  10935. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10936. xmlhttp = new XMLHttpRequest();
  10937. } else {
  10938. // IE6, IE5 浏览器执行代码
  10939. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10940. }
  10941. xmlhttp.onreadystatechange = function () {
  10942. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10943. if (xmlhttp.response) {
  10944. // resolve(res.value[0][0].text);
  10945. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10946. // $(fileInput).val('');
  10947. // });
  10948. span.innerHTML = '上传成功'
  10949. setTimeout(() => {
  10950. loading.style.display = 'none'
  10951. }, 1000);
  10952. }
  10953. }
  10954. }
  10955. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10956. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10957. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10958. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10959. // 设置请求头,表示请求体的编码格式
  10960. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10961. // 设置请求体,使用url-encoded格式的数据
  10962. }
  10963. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10964. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10965. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10966. _userinfo = US.userInfo, //登录用户信息
  10967. _userid = US.userInfo.userid //登录用户id
  10968. let _iframe;
  10969. let _cid = cid,
  10970. _stage = stage,
  10971. _task = task,
  10972. _tool = tool;
  10973. var _jie = $$("div", {
  10974. "style": {
  10975. "position": "absolute",
  10976. "bottom": "50px",
  10977. "right": "50px",
  10978. "zIndex": "9999",
  10979. "backgroundColor": "#2268bc",
  10980. "color": "#fff",
  10981. "padding": "12px 20px",
  10982. "cursor": "pointer",
  10983. "borderRadius": "4px",
  10984. },
  10985. "innerHTML": "提交作业"
  10986. })
  10987. let aTool = ''
  10988. let _loading = document.createElement('div')
  10989. _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;"
  10990. // _loading.id = "";
  10991. let _lchild = document.createElement('div')
  10992. let _limg = document.createElement('img')
  10993. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10994. _limg.style = "width: 26px;margin-right: 10px;"
  10995. _lchild.appendChild(_limg)
  10996. let _lspan = document.createElement('span')
  10997. _lspan.innerHTML = "上传中..."
  10998. _lchild.appendChild(_lspan)
  10999. _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%);"
  11000. _loading.appendChild(_lchild)
  11001. var _box = $$('div', {
  11002. "style": {
  11003. "position": "relative",
  11004. "width": "100%",
  11005. "height": "100%",
  11006. },
  11007. })
  11008. _box.appendChild(_loading)
  11009. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  11010. switch (str) {
  11011. case "CocoPi":
  11012. aTool = 57;
  11013. _iframe = $$("iframe", {
  11014. "allowpaymentrequest": "allowpaymentrequest",
  11015. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  11016. "webkitallowfullscreen": "",
  11017. "mozallowfullscreen": "",
  11018. "frameborder": "no",
  11019. "border": "0",
  11020. "scrolling ": "no",
  11021. "style": {
  11022. "cssText": "border:0;width:100%;height:100%"
  11023. },
  11024. "src": "https://pi.cocorobo.cn/"
  11025. })
  11026. _box.appendChild(_iframe);
  11027. _box.appendChild(_jie);
  11028. _formdiv = new U.UF.UI.form(
  11029. "CocoPi",
  11030. _box, {
  11031. "id": "CocoPi_Upload" + cid + stage + task + tool,
  11032. "style": {
  11033. "width": "90%",
  11034. "height": "90%",
  11035. "overflow": 'hidden'
  11036. },
  11037. "onresize": function () { }
  11038. }, {
  11039. closecallback: function () { }
  11040. }, {
  11041. "style": {
  11042. "height": "36px"
  11043. }
  11044. }).form; //创建窗体
  11045. _taskbar = {
  11046. "id": str + _formdiv.id,
  11047. "style": {
  11048. "backgroundImage": "url(/img/icon/cocopi.png)"
  11049. },
  11050. "name": "CocoPi",
  11051. "forms": _formdiv,
  11052. "click": function () {
  11053. U.MD.D.I.openApplication(str, obj, info);
  11054. }
  11055. }
  11056. break;
  11057. }
  11058. if (_iframe) {
  11059. if (str == 'CocoPi') {
  11060. _iframe = _formdiv.querySelector('iframe')
  11061. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11062. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  11063. })
  11064. if (onloadListener) {
  11065. _iframe.contentDocument.location.reload()
  11066. } else {
  11067. _iframe.contentDocument.location.reload()
  11068. }
  11069. }
  11070. _jie.onclick = async () => {
  11071. let text = ''
  11072. if (aTool == 57) {
  11073. text = _iframe.contentWindow.getLoadXmlStr()
  11074. }
  11075. _loading.style.display = 'flex'
  11076. console.log(_loading);
  11077. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  11078. _loading.style.display = 'none'
  11079. let _div = document.createElement('div')
  11080. _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;"
  11081. let _inner = document.createElement('div')
  11082. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  11083. _inner.innerHTML = "上传成功"
  11084. _div.appendChild(_inner)
  11085. _iframe.contentWindow.window.document.body.appendChild(_div)
  11086. _div.onclick = () => {
  11087. _iframe.contentWindow.window.document.body.removeChild(_div)
  11088. }
  11089. setTimeout(() => {
  11090. _iframe.contentWindow.window.document.body.removeChild(_div)
  11091. }, 1000);
  11092. }, [], { "type": "POST", "withCredentials": true });
  11093. }
  11094. }
  11095. }
  11096. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  11097. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  11098. _formdiv, //创建任务栏时同时弹出的窗体元素。
  11099. _userid = student.userid, //登录用户id
  11100. _username = student.student //用户名字
  11101. let _iframe;
  11102. let _cid = cid,
  11103. _stage = stage,
  11104. _task = task,
  11105. _tool = tool;
  11106. var _jie = $$("div", {
  11107. "style": {
  11108. "position": "absolute",
  11109. "bottom": "50px",
  11110. "right": "50px",
  11111. "zIndex": "9999",
  11112. "backgroundColor": "#2268bc",
  11113. "color": "#fff",
  11114. "padding": "12px 20px",
  11115. "cursor": "pointer",
  11116. "borderRadius": "4px",
  11117. },
  11118. "innerHTML": "提交作业"
  11119. })
  11120. let aTool = ''
  11121. let _loading = document.createElement('div')
  11122. _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;"
  11123. // _loading.id = "";
  11124. let _lchild = document.createElement('div')
  11125. let _limg = document.createElement('img')
  11126. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  11127. _limg.style = "width: 26px;margin-right: 10px;"
  11128. _lchild.appendChild(_limg)
  11129. let _lspan = document.createElement('span')
  11130. _lspan.innerHTML = "上传中..."
  11131. _lchild.appendChild(_lspan)
  11132. _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%);"
  11133. _loading.appendChild(_lchild)
  11134. var _box = $$('div', {
  11135. "style": {
  11136. "position": "relative",
  11137. "width": "100%",
  11138. "height": "100%",
  11139. },
  11140. })
  11141. _box.appendChild(_loading)
  11142. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  11143. switch (str) {
  11144. case "CocoPi":
  11145. aTool = 57;
  11146. _iframe = $$("iframe", {
  11147. "allowpaymentrequest": "allowpaymentrequest",
  11148. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  11149. "webkitallowfullscreen": "",
  11150. "mozallowfullscreen": "",
  11151. "frameborder": "no",
  11152. "border": "0",
  11153. "scrolling ": "no",
  11154. "style": {
  11155. "cssText": "border:0;width:100%;height:100%"
  11156. },
  11157. "src": "https://pi.cocorobo.cn/"
  11158. })
  11159. _box.appendChild(_iframe);
  11160. _box.appendChild(_jie);
  11161. _formdiv = new U.UF.UI.form(
  11162. "CocoPi-" + _username,
  11163. _box, {
  11164. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  11165. "style": {
  11166. "width": "90%",
  11167. "height": "90%",
  11168. "overflow": 'hidden'
  11169. },
  11170. "onresize": function () { }
  11171. }, {
  11172. closecallback: function () { }
  11173. }, {
  11174. "style": {
  11175. "height": "36px"
  11176. }
  11177. }).form; //创建窗体
  11178. _taskbar = {
  11179. "id": str + _formdiv.id,
  11180. "style": {
  11181. "backgroundImage": "url(/img/icon/cocopi.png)"
  11182. },
  11183. "name": "CocoPi",
  11184. "forms": _formdiv,
  11185. "click": function () {
  11186. U.MD.D.I.openApplication(str, obj, info);
  11187. }
  11188. }
  11189. break;
  11190. }
  11191. if (_iframe) {
  11192. if (str == 'CocoPi') {
  11193. _iframe = _formdiv.querySelector('iframe')
  11194. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11195. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  11196. })
  11197. if (onloadListener) {
  11198. _iframe.contentDocument.location.reload()
  11199. } else {
  11200. _iframe.contentDocument.location.reload()
  11201. }
  11202. }
  11203. _jie.onclick = async () => {
  11204. let text = ''
  11205. if (aTool == 57) {
  11206. text = _iframe.contentWindow.getLoadXmlStr()
  11207. }
  11208. _loading.style.display = 'flex'
  11209. console.log(_loading);
  11210. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  11211. _loading.style.display = 'none'
  11212. let _div = document.createElement('div')
  11213. _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;"
  11214. let _inner = document.createElement('div')
  11215. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  11216. _inner.innerHTML = "上传成功"
  11217. _div.appendChild(_inner)
  11218. _iframe.contentWindow.window.document.body.appendChild(_div)
  11219. _div.onclick = () => {
  11220. _iframe.contentWindow.window.document.body.removeChild(_div)
  11221. }
  11222. setTimeout(() => {
  11223. _iframe.contentWindow.window.document.body.removeChild(_div)
  11224. }, 1000);
  11225. }, [], { "type": "POST", "withCredentials": true });
  11226. }
  11227. }
  11228. }
  11229. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  11230. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  11231. if (res.value[0].length > 0) {
  11232. if (atool == 57) {
  11233. iframe.contentWindow.loadingXml(res.value[0][0].content)
  11234. }
  11235. } else {
  11236. if (atool == 57) {
  11237. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  11238. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  11239. }
  11240. }
  11241. }, [], { "type": "POST", "withCredentials": true });
  11242. }
  11243. U.MD.D.addOp = function(text,type,time){
  11244. var userInfo = US.userInfo;
  11245. if(Object.keys(userInfo).length !== 0){
  11246. U.A.Request(US.Config.pbl + "addOperationTimeT", [userInfo.userid,text,type,time], function (res) {
  11247. }, [], { "type": "POST", "withCredentials": true });
  11248. }
  11249. }