DeskTop.js 735 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659
  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 == "openCoursePptUpdate") {
  5406. U.MD.D.I.openInApplication("openCoursePptUpdate", e.data.cid)
  5407. } else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  5408. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  5409. } else if (e.data.tools && e.data.tools == "loginSz") {
  5410. U.MD.D.I.openInApplication("loginSz")
  5411. } else if (e.data.tools && e.data.tools == "classroom_observation_board") {
  5412. if ($('#classroom_observation_board')[0]) {
  5413. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  5414. }
  5415. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  5416. } else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment") {
  5417. if ($('#classroom_observation_ob_comment')[0]) {
  5418. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  5419. }
  5420. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  5421. } else if (e.data.tools && e.data.tools == "logout") {
  5422. U.MD.U.LO.logoutSystem()
  5423. } else if (e.data.tools && e.data.tools == "getLogin") {
  5424. let _iframe = $('#UI_Login')[0];
  5425. if (_iframe) {
  5426. var userInfo = US.userInfo;
  5427. var type = 2
  5428. if (userInfo && userInfo.userid) {
  5429. type = 1
  5430. }
  5431. _contentWindow = _iframe.contentWindow;
  5432. _contentWindow.postMessage({ tools: "getLogin", type: type }, "*")
  5433. }
  5434. }
  5435. });
  5436. U.MD.D.I.selectUser = function () {
  5437. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  5438. if (res.value[0].length > 0) {
  5439. US.userInfo = res.value[0][0];
  5440. $(".userName")[0].innerHTML = US.userInfo.username;
  5441. }
  5442. }, [], { "type": "GET", "withCredentials": true });
  5443. }
  5444. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  5445. var _userinfo = US.userInfo, //登录用户信息
  5446. _userid = US.userInfo.userid, //登录用户id
  5447. _oid = _userinfo.organizeid,
  5448. _type = US.userInfo.type,
  5449. _org = US.userInfo.org,
  5450. _role = US.userInfo.role,
  5451. _classId = US.userInfo.classid;
  5452. if (_type == 4) {
  5453. tType = 4
  5454. }
  5455. let opArray = ["project", "study", "appStore", "futureClass", "evaluate", "student", "testTeacher", "testStudent", "testTeacherSies", "testStudentSies", "studyDetail"]
  5456. if (opArray.includes(str)) {
  5457. let _str = str
  5458. if (str == 'appStore') {
  5459. _str = "cocoFlow"
  5460. } else if (str == "futureClass") {
  5461. _str = "cocoNote"
  5462. } else if (str == "testTeacher" || str == "testTeacherSies") {
  5463. _str = "IntelligentForm"
  5464. } else if (str == "testStudent" || str == "testStudentSies") {
  5465. _str = "TeacherCenter"
  5466. }
  5467. try {
  5468. if (data) {
  5469. U.MD.D.addOp3('1', "", { type: _str + 'Open', cid: data }, "success")
  5470. } else {
  5471. U.MD.D.addOp3('1', "", { type: _str + 'Open' }, "success")
  5472. }
  5473. } catch (error) {
  5474. console.log(error);
  5475. }
  5476. }
  5477. switch (str) {
  5478. case "studyDetailNT": //无终端模式
  5479. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5480. setTimeout(() => {
  5481. U.MD.U.L.login();
  5482. }, 2000);
  5483. } else {
  5484. _formdiv = new U.UF.UI.form(
  5485. "课程详情",
  5486. $$("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 }), {
  5487. "id": "studyDetailNT",
  5488. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5489. "onresize": function () { }
  5490. }, {
  5491. closecallback: function () { }
  5492. }, { "style": { "height": "36px" } }).form; //创建窗体
  5493. _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); } }
  5494. break;
  5495. }
  5496. case "studyDetail":
  5497. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5498. setTimeout(() => {
  5499. U.MD.U.L.login();
  5500. }, 2000);
  5501. } else {
  5502. _formdiv = new U.UF.UI.form(
  5503. "课程详情",
  5504. $$("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 }), {
  5505. "id": "studyDetail",
  5506. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5507. "onresize": function () { }
  5508. }, {
  5509. closecallback: function () { }
  5510. }, { "style": { "height": "36px" } }).form; //创建窗体
  5511. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5512. break;
  5513. }
  5514. case "studyDetailTrain":
  5515. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5516. setTimeout(() => {
  5517. U.MD.U.L.login();
  5518. }, 2000);
  5519. } else {
  5520. _formdiv = new U.UF.UI.form(
  5521. "培训详情",
  5522. $$("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 }), {
  5523. "id": "studyDetailTrain",
  5524. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5525. "onresize": function () { }
  5526. }, {
  5527. closecallback: function () { }
  5528. }, { "style": { "height": "36px" } }).form; //创建窗体
  5529. _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); } }
  5530. break;
  5531. }
  5532. case "studyDetailS":
  5533. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5534. setTimeout(() => {
  5535. U.MD.U.L.login();
  5536. }, 2000);
  5537. } else {
  5538. _formdiv = new U.UF.UI.form(
  5539. "项目详情",
  5540. $$("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 }), {
  5541. "id": "studyDetailS",
  5542. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5543. "onresize": function () { }
  5544. }, {
  5545. closecallback: function () { }
  5546. }, { "style": { "height": "36px" } }).form; //创建窗体
  5547. _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); } }
  5548. break;
  5549. }
  5550. case "studyDetailStudio":
  5551. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5552. setTimeout(() => {
  5553. U.MD.U.L.login();
  5554. }, 2000);
  5555. } else {
  5556. _formdiv = new U.UF.UI.form(
  5557. "工作详情",
  5558. $$("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 }), {
  5559. "id": "studyDetailStudio",
  5560. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5561. "onresize": function () { }
  5562. }, {
  5563. closecallback: function () { }
  5564. }, { "style": { "height": "36px" } }).form; //创建窗体
  5565. _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); } }
  5566. break;
  5567. }
  5568. case "studyDetailS5":
  5569. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5570. setTimeout(() => {
  5571. U.MD.U.L.login();
  5572. }, 2000);
  5573. } else {
  5574. _formdiv = new U.UF.UI.form(
  5575. "项目详情",
  5576. $$("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 }), {
  5577. "id": "studyDetailS",
  5578. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5579. "onresize": function () { }
  5580. }, {
  5581. closecallback: function () { }
  5582. }, { "style": { "height": "36px" } }).form; //创建窗体
  5583. _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); } }
  5584. break;
  5585. }
  5586. case "studyDetailGM":
  5587. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5588. setTimeout(() => {
  5589. U.MD.U.L.login();
  5590. }, 2000);
  5591. } else {
  5592. _formdiv = new U.UF.UI.form(
  5593. "课程详情",
  5594. $$("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 }), {
  5595. "id": "studyDetail",
  5596. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5597. "onresize": function () { }
  5598. }, {
  5599. closecallback: function () { }
  5600. }, { "style": { "height": "36px" } }).form; //创建窗体
  5601. _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); } }
  5602. break;
  5603. }
  5604. case "hanUrl":
  5605. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5606. setTimeout(() => {
  5607. U.MD.U.L.login();
  5608. }, 2000);
  5609. } else {
  5610. _formdiv = new U.UF.UI.form(
  5611. "汉字宫",
  5612. $$("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" }), {
  5613. "id": "hanUrl",
  5614. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5615. "onresize": function () { }
  5616. }, {
  5617. closecallback: function () { }
  5618. }, { "style": { "height": "36px" } }).form; //创建窗体
  5619. _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); } }
  5620. break;
  5621. }
  5622. case "index":
  5623. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5624. setTimeout(() => {
  5625. U.MD.U.L.login();
  5626. }, 2000);
  5627. } else {
  5628. _formdiv = new U.UF.UI.form(
  5629. "课程中心",
  5630. $$("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 }), {
  5631. "id": "study",
  5632. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5633. "onresize": function () { }
  5634. }, {
  5635. closecallback: function () { }
  5636. }, { "style": { "height": "36px" } }).form; //创建窗体
  5637. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5638. break;
  5639. }
  5640. case "dataClass":
  5641. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5642. setTimeout(() => {
  5643. U.MD.U.L.login();
  5644. }, 2000);
  5645. } else {
  5646. _formdiv = new U.UF.UI.form(
  5647. "数据报告",
  5648. $$("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 }), {
  5649. "id": "dataClass",
  5650. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5651. "onresize": function () { }
  5652. }, {
  5653. closecallback: function () { }
  5654. }, { "style": { "height": "36px" } }).form; //创建窗体
  5655. _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); } }
  5656. break;
  5657. }
  5658. case "opencCscl":
  5659. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5660. setTimeout(() => {
  5661. U.MD.U.L.login();
  5662. }, 2000);
  5663. } else {
  5664. _formdiv = new U.UF.UI.form(
  5665. "协同建构",
  5666. $$("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 }), {
  5667. "id": "futureClass",
  5668. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5669. "onresize": function () { }
  5670. }, {
  5671. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5672. }, { "style": { "height": "36px" } }).form; //创建窗体
  5673. _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); } }
  5674. break;
  5675. }
  5676. case "openCourseUpdate":
  5677. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5678. setTimeout(() => {
  5679. U.MD.U.L.login();
  5680. }, 2000);
  5681. } else {
  5682. _formdiv = new U.UF.UI.form(
  5683. "课程管理",
  5684. $$("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 }), {
  5685. "id": "openCourseUpdate",
  5686. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5687. "onresize": function () { }
  5688. }, {
  5689. closecallback: function () { }
  5690. }, { "style": { "height": "36px" } }).form; //创建窗体
  5691. break;
  5692. }
  5693. case "openNewCourseUpdate":
  5694. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5695. setTimeout(() => {
  5696. U.MD.U.L.login();
  5697. }, 2000);
  5698. } else {
  5699. _formdiv = new U.UF.UI.form(
  5700. "课程管理",
  5701. $$("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 }), {
  5702. "id": "openCourseUpdate",
  5703. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5704. "onresize": function () { }
  5705. }, {
  5706. closecallback: function () { }
  5707. }, { "style": { "height": "36px" } }).form; //创建窗体
  5708. break;
  5709. }
  5710. case "openCoursePptUpdate":
  5711. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5712. setTimeout(() => {
  5713. U.MD.U.L.login();
  5714. }, 2000);
  5715. } else {
  5716. _formdiv = new U.UF.UI.form(
  5717. "课程管理",
  5718. $$("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/#/pptEasy?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5719. "id": "openCourseUpdate",
  5720. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5721. "onresize": function () { }
  5722. }, {
  5723. closecallback: function () { }
  5724. }, { "style": { "height": "36px" } }).form; //创建窗体
  5725. break;
  5726. }
  5727. case "openCourseEUpdate":
  5728. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5729. setTimeout(() => {
  5730. U.MD.U.L.login();
  5731. }, 2000);
  5732. } else {
  5733. _formdiv = new U.UF.UI.form(
  5734. "课程管理",
  5735. $$("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 }), {
  5736. "id": "openCourseUpdate",
  5737. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5738. "onresize": function () { }
  5739. }, {
  5740. closecallback: function () { }
  5741. }, { "style": { "height": "36px" } }).form; //创建窗体
  5742. break;
  5743. }
  5744. case "openCourseAiUpdate":
  5745. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5746. setTimeout(() => {
  5747. U.MD.U.L.login();
  5748. }, 2000);
  5749. } else {
  5750. _formdiv = new U.UF.UI.form(
  5751. "课程管理",
  5752. $$("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 }), {
  5753. "id": "openCourseUpdate",
  5754. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5755. "onresize": function () { }
  5756. }, {
  5757. closecallback: function () { }
  5758. }, { "style": { "height": "36px" } }).form; //创建窗体
  5759. break;
  5760. }
  5761. case "openCourseAiUpdate2":
  5762. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5763. setTimeout(() => {
  5764. U.MD.U.L.login();
  5765. }, 2000);
  5766. } else {
  5767. _formdiv = new U.UF.UI.form(
  5768. "课程管理",
  5769. $$("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 }), {
  5770. "id": "openCourseUpdate",
  5771. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5772. "onresize": function () { }
  5773. }, {
  5774. closecallback: function () { }
  5775. }, { "style": { "height": "36px" } }).form; //创建窗体
  5776. break;
  5777. }
  5778. case "openCourseNewUpdate":
  5779. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5780. setTimeout(() => {
  5781. U.MD.U.L.login();
  5782. }, 2000);
  5783. } else {
  5784. _formdiv = new U.UF.UI.form(
  5785. "课程管理",
  5786. $$("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 }), {
  5787. "id": "openCourseUpdate",
  5788. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5789. "onresize": function () { }
  5790. }, {
  5791. closecallback: function () { }
  5792. }, { "style": { "height": "36px" } }).form; //创建窗体
  5793. break;
  5794. }
  5795. case "inviteLoginSz":
  5796. _formdiv = new U.UF.UI.form(
  5797. "随机码登录",
  5798. $$("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 }), {
  5799. "id": "loginSz",
  5800. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5801. "onresize": function () { }
  5802. }, {
  5803. closecallback: function () { }
  5804. }, { "style": { "height": "36px" } }).form; //创建窗体
  5805. break;
  5806. case "loginSz":
  5807. _formdiv = new U.UF.UI.form(
  5808. "教师登录",
  5809. $$("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" }), {
  5810. "id": "loginSz",
  5811. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5812. "onresize": function () { }
  5813. }, {
  5814. closecallback: function () { }
  5815. }, { "style": { "height": "36px" } }).form; //创建窗体
  5816. break;
  5817. case "teacher":
  5818. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5819. setTimeout(() => {
  5820. U.MD.U.L.login();
  5821. }, 2000);
  5822. } else {
  5823. _formdiv = new U.UF.UI.form(
  5824. "教师管理",
  5825. $$("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 }), {
  5826. "id": "teacher",
  5827. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5828. "onresize": function () { }
  5829. }, {
  5830. closecallback: function () { }
  5831. }, { "style": { "height": "36px" } }).form; //创建窗体
  5832. break;
  5833. }
  5834. case "dataBoardSZArea":
  5835. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5836. setTimeout(() => {
  5837. U.MD.U.L.login();
  5838. }, 2000);
  5839. } else {
  5840. _formdiv = new U.UF.UI.form(
  5841. "综合数据看板",
  5842. $$("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 }), {
  5843. "id": "dataBoardSZArea",
  5844. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5845. "onresize": function () { }
  5846. }, {
  5847. closecallback: function () { }
  5848. }, { "style": { "height": "36px" } }).form; //创建窗体
  5849. break;
  5850. }
  5851. case "dataBoardSZCity":
  5852. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5853. setTimeout(() => {
  5854. U.MD.U.L.login();
  5855. }, 2000);
  5856. } else {
  5857. _formdiv = new U.UF.UI.form(
  5858. "综合数据看板",
  5859. $$("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 }), {
  5860. "id": "dataBoardSZCity",
  5861. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5862. "onresize": function () { }
  5863. }, {
  5864. closecallback: function () { }
  5865. }, { "style": { "height": "36px" } }).form; //创建窗体
  5866. break;
  5867. }
  5868. case "classroom_observation_board":
  5869. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5870. setTimeout(() => {
  5871. U.MD.U.L.login();
  5872. }, 2000);
  5873. } else {
  5874. _formdiv = new U.UF.UI.form(
  5875. "课堂观察",
  5876. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/#/classroom_observation_board?tid=" + data }), {
  5877. "id": "classroom_observation_board",
  5878. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5879. "onresize": function () { }
  5880. }, {
  5881. closecallback: function () { }
  5882. }, { "style": { "height": "36px" } }).form; //创建窗体
  5883. break;
  5884. }
  5885. case "classroom_observation_ob_comment":
  5886. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5887. setTimeout(() => {
  5888. U.MD.U.L.login();
  5889. }, 2000);
  5890. } else {
  5891. _formdiv = new U.UF.UI.form(
  5892. "课堂审核",
  5893. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/#/classroom_observation_ob_comment?tid=" + data }), {
  5894. "id": "classroom_observation_ob_comment",
  5895. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5896. "onresize": function () { }
  5897. }, {
  5898. closecallback: function () { }
  5899. }, { "style": { "height": "36px" } }).form; //创建窗体
  5900. break;
  5901. }
  5902. case "gptConfig":
  5903. _formdiv = new U.UF.UI.form(
  5904. data.name ? data.name : "应用中心",
  5905. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": data.url }), {
  5906. "id": "gptConfig" + data.id,
  5907. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5908. "onresize": function () { }
  5909. }, {
  5910. closecallback: function () { }
  5911. }, { "style": { "height": "36px" } }).form; //创建窗体
  5912. break;
  5913. case "testDetail":
  5914. _formdiv = new U.UF.UI.form(
  5915. "表单填写",
  5916. $$("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 }), {
  5917. "id": "testDetail" + data,
  5918. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5919. "onresize": function () { }
  5920. }, {
  5921. closecallback: function () { }
  5922. }, { "style": { "height": "36px" } }).form; //创建窗体
  5923. break;
  5924. }
  5925. }
  5926. U.MD.D.I.openApplication = function (str, obj, info) {
  5927. obj = obj || {};
  5928. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5929. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5930. _userinfo = US.userInfo, //登录用户信息
  5931. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5932. _oid = obj.organizeid || _userinfo.organizeid,
  5933. _type = US.userInfo.type,
  5934. _org = obj.org || US.userInfo.org,
  5935. _role = US.userInfo.role,
  5936. _classId = US.userInfo.classid,
  5937. _TscreenType = 1
  5938. _screenType = 2,
  5939. _SscreenType = 3;
  5940. let iframeBool = true
  5941. if (U.UF.UI.form.allForm[str]) {
  5942. iframeBool = false
  5943. }
  5944. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5945. return;
  5946. }
  5947. let opArray = ["project", "study", "appStore", "futureClass", "evaluate", "student", "testTeacher", "testStudent", "testTeacherSies", "testStudentSies"]
  5948. if (opArray.includes(str)) {
  5949. let _str = str
  5950. if (str == 'appStore') {
  5951. _str = "cocoFlow"
  5952. } else if (str == "futureClass") {
  5953. _str = "cocoNote"
  5954. } else if (str == "testTeacher" || str == "testTeacherSies") {
  5955. _str = "IntelligentForm"
  5956. } else if (str == "testStudent" || str == "testStudentSies") {
  5957. _str = "TeacherCenter"
  5958. }
  5959. try {
  5960. U.MD.D.addOp3('1', "", { type: _str + 'Open' }, "success")
  5961. } catch (error) {
  5962. console.log(error);
  5963. }
  5964. }
  5965. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5966. switch (str) {
  5967. case "studnetProject": //好友打开
  5968. _formdiv = new U.UF.UI.form(
  5969. "我的项目",
  5970. $$("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 }), {
  5971. "id": "studnetProject",
  5972. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5973. "onresize": function () { }
  5974. }, {
  5975. closecallback: function () { }
  5976. }, { "style": { "height": "36px" } }).form; //创建窗体
  5977. _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); } }
  5978. break;
  5979. case "studentEvaluate": //好友打开
  5980. _formdiv = new U.UF.UI.form(
  5981. "我的评价",
  5982. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5983. "id": "studentEvaluate",
  5984. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5985. "onresize": function () { }
  5986. }, {
  5987. closecallback: function () { }
  5988. }, { "style": { "height": "36px" } }).form; //创建窗体
  5989. _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); } }
  5990. break;
  5991. case "my":
  5992. _formdiv = new U.UF.UI.form(
  5993. "我的资料",
  5994. $$("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 }), {
  5995. "id": "my",
  5996. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5997. "onresize": function () { }
  5998. }, {
  5999. closecallback: function () { }
  6000. }, { "style": { "height": "36px" } }).form; //创建窗体
  6001. _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); } }
  6002. break;
  6003. case "program":
  6004. _formdiv = new U.UF.UI.form(
  6005. "编程平台",
  6006. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6007. "id": "program",
  6008. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6009. "onresize": function () { }
  6010. }, {
  6011. closecallback: function () { }
  6012. }, { "style": { "height": "36px" } }).form; //创建窗体
  6013. _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); } }
  6014. break;
  6015. case "library":
  6016. _formdiv = new U.UF.UI.form(
  6017. "素材库",
  6018. $$("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 }), {
  6019. "id": "library",
  6020. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6021. "onresize": function () { }
  6022. }, {
  6023. closecallback: function () { }
  6024. }, { "style": { "height": "36px" } }).form; //创建窗体
  6025. _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); } }
  6026. break;
  6027. case "whiteboard":
  6028. _formdiv = new U.UF.UI.form(
  6029. "电子白板",
  6030. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6031. "id": "whiteboard",
  6032. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6033. "onresize": function () { }
  6034. }, {
  6035. closecallback: function () { }
  6036. }, { "style": { "height": "36px" } }).form; //创建窗体
  6037. _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); } }
  6038. break;
  6039. case "investigation":
  6040. _formdiv = new U.UF.UI.form(
  6041. "问卷调查",
  6042. $$("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 }), {
  6043. "id": "investigation",
  6044. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6045. "onresize": function () { }
  6046. }, {
  6047. closecallback: function () { }
  6048. }, { "style": { "height": "36px" } }).form; //创建窗体
  6049. _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); } }
  6050. break;
  6051. case "note":
  6052. _formdiv = new U.UF.UI.form(
  6053. "便签分类",
  6054. $$("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 }), {
  6055. "id": "note",
  6056. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6057. "onresize": function () { }
  6058. }, {
  6059. closecallback: function () { }
  6060. }, { "style": { "height": "36px" } }).form; //创建窗体
  6061. _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); } }
  6062. break;
  6063. // case "score":
  6064. // _formdiv = new U.UF.UI.form(
  6065. // "量规评分",
  6066. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6067. // "id": "score",
  6068. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6069. // "onresize": function() {}
  6070. // }, {
  6071. // closecallback: function() {}
  6072. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6073. // _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); } }
  6074. // break;
  6075. case "mind":
  6076. _formdiv = new U.UF.UI.form(
  6077. "思维导图",
  6078. $$("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"
  6079. "id": "mind",
  6080. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6081. "onresize": function () { }
  6082. }, {
  6083. closecallback: function () { }
  6084. }, { "style": { "height": "36px" } }).form; //创建窗体
  6085. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6086. break;
  6087. case "doc":
  6088. // U.MD.D.I.isRoom();
  6089. _formdiv = new U.UF.UI.form(
  6090. "协同文档",
  6091. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  6092. "id": "doc",
  6093. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6094. "onresize": function () { }
  6095. }, {
  6096. closecallback: function () { }
  6097. }, { "style": { "height": "36px" } }).form; //创建窗体
  6098. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6099. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6100. // })
  6101. _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); } }
  6102. break;
  6103. case "studentStudy":
  6104. _formdiv = new U.UF.UI.form(
  6105. "课程中心",
  6106. $$("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
  6107. "id": "studentStudy",
  6108. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6109. "onresize": function () { }
  6110. }, {
  6111. closecallback: function () { }
  6112. }, { "style": { "height": "36px" } }).form; //创建窗体
  6113. _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); } }
  6114. break;
  6115. case "train": //好友打开
  6116. _formdiv = new U.UF.UI.form(
  6117. "训练平台",
  6118. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6119. "id": "train",
  6120. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6121. "onresize": function () { }
  6122. }, {
  6123. closecallback: function () { }
  6124. }, { "style": { "height": "36px" } }).form; //创建窗体
  6125. _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); } }
  6126. break;
  6127. case "mindNetwork": //好友打开
  6128. _formdiv = new U.UF.UI.form(
  6129. "思维网格",
  6130. $$("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 }), {
  6131. "id": "mindNetwork",
  6132. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6133. "onresize": function () { }
  6134. }, {
  6135. closecallback: function () { }
  6136. }, { "style": { "height": "36px" } }).form; //创建窗体
  6137. _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); } }
  6138. break;
  6139. case "studentClassRoom": //好友打开
  6140. _formdiv = new U.UF.UI.form(
  6141. "实时课堂",
  6142. $$("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 }), {
  6143. "id": "studentClassRoom",
  6144. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6145. "onresize": function () { }
  6146. }, {
  6147. closecallback: function () { }
  6148. }, { "style": { "height": "36px" } }).form; //创建窗体
  6149. _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); } }
  6150. setTimeout(() => {
  6151. U.UF.F.windowZooming(_formdiv)
  6152. }, 0);
  6153. break;
  6154. }
  6155. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6156. switch (str) {
  6157. case "studnetProject": //好友打开
  6158. _formdiv = new U.UF.UI.form(
  6159. "我的项目",
  6160. $$("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 }), {
  6161. "id": "studnetProject",
  6162. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6163. "onresize": function () { }
  6164. }, {
  6165. closecallback: function () { }
  6166. }, { "style": { "height": "36px" } }).form; //创建窗体
  6167. _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); } }
  6168. break;
  6169. case "studentEvaluate": //好友打开
  6170. _formdiv = new U.UF.UI.form(
  6171. "我的评价",
  6172. $$("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 }), {
  6173. "id": "studentEvaluate",
  6174. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6175. "onresize": function () { }
  6176. }, {
  6177. closecallback: function () { }
  6178. }, { "style": { "height": "36px" } }).form; //创建窗体
  6179. _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); } }
  6180. break;
  6181. case "my":
  6182. _formdiv = new U.UF.UI.form(
  6183. "我的资料",
  6184. $$("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 }), {
  6185. "id": "my",
  6186. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6187. "onresize": function () { }
  6188. }, {
  6189. closecallback: function () { }
  6190. }, { "style": { "height": "36px" } }).form; //创建窗体
  6191. _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); } }
  6192. break;
  6193. case "program":
  6194. _formdiv = new U.UF.UI.form(
  6195. "编程平台",
  6196. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6197. "id": "program",
  6198. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6199. "onresize": function () { }
  6200. }, {
  6201. closecallback: function () { }
  6202. }, { "style": { "height": "36px" } }).form; //创建窗体
  6203. _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); } }
  6204. break;
  6205. case "library":
  6206. _formdiv = new U.UF.UI.form(
  6207. "素材库",
  6208. $$("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 }), {
  6209. "id": "library",
  6210. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6211. "onresize": function () { }
  6212. }, {
  6213. closecallback: function () { }
  6214. }, { "style": { "height": "36px" } }).form; //创建窗体
  6215. _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); } }
  6216. break;
  6217. case "whiteboard":
  6218. _formdiv = new U.UF.UI.form(
  6219. "电子白板",
  6220. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6221. "id": "whiteboard",
  6222. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6223. "onresize": function () { }
  6224. }, {
  6225. closecallback: function () { }
  6226. }, { "style": { "height": "36px" } }).form; //创建窗体
  6227. _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); } }
  6228. break;
  6229. case "investigation":
  6230. _formdiv = new U.UF.UI.form(
  6231. "问卷调查",
  6232. $$("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 }), {
  6233. "id": "investigation",
  6234. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6235. "onresize": function () { }
  6236. }, {
  6237. closecallback: function () { }
  6238. }, { "style": { "height": "36px" } }).form; //创建窗体
  6239. _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); } }
  6240. break;
  6241. case "note":
  6242. _formdiv = new U.UF.UI.form(
  6243. "便签分类",
  6244. $$("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 }), {
  6245. "id": "note",
  6246. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6247. "onresize": function () { }
  6248. }, {
  6249. closecallback: function () { }
  6250. }, { "style": { "height": "36px" } }).form; //创建窗体
  6251. _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); } }
  6252. break;
  6253. // case "score":
  6254. // _formdiv = new U.UF.UI.form(
  6255. // "量规评分",
  6256. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6257. // "id": "score",
  6258. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6259. // "onresize": function() {}
  6260. // }, {
  6261. // closecallback: function() {}
  6262. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6263. // _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); } }
  6264. // break;
  6265. case "mind":
  6266. _formdiv = new U.UF.UI.form(
  6267. "思维导图",
  6268. $$("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"
  6269. "id": "mind",
  6270. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6271. "onresize": function () { }
  6272. }, {
  6273. closecallback: function () { }
  6274. }, { "style": { "height": "36px" } }).form; //创建窗体
  6275. _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); } }
  6276. break;
  6277. case "doc":
  6278. // U.MD.D.I.isRoom();
  6279. _formdiv = new U.UF.UI.form(
  6280. "协同文档",
  6281. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6282. "id": "doc",
  6283. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6284. "onresize": function () { }
  6285. }, {
  6286. closecallback: function () { }
  6287. }, { "style": { "height": "36px" } }).form; //创建窗体
  6288. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6289. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6290. })
  6291. _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); } }
  6292. break;
  6293. case "train": //好友打开
  6294. _formdiv = new U.UF.UI.form(
  6295. "训练平台",
  6296. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6297. "id": "train",
  6298. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6299. "onresize": function () { }
  6300. }, {
  6301. closecallback: function () { }
  6302. }, { "style": { "height": "36px" } }).form; //创建窗体
  6303. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6304. break;
  6305. case "studentStudy":
  6306. _formdiv = new U.UF.UI.form(
  6307. "课程中心",
  6308. $$("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
  6309. "id": "studentStudy",
  6310. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6311. "onresize": function () { }
  6312. }, {
  6313. closecallback: function () { }
  6314. }, { "style": { "height": "36px" } }).form; //创建窗体
  6315. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6316. break;
  6317. case "mindNetwork": //好友打开
  6318. _formdiv = new U.UF.UI.form(
  6319. "思维网格",
  6320. $$("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 }), {
  6321. "id": "mindNetwork",
  6322. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6323. "onresize": function () { }
  6324. }, {
  6325. closecallback: function () { }
  6326. }, { "style": { "height": "36px" } }).form; //创建窗体
  6327. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6328. break;
  6329. case "studentClassRoom": //好友打开
  6330. _formdiv = new U.UF.UI.form(
  6331. "实时课堂",
  6332. $$("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 }), {
  6333. "id": "studentClassRoom",
  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/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6340. setTimeout(() => {
  6341. U.UF.F.windowZooming(_formdiv)
  6342. }, 0);
  6343. break;
  6344. }
  6345. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  6346. //选择应用处理
  6347. switch (str) {
  6348. case "project": //好友打开
  6349. _formdiv = new U.UF.UI.form(
  6350. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  6351. $$("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 }), {
  6352. "id": "project",
  6353. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6354. "onresize": function () { }
  6355. }, {
  6356. closecallback: function () { }
  6357. }, { "style": { "height": "36px" } }).form; //创建窗体
  6358. _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); } }
  6359. break;
  6360. case "student":
  6361. _formdiv = new U.UF.UI.form(
  6362. "学生管理",
  6363. $$("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 }), {
  6364. "id": "student",
  6365. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6366. "onresize": function () { }
  6367. }, {
  6368. closecallback: function () { }
  6369. }, { "style": { "height": "36px" } }).form; //创建窗体
  6370. _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); } }
  6371. break;
  6372. case "evaluate":
  6373. _formdiv = new U.UF.UI.form(
  6374. "学生评价",
  6375. $$("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 }), {
  6376. "id": "evaluate",
  6377. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6378. "onresize": function () { }
  6379. }, {
  6380. closecallback: function () { }
  6381. }, { "style": { "height": "36px" } }).form; //创建窗体
  6382. _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); } }
  6383. break;
  6384. case "sys":
  6385. _formdiv = new U.UF.UI.form(
  6386. "目标管理",
  6387. $$("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 }), {
  6388. "id": "sys",
  6389. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6390. "onresize": function () { }
  6391. }, {
  6392. closecallback: function () { }
  6393. }, { "style": { "height": "36px" } }).form; //创建窗体
  6394. _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); } }
  6395. break;
  6396. case "courseDesign":
  6397. _formdiv = new U.UF.UI.form(
  6398. "项目设计",
  6399. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6400. "id": "courseDesign",
  6401. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6402. "onresize": function () { }
  6403. }, {
  6404. closecallback: function () { }
  6405. }, { "style": { "height": "36px" } }).form; //创建窗体
  6406. _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); } }
  6407. break;
  6408. case "program":
  6409. _formdiv = new U.UF.UI.form(
  6410. "编程平台",
  6411. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6412. "id": "program",
  6413. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6414. "onresize": function () { }
  6415. }, {
  6416. closecallback: function () { }
  6417. }, { "style": { "height": "36px" } }).form; //创建窗体
  6418. _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); } }
  6419. break;
  6420. case "class":
  6421. _formdiv = new U.UF.UI.form(
  6422. "班级管理",
  6423. $$("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 }), {
  6424. "id": "class",
  6425. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6426. "onresize": function () { }
  6427. }, {
  6428. closecallback: function () { }
  6429. }, { "style": { "height": "36px" } }).form; //创建窗体
  6430. _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); } }
  6431. break;
  6432. case "Grade":
  6433. _formdiv = new U.UF.UI.form(
  6434. "年级管理",
  6435. $$("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 }), {
  6436. "id": "Grade",
  6437. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6438. "onresize": function () { }
  6439. }, {
  6440. closecallback: function () { }
  6441. }, { "style": { "height": "36px" } }).form; //创建窗体
  6442. _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); } }
  6443. break;
  6444. case "teacherOffice":
  6445. _formdiv = new U.UF.UI.form(
  6446. "教研室",
  6447. $$("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 }), {
  6448. "id": "teacherOffice",
  6449. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6450. "onresize": function () { }
  6451. }, {
  6452. closecallback: function () { }
  6453. }, { "style": { "height": "36px" } }).form; //创建窗体
  6454. _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); } }
  6455. break;
  6456. case "my":
  6457. _formdiv = new U.UF.UI.form(
  6458. "我的资料",
  6459. $$("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 }), {
  6460. "id": "my",
  6461. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6462. "onresize": function () { }
  6463. }, {
  6464. closecallback: function () { }
  6465. }, { "style": { "height": "36px" } }).form; //创建窗体
  6466. _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); } }
  6467. break;
  6468. case "notice":
  6469. _formdiv = new U.UF.UI.form(
  6470. "通知公告",
  6471. $$("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 }), {
  6472. "id": "notice",
  6473. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6474. "onresize": function () { }
  6475. }, {
  6476. closecallback: function () { }
  6477. }, { "style": { "height": "36px" } }).form; //创建窗体
  6478. _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); } }
  6479. break;
  6480. case "library":
  6481. _formdiv = new U.UF.UI.form(
  6482. "素材库",
  6483. $$("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 }), {
  6484. "id": "library",
  6485. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6486. "onresize": function () { }
  6487. }, {
  6488. closecallback: function () { }
  6489. }, { "style": { "height": "36px" } }).form; //创建窗体
  6490. _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); } }
  6491. break;
  6492. case "whiteboard":
  6493. _formdiv = new U.UF.UI.form(
  6494. "电子白板",
  6495. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6496. "id": "whiteboard",
  6497. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6498. "onresize": function () { }
  6499. }, {
  6500. closecallback: function () { }
  6501. }, { "style": { "height": "36px" } }).form; //创建窗体
  6502. _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); } }
  6503. break;
  6504. case "investigation":
  6505. _formdiv = new U.UF.UI.form(
  6506. "问卷调查",
  6507. $$("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 }), {
  6508. "id": "investigation",
  6509. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6510. "onresize": function () { }
  6511. }, {
  6512. closecallback: function () { }
  6513. }, { "style": { "height": "36px" } }).form; //创建窗体
  6514. _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); } }
  6515. break;
  6516. case "note":
  6517. _formdiv = new U.UF.UI.form(
  6518. "便签分类",
  6519. $$("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 }), {
  6520. "id": "note",
  6521. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6522. "onresize": function () { }
  6523. }, {
  6524. closecallback: function () { }
  6525. }, { "style": { "height": "36px" } }).form; //创建窗体
  6526. _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); } }
  6527. break;
  6528. // case "score":
  6529. // _formdiv = new U.UF.UI.form(
  6530. // "量规评分",
  6531. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6532. // "id": "score",
  6533. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6534. // "onresize": function() {}
  6535. // }, {
  6536. // closecallback: function() {}
  6537. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6538. // _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); } }
  6539. // break;
  6540. case "mind":
  6541. _formdiv = new U.UF.UI.form(
  6542. "思维导图",
  6543. $$("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"
  6544. "id": "mind",
  6545. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6546. "onresize": function () { }
  6547. }, {
  6548. closecallback: function () { }
  6549. }, { "style": { "height": "36px" } }).form; //创建窗体
  6550. _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); } }
  6551. break;
  6552. case "doc":
  6553. // U.MD.D.I.isRoom();
  6554. _formdiv = new U.UF.UI.form(
  6555. "协同文档",
  6556. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6557. "id": "doc",
  6558. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6559. "onresize": function () { }
  6560. }, {
  6561. closecallback: function () { }
  6562. }, { "style": { "height": "36px" } }).form; //创建窗体
  6563. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6564. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6565. })
  6566. _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); } }
  6567. break;
  6568. case "study":
  6569. _formdiv = new U.UF.UI.form(
  6570. "课程中心",
  6571. $$("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
  6572. "id": "study",
  6573. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6574. "onresize": function () { }
  6575. }, {
  6576. closecallback: function () { }
  6577. }, { "style": { "height": "36px" } }).form; //创建窗体
  6578. _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); } }
  6579. break;
  6580. case "mindNetwork": //好友打开
  6581. _formdiv = new U.UF.UI.form(
  6582. "思维网格",
  6583. $$("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 }), {
  6584. "id": "mindNetwork",
  6585. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6586. "onresize": function () { }
  6587. }, {
  6588. closecallback: function () { }
  6589. }, { "style": { "height": "36px" } }).form; //创建窗体
  6590. _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); } }
  6591. break;
  6592. case "train": //好友打开
  6593. _formdiv = new U.UF.UI.form(
  6594. "训练平台",
  6595. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6596. "id": "mindNetwork",
  6597. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6598. "onresize": function () { }
  6599. }, {
  6600. closecallback: function () { }
  6601. }, { "style": { "height": "36px" } }).form; //创建窗体
  6602. _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); } }
  6603. break;
  6604. case "teacherClassRoom": //好友打开
  6605. _formdiv = new U.UF.UI.form(
  6606. "实时课堂",
  6607. $$("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 }), {
  6608. "id": "teacherClassRoom",
  6609. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6610. "onresize": function () { }
  6611. }, {
  6612. closecallback: function () { }
  6613. }, { "style": { "height": "36px" } }).form; //创建窗体
  6614. _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); } }
  6615. setTimeout(() => {
  6616. U.UF.F.windowZooming(_formdiv)
  6617. }, 0);
  6618. break;
  6619. }
  6620. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6621. switch (str) {
  6622. case "project": //好友打开
  6623. _formdiv = new U.UF.UI.form(
  6624. "课程管理",
  6625. $$("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 }), {
  6626. "id": "project",
  6627. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6628. "onresize": function () { }
  6629. }, {
  6630. closecallback: function () { }
  6631. }, { "style": { "height": "36px" } }).form; //创建窗体
  6632. _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); } }
  6633. break;
  6634. case "evaluate":
  6635. _formdiv = new U.UF.UI.form(
  6636. "学生评价",
  6637. $$("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 }), {
  6638. "id": "evaluate",
  6639. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6640. "onresize": function () { }
  6641. }, {
  6642. closecallback: function () { }
  6643. }, { "style": { "height": "36px" } }).form; //创建窗体
  6644. _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); } }
  6645. break;
  6646. case "notice":
  6647. _formdiv = new U.UF.UI.form(
  6648. "通知公告",
  6649. $$("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 }), {
  6650. "id": "notice",
  6651. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6652. "onresize": function () { }
  6653. }, {
  6654. closecallback: function () { }
  6655. }, { "style": { "height": "36px" } }).form; //创建窗体
  6656. _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); } }
  6657. break;
  6658. case "stuLibrary":
  6659. _formdiv = new U.UF.UI.form(
  6660. "学习资料",
  6661. $$("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 }), {
  6662. "id": "stuLibrary",
  6663. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6664. "onresize": function () { }
  6665. }, {
  6666. closecallback: function () { }
  6667. }, { "style": { "height": "36px" } }).form; //创建窗体
  6668. _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); } }
  6669. break;
  6670. case "program":
  6671. _formdiv = new U.UF.UI.form(
  6672. "编程平台",
  6673. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6674. "id": "program",
  6675. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6676. "onresize": function () { }
  6677. }, {
  6678. closecallback: function () { }
  6679. }, { "style": { "height": "36px" } }).form; //创建窗体
  6680. _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); } }
  6681. break;
  6682. case "whiteboard":
  6683. _formdiv = new U.UF.UI.form(
  6684. "电子白板",
  6685. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6686. "id": "whiteboard",
  6687. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6688. "onresize": function () { }
  6689. }, {
  6690. closecallback: function () { }
  6691. }, { "style": { "height": "36px" } }).form; //创建窗体
  6692. _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); } }
  6693. break;
  6694. case "investigation":
  6695. _formdiv = new U.UF.UI.form(
  6696. "问卷调查",
  6697. $$("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 }), {
  6698. "id": "investigation",
  6699. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6700. "onresize": function () { }
  6701. }, {
  6702. closecallback: function () { }
  6703. }, { "style": { "height": "36px" } }).form; //创建窗体
  6704. _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); } }
  6705. break;
  6706. case "mind":
  6707. _formdiv = new U.UF.UI.form(
  6708. "思维导图",
  6709. $$("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"
  6710. "id": "mind",
  6711. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6712. "onresize": function () { }
  6713. }, {
  6714. closecallback: function () { }
  6715. }, { "style": { "height": "36px" } }).form; //创建窗体
  6716. _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); } }
  6717. break;
  6718. case "doc":
  6719. // U.MD.D.I.isRoom();
  6720. _formdiv = new U.UF.UI.form(
  6721. "协同文档",
  6722. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6723. "id": "doc",
  6724. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6725. "onresize": function () { }
  6726. }, {
  6727. closecallback: function () { }
  6728. }, { "style": { "height": "36px" } }).form; //创建窗体
  6729. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6730. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6731. })
  6732. _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); } }
  6733. break;
  6734. case "study":
  6735. _formdiv = new U.UF.UI.form(
  6736. "课程中心",
  6737. $$("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
  6738. "id": "study",
  6739. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6740. "onresize": function () { }
  6741. }, {
  6742. closecallback: function () { }
  6743. }, { "style": { "height": "36px" } }).form; //创建窗体
  6744. _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); } }
  6745. break;
  6746. case "mindNetwork": //好友打开
  6747. _formdiv = new U.UF.UI.form(
  6748. "思维网格",
  6749. $$("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 }), {
  6750. "id": "mindNetwork",
  6751. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6752. "onresize": function () { }
  6753. }, {
  6754. closecallback: function () { }
  6755. }, { "style": { "height": "36px" } }).form; //创建窗体
  6756. _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); } }
  6757. break;
  6758. case "train": //好友打开
  6759. _formdiv = new U.UF.UI.form(
  6760. "训练平台",
  6761. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6762. "id": "train",
  6763. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6764. "onresize": function () { }
  6765. }, {
  6766. closecallback: function () { }
  6767. }, { "style": { "height": "36px" } }).form; //创建窗体
  6768. _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); } }
  6769. break;
  6770. case "sys":
  6771. _formdiv = new U.UF.UI.form(
  6772. "目标管理",
  6773. $$("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 }), {
  6774. "id": "sys",
  6775. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6776. "onresize": function () { }
  6777. }, {
  6778. closecallback: function () { }
  6779. }, { "style": { "height": "36px" } }).form; //创建窗体
  6780. _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); } }
  6781. break;
  6782. case "courseDesign":
  6783. _formdiv = new U.UF.UI.form(
  6784. "项目设计",
  6785. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6786. "id": "courseDesign",
  6787. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6788. "onresize": function () { }
  6789. }, {
  6790. closecallback: function () { }
  6791. }, { "style": { "height": "36px" } }).form; //创建窗体
  6792. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6793. break;
  6794. }
  6795. } else if (!_type) {
  6796. switch (str) {
  6797. case "my":
  6798. _formdiv = new U.UF.UI.form(
  6799. "我的资料",
  6800. $$("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 }), {
  6801. "id": "my",
  6802. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6803. "onresize": function () { }
  6804. }, {
  6805. closecallback: function () { }
  6806. }, { "style": { "height": "36px" } }).form; //创建窗体
  6807. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6808. break;
  6809. }
  6810. }
  6811. switch (str) {
  6812. // AIprogram2 AI体验 aihub.cocorobo.cn
  6813. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6814. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6815. case "formulaEdi": //公式编辑
  6816. _formdiv = new U.UF.UI.form(
  6817. "公式编辑",
  6818. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6819. "id": "formulaEdi",
  6820. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6821. "onresize": function () { }
  6822. }, {
  6823. closecallback: function () { }
  6824. }, { "style": { "height": "36px" } }).form; //创建窗体
  6825. _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); } }
  6826. break;
  6827. case "molStr": //分子结构
  6828. _formdiv = new U.UF.UI.form(
  6829. "分子结构",
  6830. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6831. "id": "molStr",
  6832. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6833. "onresize": function () { }
  6834. }, {
  6835. closecallback: function () { }
  6836. }, { "style": { "height": "36px" } }).form; //创建窗体
  6837. _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); } }
  6838. break;
  6839. case "timeAxis": //时间轴
  6840. _formdiv = new U.UF.UI.form(
  6841. "时间轴",
  6842. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6843. "id": "timeAxis",
  6844. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6845. "onresize": function () { }
  6846. }, {
  6847. closecallback: function () { }
  6848. }, { "style": { "height": "36px" } }).form; //创建窗体
  6849. _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); } }
  6850. break;
  6851. case "AIprogram2": //AI体验
  6852. _formdiv = new U.UF.UI.form(
  6853. "AI体验",
  6854. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6855. "id": "AIprogram2",
  6856. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6857. "onresize": function () { }
  6858. }, {
  6859. closecallback: function () { }
  6860. }, { "style": { "height": "36px" } }).form; //创建窗体
  6861. _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); } }
  6862. break;
  6863. case "Pythonprogram": //python编程
  6864. _formdiv = new U.UF.UI.form(
  6865. "Python编程",
  6866. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6867. "id": "Pythonprogram",
  6868. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6869. "onresize": function () { }
  6870. }, {
  6871. closecallback: function () { }
  6872. }, { "style": { "height": "36px" } }).form; //创建窗体
  6873. _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); } }
  6874. break;
  6875. case "AIprogram": //ai编程
  6876. _formdiv = new U.UF.UI.form(
  6877. "AI编程平台",
  6878. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6879. "id": "AIprogram",
  6880. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6881. "onresize": function () { }
  6882. }, {
  6883. closecallback: function () { }
  6884. }, { "style": { "height": "36px" } }).form; //创建窗体
  6885. _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); } }
  6886. break;
  6887. case "CocoPi": //CocoPi
  6888. _formdiv = new U.UF.UI.form(
  6889. "CocoPi",
  6890. $$("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" }), {
  6891. "id": "CocoPi",
  6892. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6893. "onresize": function () { }
  6894. }, {
  6895. closecallback: function () { }
  6896. }, { "style": { "height": "36px" } }).form; //创建窗体
  6897. _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); } }
  6898. break;
  6899. case "Wood": //Wood
  6900. _formdiv = new U.UF.UI.form(
  6901. "海龟编程",
  6902. $$("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/" }), {
  6903. "id": "Wood",
  6904. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6905. "onresize": function () { }
  6906. }, {
  6907. closecallback: function () { }
  6908. }, { "style": { "height": "36px" } }).form; //创建窗体
  6909. _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); } }
  6910. break;
  6911. case "car": //模拟驾驶
  6912. _formdiv = new U.UF.UI.form(
  6913. "模拟驾驶",
  6914. $$("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/" }), {
  6915. "id": "car",
  6916. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6917. "onresize": function () { }
  6918. }, {
  6919. closecallback: function () { }
  6920. }, { "style": { "height": "36px" } }).form; //创建窗体
  6921. _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); } }
  6922. break;
  6923. case "lineSearch": //路径搜索
  6924. _formdiv = new U.UF.UI.form(
  6925. "路径搜索",
  6926. $$("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/" }), {
  6927. "id": "lineSearch",
  6928. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6929. "onresize": function () { }
  6930. }, {
  6931. closecallback: function () { }
  6932. }, { "style": { "height": "36px" } }).form; //创建窗体
  6933. _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); } }
  6934. break;
  6935. case "deepLearning": //深度学习
  6936. _formdiv = new U.UF.UI.form(
  6937. "深度学习",
  6938. $$("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/#" }), {
  6939. "id": "deepLearning",
  6940. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6941. "onresize": function () { }
  6942. }, {
  6943. closecallback: function () { }
  6944. }, { "style": { "height": "36px" } }).form; //创建窗体
  6945. _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); } }
  6946. break;
  6947. case "allHistory": //深度学习
  6948. _formdiv = new U.UF.UI.form(
  6949. "全历史",
  6950. $$("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/" }), {
  6951. "id": "allHistory",
  6952. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6953. "onresize": function () { }
  6954. }, {
  6955. closecallback: function () { }
  6956. }, { "style": { "height": "36px" } }).form; //创建窗体
  6957. _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); } }
  6958. break;
  6959. case "chatPDF": //ai编程
  6960. _formdiv = new U.UF.UI.form(
  6961. "chatPDF",
  6962. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6963. "id": "chatPDF",
  6964. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6965. "onresize": function () { }
  6966. }, {
  6967. closecallback: function () { }
  6968. }, { "style": { "height": "36px" } }).form; //创建窗体
  6969. _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); } }
  6970. break;
  6971. case "resources": //国家教育
  6972. _formdiv = new U.UF.UI.form(
  6973. "国家教育",
  6974. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6975. "id": "resources",
  6976. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6977. "onresize": function () { }
  6978. }, {
  6979. closecallback: function () { }
  6980. }, { "style": { "height": "36px" } }).form; //创建窗体
  6981. _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); } }
  6982. break;
  6983. case "codeEdit": //源码编辑
  6984. _formdiv = new U.UF.UI.form(
  6985. "源码编辑",
  6986. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6987. "id": "codeEdit",
  6988. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6989. "onresize": function () { }
  6990. }, {
  6991. closecallback: function () { }
  6992. }, { "style": { "height": "36px" } }).form; //创建窗体
  6993. _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); } }
  6994. break; //
  6995. case "MindMap": //MindMap
  6996. _formdiv = new U.UF.UI.form(
  6997. "MindMap",
  6998. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6999. "id": "MindMap",
  7000. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7001. "onresize": function () { }
  7002. }, {
  7003. closecallback: function () { }
  7004. }, { "style": { "height": "36px" } }).form; //创建窗体
  7005. _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); } }
  7006. break;
  7007. case "netWorkPanel": //netWorkPanel
  7008. _formdiv = new U.UF.UI.form(
  7009. "netWorkPanel",
  7010. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  7011. "id": "netWorkPanel",
  7012. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7013. "onresize": function () { }
  7014. }, {
  7015. closecallback: function () { }
  7016. }, { "style": { "height": "36px" } }).form; //创建窗体
  7017. _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); } }
  7018. break;
  7019. case "GeoGebra": //GeoGebra
  7020. _formdiv = new U.UF.UI.form(
  7021. "GeoGebra",
  7022. $$("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" }), {
  7023. "id": "GeoGebra",
  7024. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7025. "onresize": function () { }
  7026. }, {
  7027. closecallback: function () { }
  7028. }, { "style": { "height": "36px" } }).form; //创建窗体
  7029. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/GeoGebra.png)" }, "name": "GeoGebra", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7030. break;
  7031. case "translation": //翻译
  7032. _formdiv = new U.UF.UI.form(
  7033. "翻译",
  7034. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  7035. "id": "translation",
  7036. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7037. "onresize": function () { }
  7038. }, {
  7039. closecallback: function () { }
  7040. }, { "style": { "height": "36px" } }).form; //创建窗体
  7041. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/translation.png)" }, "name": "翻译", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7042. break;
  7043. case "mohe": //魔盒
  7044. _formdiv = new U.UF.UI.form(
  7045. "魔盒识字",
  7046. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  7047. "id": "mohe",
  7048. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  7049. "onresize": function () { }
  7050. }, {
  7051. closecallback: function () { }
  7052. }, { "style": { "height": "36px" } }).form; //创建窗体
  7053. _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); } }
  7054. break;
  7055. case "24game": //24点
  7056. _formdiv = new U.UF.UI.form(
  7057. "24点",
  7058. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  7059. "id": "24game",
  7060. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  7061. "onresize": function () { }
  7062. }, {
  7063. closecallback: function () { }
  7064. }, { "style": { "height": "36px" } }).form; //创建窗体
  7065. _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); } }
  7066. break;
  7067. case "case":
  7068. _formdiv = new U.UF.UI.form(
  7069. "课程进展",
  7070. $$("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 }), {
  7071. "id": "case",
  7072. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7073. "onresize": function () { }
  7074. }, {
  7075. closecallback: function () { }
  7076. }, { "style": { "height": "36px" } }).form; //创建窗体
  7077. _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); } }
  7078. break;
  7079. case "snf":
  7080. _formdiv = new U.UF.UI.form(
  7081. "赛诺梵",
  7082. $$("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" }), {
  7083. "id": "snf",
  7084. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7085. "onresize": function () { }
  7086. }, {
  7087. closecallback: function () { }
  7088. }, { "style": { "height": "36px" } }).form; //创建窗体
  7089. _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); } }
  7090. break;
  7091. case "hanFamily":
  7092. _formdiv = new U.UF.UI.form(
  7093. "汉字家族",
  7094. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  7095. "id": "hanFamily",
  7096. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7097. "onresize": function () { }
  7098. }, {
  7099. closecallback: function () { }
  7100. }, { "style": { "height": "36px" } }).form; //创建窗体
  7101. _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); } }
  7102. break;
  7103. case "hanClassics":
  7104. _formdiv = new U.UF.UI.form(
  7105. "国学经典",
  7106. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  7107. "id": "hanClassics",
  7108. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7109. "onresize": function () { }
  7110. }, {
  7111. closecallback: function () { }
  7112. }, { "style": { "height": "36px" } }).form; //创建窗体
  7113. _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); } }
  7114. break;
  7115. case "hanTraining":
  7116. _formdiv = new U.UF.UI.form(
  7117. "笔画训练",
  7118. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  7119. "id": "hanTraining",
  7120. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7121. "onresize": function () { }
  7122. }, {
  7123. closecallback: function () { }
  7124. }, { "style": { "height": "36px" } }).form; //创建窗体
  7125. _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); } }
  7126. break;
  7127. case "hanClass":
  7128. _formdiv = new U.UF.UI.form(
  7129. "书法课堂",
  7130. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  7131. "id": "hanClass",
  7132. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7133. "onresize": function () { }
  7134. }, {
  7135. closecallback: function () { }
  7136. }, { "style": { "height": "36px" } }).form; //创建窗体
  7137. _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); } }
  7138. break;
  7139. case "han":
  7140. _formdiv = new U.UF.UI.form(
  7141. "汉字宫",
  7142. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  7143. "id": "han",
  7144. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7145. "onresize": function () { }
  7146. }, {
  7147. closecallback: function () { }
  7148. }, { "style": { "height": "36px" } }).form; //创建窗体
  7149. _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); } }
  7150. break;
  7151. case "projectGM": //课程管理
  7152. _formdiv = new U.UF.UI.form(
  7153. "课程管理",
  7154. $$("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 }), {
  7155. "id": "projectGM",
  7156. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7157. "onresize": function () { }
  7158. }, {
  7159. closecallback: function () { }
  7160. }, { "style": { "height": "36px" } }).form; //创建窗体
  7161. _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); } }
  7162. break;
  7163. case "studyGM": //课程中心
  7164. _formdiv = new U.UF.UI.form(
  7165. "课程中心",
  7166. $$("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
  7167. "id": "study",
  7168. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7169. "onresize": function () { }
  7170. }, {
  7171. closecallback: function () { }
  7172. }, { "style": { "height": "36px" } }).form; //创建窗体
  7173. _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); } }
  7174. break;
  7175. // studentGM
  7176. case "studentGM": //学生管理
  7177. _formdiv = new U.UF.UI.form(
  7178. "学生管理",
  7179. $$("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 }), {
  7180. "id": "studentGM",
  7181. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7182. "onresize": function () { }
  7183. }, {
  7184. closecallback: function () { }
  7185. }, { "style": { "height": "36px" } }).form; //创建窗体
  7186. _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); } }
  7187. break;
  7188. case "evaluateGM": //学生评价
  7189. _formdiv = new U.UF.UI.form(
  7190. "学生评价",
  7191. $$("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 }), {
  7192. "id": "evaluateGM",
  7193. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7194. "onresize": function () { }
  7195. }, {
  7196. closecallback: function () { }
  7197. }, { "style": { "height": "36px" } }).form; //创建窗体
  7198. _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); } }
  7199. break;
  7200. // classGM
  7201. case "classGM": //班级管理
  7202. _formdiv = new U.UF.UI.form(
  7203. "班级管理",
  7204. $$("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 }), {
  7205. "id": "classGM",
  7206. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7207. "onresize": function () { }
  7208. }, {
  7209. closecallback: function () { }
  7210. }, { "style": { "height": "36px" } }).form; //创建窗体
  7211. _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); } }
  7212. break;
  7213. // dataGM
  7214. case "dataGM":
  7215. _formdiv = new U.UF.UI.form(
  7216. "我的资料",
  7217. $$("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 }), {
  7218. "id": "dataGM",
  7219. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7220. "onresize": function () { }
  7221. }, {
  7222. closecallback: function () { }
  7223. }, { "style": { "height": "36px" } }).form; //创建窗体
  7224. _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); } }
  7225. break;
  7226. // caseGM
  7227. case "caseGM": //课程进展
  7228. _formdiv = new U.UF.UI.form(
  7229. "课程进展",
  7230. $$("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 }), {
  7231. "id": "caseGM",
  7232. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7233. "onresize": function () { }
  7234. }, {
  7235. closecallback: function () { }
  7236. }, { "style": { "height": "36px" } }).form; //创建窗体
  7237. _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); } }
  7238. break;
  7239. // meterialGM
  7240. case "meterialGM": //素材库
  7241. _formdiv = new U.UF.UI.form(
  7242. "素材库",
  7243. $$("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 }), {
  7244. "id": "meterialGM",
  7245. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7246. "onresize": function () { }
  7247. }, {
  7248. closecallback: function () { }
  7249. }, { "style": { "height": "36px" } }).form; //创建窗体
  7250. _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); } }
  7251. break;
  7252. // evaluateSGM
  7253. case "evaluateSGM": //我的评价
  7254. _formdiv = new U.UF.UI.form(
  7255. "我的评价",
  7256. $$("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 }), {
  7257. "id": "evaluateSGM",
  7258. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7259. "onresize": function () { }
  7260. }, {
  7261. closecallback: function () { }
  7262. }, { "style": { "height": "36px" } }).form; //创建窗体
  7263. _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); } }
  7264. break;
  7265. case "jupyter": //jupyter
  7266. _formdiv = new U.UF.UI.form(
  7267. "jupyter",
  7268. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  7269. "id": "jupyter",
  7270. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7271. "onresize": function () { }
  7272. }, {
  7273. closecallback: function () { }
  7274. }, { "style": { "height": "36px" } }).form; //创建窗体
  7275. _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); } }
  7276. break;
  7277. case "number": //数字实验室
  7278. _formdiv = new U.UF.UI.form(
  7279. "数字实验室",
  7280. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  7281. "id": "number",
  7282. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7283. "onresize": function () { }
  7284. }, {
  7285. closecallback: function () { }
  7286. }, { "style": { "height": "36px" } }).form; //创建窗体
  7287. _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); } }
  7288. break;
  7289. case "studentCourse": //项目管理 学生
  7290. _formdiv = new U.UF.UI.form(
  7291. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  7292. $$("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 }), {
  7293. "id": "studentCourse",
  7294. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7295. "onresize": function () { }
  7296. }, {
  7297. closecallback: function () { }
  7298. }, { "style": { "height": "36px" } }).form; //创建窗体
  7299. _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); } }
  7300. break;
  7301. case "studentCourseS": //项目管理 老师
  7302. _formdiv = new U.UF.UI.form(
  7303. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  7304. $$("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 }), {
  7305. "id": "studentCourseS",
  7306. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7307. "onresize": function () { }
  7308. }, {
  7309. closecallback: function () { }
  7310. }, { "style": { "height": "36px" } }).form; //创建窗体
  7311. _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); } }
  7312. break;
  7313. case "studentIndex": //项目中心
  7314. _formdiv = new U.UF.UI.form(
  7315. "项目中心",
  7316. $$("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 }), {
  7317. "id": "studentIndex",
  7318. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7319. "onresize": function () { }
  7320. }, {
  7321. closecallback: function () { }
  7322. }, { "style": { "height": "36px" } }).form; //创建窗体
  7323. _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); } }
  7324. break;
  7325. case "CaseDesignS":
  7326. _formdiv = new U.UF.UI.form(
  7327. "项目进展",
  7328. $$("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 }), {
  7329. "id": "case",
  7330. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7331. "onresize": function () { }
  7332. }, {
  7333. closecallback: function () { }
  7334. }, { "style": { "height": "36px" } }).form; //创建窗体
  7335. _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); } }
  7336. break;
  7337. case "tcStudent": //腾讯学生管理
  7338. _formdiv = new U.UF.UI.form(
  7339. "学生管理",
  7340. $$("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 }), {
  7341. "id": "tcStudent",
  7342. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7343. "onresize": function () { }
  7344. }, {
  7345. closecallback: function () { }
  7346. }, { "style": { "height": "36px" } }).form; //创建窗体
  7347. _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); } }
  7348. break;
  7349. case "tcSchool": //腾讯学校管理
  7350. _formdiv = new U.UF.UI.form(
  7351. "学校管理",
  7352. $$("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 }), {
  7353. "id": "tcSchool",
  7354. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7355. "onresize": function () { }
  7356. }, {
  7357. closecallback: function () { }
  7358. }, { "style": { "height": "36px" } }).form; //创建窗体
  7359. _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); } }
  7360. break;
  7361. case "tcTeacher": //腾讯学校管理
  7362. _formdiv = new U.UF.UI.form(
  7363. "教师管理",
  7364. $$("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 }), {
  7365. "id": "tcTeacher",
  7366. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7367. "onresize": function () { }
  7368. }, {
  7369. closecallback: function () { }
  7370. }, { "style": { "height": "36px" } }).form; //创建窗体
  7371. _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); } }
  7372. break;
  7373. case "teacher":
  7374. _formdiv = new U.UF.UI.form(
  7375. "教师管理",
  7376. $$("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 }), {
  7377. "id": "teacher",
  7378. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7379. "onresize": function () { }
  7380. }, {
  7381. closecallback: function () { }
  7382. }, { "style": { "height": "36px" } }).form; //创建窗体
  7383. _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); } }
  7384. break;
  7385. case "tcData": //腾讯我的资料
  7386. _formdiv = new U.UF.UI.form(
  7387. "我的资料",
  7388. $$("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 }), {
  7389. "id": "tcData",
  7390. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7391. "onresize": function () { }
  7392. }, {
  7393. closecallback: function () { }
  7394. }, { "style": { "height": "36px" } }).form; //创建窗体
  7395. _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); } }
  7396. break;
  7397. case "tcNotice": //腾讯消息通知
  7398. _formdiv = new U.UF.UI.form(
  7399. "消息通知",
  7400. $$("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 }), {
  7401. "id": "tcNotice",
  7402. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7403. "onresize": function () { }
  7404. }, {
  7405. closecallback: function () { }
  7406. }, { "style": { "height": "36px" } }).form; //创建窗体
  7407. _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); } }
  7408. break;
  7409. case "myReport": //好友打开
  7410. _formdiv = new U.UF.UI.form(
  7411. "我的评价",
  7412. $$("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 }), {
  7413. "id": "myReport",
  7414. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7415. "onresize": function () { }
  7416. }, {
  7417. closecallback: function () { }
  7418. }, { "style": { "height": "36px" } }).form; //创建窗体
  7419. _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); } }
  7420. break;
  7421. case "learnAna": //好友打开
  7422. _formdiv = new U.UF.UI.form(
  7423. "学习分析",
  7424. $$("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 }), {
  7425. "id": "learnAna",
  7426. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7427. "onresize": function () { }
  7428. }, {
  7429. closecallback: function () { }
  7430. }, { "style": { "height": "36px" } }).form; //创建窗体
  7431. _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); } }
  7432. break;
  7433. case "AIChat": //AI共创
  7434. _formdiv = new U.UF.UI.form(
  7435. "AI共创",
  7436. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  7437. "id": "AIChat",
  7438. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  7439. "onresize": function () { }
  7440. }, {
  7441. istop: true,
  7442. closecallback: function () { $("#aichat_icon").remove(); },
  7443. narrowcallback: function () {
  7444. if (!$("#aichat_icon")[0]) {
  7445. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  7446. }
  7447. },
  7448. }, { "style": { "height": "36px" } }).form; //创建窗体
  7449. _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); } }
  7450. break;
  7451. case "ainew": //AI共创
  7452. _formdiv = new U.UF.UI.form(
  7453. "AI协同",
  7454. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  7455. "id": "ainew",
  7456. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7457. "onresize": function () { }
  7458. }, {
  7459. closecallback: function () { }
  7460. }, { "style": { "height": "36px" } }).form; //创建窗体
  7461. _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); } }
  7462. break;
  7463. case "gpt4": //gpt4
  7464. _formdiv = new U.UF.UI.form(
  7465. "AI助手",
  7466. $$("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 }), {
  7467. "id": "gpt4",
  7468. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7469. "onresize": function () { }
  7470. }, {
  7471. closecallback: function () { }
  7472. }, { "style": { "height": "36px" } }).form; //创建窗体
  7473. _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); } }
  7474. break;
  7475. case "aigpt": //gpt4
  7476. _formdiv = new U.UF.UI.form(
  7477. "AI助手+",
  7478. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7479. "id": "aigpt",
  7480. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7481. "onresize": function () { }
  7482. }, {
  7483. closecallback: function () {
  7484. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  7485. }
  7486. }, { "style": { "height": "36px" } }).form; //创建窗体
  7487. _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); } }
  7488. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7489. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  7490. })
  7491. break;
  7492. case "aiKnowledge": //aiKnowledge
  7493. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7494. if (_oid == '8a352da2-56e1-11ef-b873-005056b86db5') {
  7495. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7496. }
  7497. _formdiv = new U.UF.UI.form(
  7498. "知识建构",
  7499. $$("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 }), {
  7500. "id": "aiKnowledge",
  7501. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7502. "onresize": function () { }
  7503. }, {
  7504. closecallback: function () { }
  7505. }, { "style": { "height": "36px" } }).form; //创建窗体
  7506. _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); } }
  7507. break;
  7508. case "futureClass": //AI共创
  7509. _formdiv = new U.UF.UI.form(
  7510. "协同建构",
  7511. $$("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
  7512. "id": "synergyCourse",
  7513. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7514. "onresize": function () { }
  7515. }, {
  7516. closecallback: function () {
  7517. $("iframe", _formdiv)[0].contentWindow.loginout();
  7518. }
  7519. }, { "style": { "height": "36px" } }).form; //创建窗体
  7520. _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); } }
  7521. break;
  7522. case "aiagent": //ai agent
  7523. _formdiv = new U.UF.UI.form(
  7524. "AI Agent",
  7525. $$("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" }), {
  7526. "id": "AIAgent",
  7527. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7528. "onresize": function () { }
  7529. }, {
  7530. closecallback: function () { }
  7531. }, { "style": { "height": "36px" } }).form; //创建窗体
  7532. _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); } }
  7533. break;
  7534. case "dataBoard": //数据看板
  7535. _formdiv = new U.UF.UI.form(
  7536. "数据看板",
  7537. $$("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 }), {
  7538. "id": "dataBoard",
  7539. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7540. "onresize": function () { }
  7541. }, {
  7542. closecallback: function () { }
  7543. }, { "style": { "height": "36px" } }).form; //创建窗体
  7544. _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); } }
  7545. break;
  7546. case "dataBoardSies": //数据融合
  7547. _formdiv = new U.UF.UI.form(
  7548. "数据融合",
  7549. $$("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 }), {
  7550. "id": "dataBoardSies",
  7551. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7552. "onresize": function () { }
  7553. }, {
  7554. closecallback: function () { }
  7555. }, { "style": { "height": "36px" } }).form; //创建窗体
  7556. _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); } }
  7557. break;
  7558. case "dataBoardNew": //数据看板
  7559. _formdiv = new U.UF.UI.form(
  7560. "综合看板",
  7561. $$("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 }), {
  7562. "id": "dataBoardNew",
  7563. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7564. "onresize": function () { }
  7565. }, {
  7566. closecallback: function () { }
  7567. }, { "style": { "height": "36px" } }).form; //创建窗体
  7568. _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); } }
  7569. break;
  7570. case "dataBoardTest": //数据看板
  7571. _formdiv = new U.UF.UI.form(
  7572. "评测看板",
  7573. $$("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 }), {
  7574. "id": "dataBoardTest",
  7575. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7576. "onresize": function () { }
  7577. }, {
  7578. closecallback: function () { }
  7579. }, { "style": { "height": "36px" } }).form; //创建窗体
  7580. _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); } }
  7581. break;
  7582. case "AIAnalyse": //AI共创
  7583. _formdiv = new U.UF.UI.form(
  7584. "AI分析",
  7585. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  7586. "id": "AIAnalyse",
  7587. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7588. "onresize": function () { }
  7589. }, {
  7590. closecallback: function () { }
  7591. }, { "style": { "height": "36px" } }).form; //创建窗体
  7592. _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); } }
  7593. break;
  7594. case "studioCourse": //AI共创
  7595. _formdiv = new U.UF.UI.form(
  7596. "工作管理",
  7597. $$("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 }), {
  7598. "id": "studioCourse",
  7599. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7600. "onresize": function () { }
  7601. }, {
  7602. closecallback: function () { }
  7603. }, { "style": { "height": "36px" } }).form; //创建窗体
  7604. _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); } }
  7605. break;
  7606. case "studioIndex": //AI共创
  7607. _formdiv = new U.UF.UI.form(
  7608. "工作中心",
  7609. $$("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 }), {
  7610. "id": "studioIndex",
  7611. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7612. "onresize": function () { }
  7613. }, {
  7614. closecallback: function () { }
  7615. }, { "style": { "height": "36px" } }).form; //创建窗体
  7616. _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); } }
  7617. break;
  7618. case "source":
  7619. _formdiv = new U.UF.UI.form(
  7620. "教学资源",
  7621. $$("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 }), {
  7622. "id": "source",
  7623. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7624. "onresize": function () { }
  7625. }, {
  7626. closecallback: function () { }
  7627. }, { "style": { "height": "36px" } }).form; //创建窗体
  7628. _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); } }
  7629. break;
  7630. case "testTeacher":
  7631. _formdiv = new U.UF.UI.form(
  7632. "智能表单",
  7633. $$("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 }), {
  7634. "id": "testTeacher",
  7635. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7636. "onresize": function () { }
  7637. }, {
  7638. closecallback: function () { }
  7639. }, { "style": { "height": "36px" } }).form; //创建窗体
  7640. _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); } }
  7641. break;
  7642. case "testStudent":
  7643. _formdiv = new U.UF.UI.form(
  7644. "教师中心",
  7645. $$("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 }), {
  7646. "id": "testStudent",
  7647. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7648. "onresize": function () { }
  7649. }, {
  7650. closecallback: function () { }
  7651. }, { "style": { "height": "36px" } }).form; //创建窗体
  7652. _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); } }
  7653. break;
  7654. case "testTeacherSies":
  7655. _formdiv = new U.UF.UI.form(
  7656. "教师管理",
  7657. $$("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 }), {
  7658. "id": "testTeacherSies",
  7659. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7660. "onresize": function () { }
  7661. }, {
  7662. closecallback: function () { }
  7663. }, { "style": { "height": "36px" } }).form; //创建窗体
  7664. _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); } }
  7665. break;
  7666. case "testStudentSies":
  7667. _formdiv = new U.UF.UI.form(
  7668. "教师中心",
  7669. $$("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 }), {
  7670. "id": "testStudentSies",
  7671. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7672. "onresize": function () { }
  7673. }, {
  7674. closecallback: function () { }
  7675. }, { "style": { "height": "36px" } }).form; //创建窗体
  7676. _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); } }
  7677. break;
  7678. case "ytpbl": //消息通知
  7679. _formdiv = new U.UF.UI.form(
  7680. "案例征集",
  7681. $$("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 }), {
  7682. "id": "ytpbl",
  7683. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7684. "onresize": function () { }
  7685. }, {
  7686. closecallback: function () { }
  7687. }, { "style": { "height": "36px" } }).form; //创建窗体
  7688. _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); } }
  7689. // 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");
  7690. break;
  7691. case "aiCourseResource": //人工智能窗体
  7692. _formdiv = new U.UF.UI.form(
  7693. false,
  7694. $$("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 }), {
  7695. "id": "aiCourseResource",
  7696. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7697. "onresize": function () { },
  7698. "isdrag": false,
  7699. }, {
  7700. closecallback: function () { }
  7701. }, { "style": { "height": "36px" } }).form; //创建窗体
  7702. _taskbar = ''
  7703. break;
  7704. case "szdjgCocooroboX": //图形化编程
  7705. _formdiv = new U.UF.UI.form(
  7706. "图形化编程",
  7707. $$("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" }), {
  7708. "id": "szdjgCocooroboX",
  7709. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7710. "onresize": function () { }
  7711. }, {
  7712. closecallback: function () { }
  7713. }, { "style": { "height": "36px" } }).form; //创建窗体
  7714. _taskbar = ''
  7715. break;
  7716. case "szdjgPython": //python编程
  7717. _formdiv = new U.UF.UI.form(
  7718. "Python编程",
  7719. $$("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" }), {
  7720. "id": "szdjgPython",
  7721. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7722. "onresize": function () { }
  7723. }, {
  7724. closecallback: function () { }
  7725. }, { "style": { "height": "36px" } }).form; //创建窗体
  7726. _taskbar = ''
  7727. break;
  7728. case "Record":
  7729. _formdiv = new U.UF.UI.form(
  7730. "观察记录",
  7731. $$("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 }), {
  7732. "id": "Record",
  7733. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7734. "onresize": function () { }
  7735. }, {
  7736. closecallback: function () { }
  7737. }, { "style": { "height": "36px" } }).form; //创建窗体
  7738. _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); } }
  7739. break;
  7740. case "aigptCourse":
  7741. _formdiv = new U.UF.UI.form(
  7742. "AI智能体",
  7743. $$("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' }), {
  7744. "id": "aigptCourse",
  7745. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7746. "onresize": function () { }
  7747. }, {
  7748. closecallback: function () { }
  7749. }, { "style": { "height": "36px" } }).form; //创建窗体
  7750. _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); } }
  7751. break;
  7752. case "classroomObservation":
  7753. _formdiv = new U.UF.UI.form(
  7754. "课堂观察",
  7755. $$("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 }), {
  7756. "id": "classroomObservation",
  7757. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7758. "onresize": function () { }
  7759. }, {
  7760. closecallback: function () { }
  7761. }, { "style": { "height": "36px" } }).form; //创建窗体
  7762. _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); } }
  7763. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7764. break;
  7765. case "pblCourse":
  7766. _formdiv = new U.UF.UI.form(
  7767. "学生PBL",
  7768. $$("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 }), {
  7769. "id": "pblCourse",
  7770. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7771. "onresize": function () { }
  7772. }, {
  7773. closecallback: function () { }
  7774. }, { "style": { "height": "36px" } }).form; //创建窗体
  7775. _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); } }
  7776. break;
  7777. case "appStore":
  7778. U.MD.D.addOp('', 'cocoflowOpen', '')
  7779. _formdiv = new U.UF.UI.form(
  7780. "CocoFlow",
  7781. $$("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 }), {
  7782. "id": "appStore",
  7783. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7784. "onresize": function () { }
  7785. }, {
  7786. closecallback: function () { }
  7787. }, { "style": { "height": "36px" } }).form; //创建窗体
  7788. _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); } }
  7789. break;
  7790. case "sassPlatform":
  7791. _formdiv = new U.UF.UI.form(
  7792. "Sass通用后台管理",
  7793. $$("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 }), {
  7794. "id": "sassPlatform",
  7795. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7796. "onresize": function () { }
  7797. }, {
  7798. closecallback: function () { }
  7799. }, { "style": { "height": "36px" } }).form; //创建窗体
  7800. _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); } }
  7801. break;
  7802. case "EDU":
  7803. _formdiv = new U.UF.UI.form(
  7804. "EDU",
  7805. $$("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" }), {
  7806. "id": "EDU",
  7807. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7808. "onresize": function () { }
  7809. }, {
  7810. closecallback: function () { }
  7811. }, { "style": { "height": "36px" } }).form; //创建窗体
  7812. _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); } }
  7813. break;
  7814. case "knowledge":
  7815. _formdiv = new U.UF.UI.form(
  7816. "知识库",
  7817. $$("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 }), {
  7818. "id": "knowledge",
  7819. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7820. "onresize": function () { }
  7821. }, {
  7822. closecallback: function () { }
  7823. }, { "style": { "height": "36px" } }).form; //创建窗体
  7824. _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); } }
  7825. break;
  7826. case "userExamine":
  7827. _formdiv = new U.UF.UI.form(
  7828. "账号申请",
  7829. $$("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" }), {
  7830. "id": "userExamine",
  7831. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7832. "onresize": function () { }
  7833. }, {
  7834. closecallback: function () { }
  7835. }, { "style": { "height": "36px" } }).form; //创建窗体
  7836. break;
  7837. case "cocoflowDeskTop": //cocoflowDeskTop
  7838. _formdiv = new U.UF.UI.form(
  7839. false,
  7840. $$("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 }), {
  7841. "id": "cocoflowDeskTop",
  7842. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7843. "onresize": function () { },
  7844. }, {
  7845. closecallback: function () { },
  7846. "isdrag": false,
  7847. }, { "style": { "height": "36px" } }).form; //创建窗体
  7848. _taskbar = ''
  7849. break;
  7850. case "liyuanLogin": //liyuanLogin
  7851. _formdiv = new U.UF.UI.form(
  7852. false,
  7853. $$("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 }), {
  7854. "id": "liyuanLogin",
  7855. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7856. "onresize": function () { },
  7857. }, {
  7858. closecallback: function () { },
  7859. isdrag: false,
  7860. isstretching: false,
  7861. isenlarge: false,
  7862. isnarrow: false
  7863. }, { "style": { "height": "36px" } }).form; //创建窗体
  7864. _taskbar = ''
  7865. break;
  7866. case "updatePaDialog":
  7867. _formdiv = new U.UF.UI.form(
  7868. "密码修改",
  7869. $$("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 }), {
  7870. "id": "updatePaDialog",
  7871. "style": { "width": "450px", "height": "610px", "overflow": 'hidden' },
  7872. "onresize": function () { },
  7873. }, {
  7874. closecallback: function () { },
  7875. isclose: false,
  7876. isdrag: false,
  7877. isstretching: false,
  7878. isenlarge: false,
  7879. isnarrow: false
  7880. }, { "style": { "height": "36px" } }).form; //创建窗体
  7881. break;
  7882. }
  7883. //U.MD.D.I.openClick(str);
  7884. //如果有任务栏信息
  7885. if (_taskbar) {
  7886. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7887. }
  7888. if (iframeBool) {
  7889. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7890. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7891. // console.log("iframe进入");
  7892. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7893. // };
  7894. setTimeout(() => {
  7895. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7896. }, 2000);
  7897. }
  7898. }
  7899. U.MD.D.I.openApplicationWai = function (id, url, dom, array) {
  7900. var _formdiv, //创建任务栏时同时弹出的窗体元素。
  7901. _userinfo = US.userInfo, //登录用户信息
  7902. { userid: _userid, organizeid: _oid, type: _type, org: _org, role: _role, classid: _classId } = _userinfo; // 解构赋值获取用户信息
  7903. const _TscreenType = 1, _screenType = 2, _SscreenType = 3; // 常量定义
  7904. let iframeBool = true;
  7905. let queryString = ''
  7906. if (array && array.length) {
  7907. const paramsMap = {
  7908. userid: _userid,
  7909. org: _org,
  7910. oid: _oid,
  7911. type: _type,
  7912. role: _role,
  7913. classId: _classId,
  7914. TscreenType: _TscreenType,
  7915. SscreenType: _SscreenType
  7916. };
  7917. const canshu = array
  7918. .filter(param => paramsMap[param] !== undefined)
  7919. .map(param => `${param}=${paramsMap[param]}`);
  7920. queryString = canshu.length ? (url.includes('?') ? '&' : '?') + canshu.join('&') : ''; // 生成查询字符串
  7921. }
  7922. let _url = url + queryString
  7923. if (U.UF.UI.form.allForm[id]) {
  7924. iframeBool = false
  7925. }
  7926. _formdiv = new U.UF.UI.form(
  7927. false,
  7928. $$("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 }),
  7929. {
  7930. "id": id,
  7931. "style": { "width": "100%", "height": "100%", "overflow": 'hidden', "position": 'unset', "boxShadow": "unset" },
  7932. "onresize": function () { },
  7933. },
  7934. {
  7935. closecallback: function () { },
  7936. isdrag: false,
  7937. isstretching: false,
  7938. isenlarge: false,
  7939. isnarrow: false
  7940. },
  7941. { "style": { "height": "36px" } },
  7942. undefined,
  7943. undefined,
  7944. dom
  7945. ).form
  7946. }
  7947. // U.MD.D.I.openClick = function(str){
  7948. // var click = '';
  7949. // switch(str){
  7950. // case 'friend':
  7951. // click = '我的好友';
  7952. // break;
  7953. // case 'domain':
  7954. // click = '域名管理';
  7955. // break;
  7956. // case 'disk':
  7957. // click = '我的云盘';
  7958. // break;
  7959. // case 'word':
  7960. // click = 'Word';
  7961. // break;
  7962. // case 'excel':
  7963. // click = 'Execl';
  7964. // break;
  7965. // case 'txt':
  7966. // click = '文本文件';
  7967. // break;
  7968. // case 'lookupFriend':
  7969. // click = '查找好友';
  7970. // break;
  7971. // case 'ftp':
  7972. // click = 'FTP';
  7973. // break;
  7974. // case 'group':
  7975. // click = '群组';
  7976. // break;
  7977. // case 'set':
  7978. // click = '我的设置';
  7979. // break;
  7980. // case 'systemSet':
  7981. // click = '系统设置';
  7982. // break;
  7983. // case 'boomYun':
  7984. // click = '互联办公';
  7985. // break;
  7986. // case 'xz':
  7987. // click = '云端下载';
  7988. // break;
  7989. // case 'client':
  7990. // click = '有思浏览器';
  7991. // break;
  7992. // case 'backEndProgramming':
  7993. // click = '在线后台编程';
  7994. // break;
  7995. // case 'frontEndProgramming':
  7996. // click = '在线前端编程';
  7997. // break;
  7998. // default: break;
  7999. // }
  8000. // if(U.MD.D.I.Ip && click){
  8001. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  8002. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  8003. // })
  8004. // }
  8005. // }
  8006. /**
  8007. *函数作用:ajax简易函数,使用post格式
  8008. *@param url {data} 后台地址
  8009. *@param data {data} 参数json
  8010. *@param fn {data} 回调函数
  8011. *
  8012. */
  8013. // U.MD.D.I.Mysqlrequest = function(url,fn){
  8014. // var xhr = new XMLHttpRequest();
  8015. // xhr.open("GET",url,true);
  8016. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  8017. // xhr.onreadystatechange = function(){
  8018. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  8019. // fn.call(this,xhr.responseText);
  8020. // }
  8021. // };
  8022. // xhr.send();
  8023. // }
  8024. /*判断是否是内网IP*/
  8025. // U.MD.D.I.isInnerIPFn = function(str){
  8026. // var curPageUrl = str;
  8027. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  8028. // curPageUrl =curPageUrl.replace(reg1,'');
  8029. // // console.log('curPageUrl-1 '+curPageUrl);
  8030. // var reg2 = /\:+/g;//替换冒号为一点
  8031. // curPageUrl =curPageUrl.replace(reg2,'.');
  8032. // // console.log('curPageUrl-2 '+curPageUrl);
  8033. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  8034. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  8035. // if(curPageUrl[2] != '16'){
  8036. // return ipAddress;
  8037. // }else{
  8038. // return false;
  8039. // }
  8040. // }
  8041. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  8042. // //compatibility for firefox and chrome
  8043. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  8044. // var pc = new myPeerConnection({
  8045. // iceServers: []
  8046. // }),
  8047. // noop = function() {},
  8048. // localIPs = {},
  8049. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  8050. // key;
  8051. // function iterateIP(ip) {
  8052. // if (!localIPs[ip]) onNewIP(ip);
  8053. // localIPs[ip] = true;
  8054. // }
  8055. // //create a bogus data channel
  8056. // pc.createDataChannel("");
  8057. // // create offer and set local description
  8058. // pc.createOffer().then(function(sdp) {
  8059. // sdp.sdp.split('\n').forEach(function(line) {
  8060. // if (line.indexOf('candidate') < 0) return;
  8061. // line.match(ipRegex).forEach(iterateIP);
  8062. // });
  8063. // pc.setLocalDescription(sdp, noop, noop);
  8064. // }).catch(function(reason) {
  8065. // // An error occurred, so handle the failure to connect
  8066. // });
  8067. // //sten for candidate events
  8068. // pc.onicecandidate = function(ice) {
  8069. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  8070. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  8071. // };
  8072. // }
  8073. // U.MD.D.I.getUserIpBool = function(callback){
  8074. // U.MD.D.I.getUserIP(function(ip){
  8075. // alert("Got IP! :" + ip);
  8076. // });
  8077. //}
  8078. //#endregion
  8079. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  8080. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8081. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8082. _userinfo = US.userInfo, //登录用户信息
  8083. _userid = US.userInfo.userid //登录用户id
  8084. let _iframe;
  8085. let _cid = cid,
  8086. _stage = stage,
  8087. _task = task,
  8088. _tool = tool;
  8089. var _jie = $$("div", {
  8090. "style": {
  8091. "position": "absolute",
  8092. "bottom": "50px",
  8093. "right": "50px",
  8094. "zIndex": "9999",
  8095. "backgroundColor": "#2268bc",
  8096. "color": "#fff",
  8097. "padding": "12px 20px",
  8098. "cursor": "pointer",
  8099. "borderRadius": "4px",
  8100. },
  8101. "innerHTML": "提交作业"
  8102. })
  8103. let aTool = ''
  8104. let _loading = document.createElement('div')
  8105. _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;"
  8106. // _loading.id = "";
  8107. let _lchild = document.createElement('div')
  8108. let _limg = document.createElement('img')
  8109. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8110. _limg.style = "width: 26px;margin-right: 10px;"
  8111. _lchild.appendChild(_limg)
  8112. let _lspan = document.createElement('span')
  8113. _lspan.innerHTML = "上传中..."
  8114. _lchild.appendChild(_lspan)
  8115. _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%);"
  8116. _loading.appendChild(_lchild)
  8117. var _box = $$('div', {
  8118. "style": {
  8119. "position": "relative",
  8120. "width": "100%",
  8121. "height": "100%",
  8122. },
  8123. })
  8124. _box.appendChild(_loading)
  8125. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  8126. switch (str) {
  8127. case "whiteboard":
  8128. aTool = 1;
  8129. _iframe = $$("iframe", {
  8130. "frameborder": "no",
  8131. "border": "0",
  8132. "scrolling ": "no",
  8133. "style": {
  8134. "cssText": "border:0;width:100%;height:100%"
  8135. },
  8136. "src": "https://beta.iwb.cocorobo.cn/"
  8137. })
  8138. _box.appendChild(_iframe);
  8139. _box.appendChild(_jie);
  8140. _formdiv = new U.UF.UI.form(
  8141. "电子白板",
  8142. _box, {
  8143. "id": "whiteboard" + cid + stage + task + tool,
  8144. "style": {
  8145. "width": "90%",
  8146. "height": "90%",
  8147. "overflow": 'hidden'
  8148. },
  8149. "onresize": function () { }
  8150. }, {
  8151. closecallback: function () { }
  8152. }, {
  8153. "style": {
  8154. "height": "36px"
  8155. }
  8156. }).form; //创建窗体
  8157. _taskbar = {
  8158. "id": str + _formdiv.id,
  8159. "style": {
  8160. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8161. },
  8162. "name": "电子白板",
  8163. "forms": _formdiv,
  8164. "click": function () {
  8165. U.MD.D.I.openApplication(str, obj, info);
  8166. }
  8167. }
  8168. break;
  8169. case "mind":
  8170. aTool = 3;
  8171. _iframe = $$("iframe", {
  8172. "frameborder": "no",
  8173. "border": "0",
  8174. "scrolling ": "no",
  8175. "style": {
  8176. "cssText": "border:0;width:100%;height:100%"
  8177. },
  8178. "src": "/kityminder-editor/dist/index.html"
  8179. })
  8180. _box.appendChild(_iframe);
  8181. _box.appendChild(_jie);
  8182. _formdiv = new U.UF.UI.form(
  8183. "思维导图",
  8184. _box, { //"/jsmind/example/demo.html"
  8185. "id": "mind" + cid + stage + task + tool,
  8186. "style": {
  8187. "width": "90%",
  8188. "height": "90%",
  8189. "overflow": 'hidden'
  8190. },
  8191. "onresize": function () { }
  8192. }, {
  8193. closecallback: function () { }
  8194. }, {
  8195. "style": {
  8196. "height": "36px"
  8197. }
  8198. }).form; //创建窗体
  8199. _taskbar = {
  8200. "id": str + _formdiv.id,
  8201. "style": {
  8202. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8203. },
  8204. "name": "思维导图",
  8205. "forms": _formdiv,
  8206. "click": function () {
  8207. U.MD.D.I.openApplication(str, obj, info);
  8208. }
  8209. }
  8210. break;
  8211. case "MindMap":
  8212. aTool = 3;
  8213. _iframe = $$("iframe", {
  8214. "frameborder": "no",
  8215. "border": "0",
  8216. "scrolling ": "no",
  8217. "style": {
  8218. "cssText": "border:0;width:100%;height:100%"
  8219. },
  8220. "src": "//cloud.cocorobo.cn/mind/"
  8221. })
  8222. _box.appendChild(_iframe);
  8223. _box.appendChild(_jie);
  8224. _formdiv = new U.UF.UI.form(
  8225. "思维导图",
  8226. _box, { //"/jsmind/example/demo.html"
  8227. "id": "mind" + cid + stage + task + tool,
  8228. "style": {
  8229. "width": "90%",
  8230. "height": "90%",
  8231. "overflow": 'hidden'
  8232. },
  8233. "onresize": function () { }
  8234. }, {
  8235. closecallback: function () { }
  8236. }, {
  8237. "style": {
  8238. "height": "36px"
  8239. }
  8240. }).form; //创建窗体
  8241. _taskbar = {
  8242. "id": str + _formdiv.id,
  8243. "style": {
  8244. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8245. },
  8246. "name": "思维导图",
  8247. "forms": _formdiv,
  8248. "click": function () {
  8249. U.MD.D.I.openApplication(str, obj, info);
  8250. }
  8251. }
  8252. break;
  8253. case "doc":
  8254. aTool = 6;
  8255. _iframe = $$("iframe", {
  8256. "frameborder": "no",
  8257. "border": "0",
  8258. "scrolling ": "no",
  8259. "style": {
  8260. "cssText": "border:0;width:100%;height:100%"
  8261. },
  8262. "src": "/Office/Word/WordEditArea.htm"
  8263. })
  8264. _box.appendChild(_iframe);
  8265. _box.appendChild(_jie);
  8266. _formdiv = new U.UF.UI.form(
  8267. "协同文档",
  8268. _box, {
  8269. "id": "doc" + cid + stage + task + tool,
  8270. "style": {
  8271. "width": "90%",
  8272. "height": "90%",
  8273. "overflow": 'hidden'
  8274. },
  8275. "onresize": function () { }
  8276. }, {
  8277. closecallback: function () { }
  8278. }, {
  8279. "style": {
  8280. "height": "36px"
  8281. }
  8282. }).form; //创建窗体
  8283. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8284. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8285. })
  8286. _taskbar = {
  8287. "id": str + _formdiv.id,
  8288. "style": {
  8289. "backgroundImage": "url(/img/icon/doc.png)"
  8290. },
  8291. "name": "协同文档",
  8292. "forms": _formdiv,
  8293. "click": function () {
  8294. U.MD.D.I.openApplication(str, obj, info);
  8295. }
  8296. }
  8297. break;
  8298. case "mindNetwork": //好友打开
  8299. aTool = 7;
  8300. _iframe = $$("iframe", {
  8301. "webkitallowfullscreen": "",
  8302. "mozallowfullscreen": "",
  8303. "allowfullscreen": "",
  8304. "frameborder": "no",
  8305. "border": "0",
  8306. "scrolling ": "no",
  8307. "style": {
  8308. "cssText": "border:0; width:100%; height:100%;"
  8309. },
  8310. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8311. })
  8312. _box.appendChild(_iframe);
  8313. _box.appendChild(_jie);
  8314. _formdiv = new U.UF.UI.form(
  8315. "思维网格",
  8316. _box, {
  8317. "id": "mindNetwork" + cid + stage + task + tool,
  8318. "style": {
  8319. "width": "90%",
  8320. "height": "90%",
  8321. "overflow": 'hidden'
  8322. },
  8323. "onresize": function () { }
  8324. }, {
  8325. closecallback: function () { }
  8326. }, {
  8327. "style": {
  8328. "height": "36px"
  8329. }
  8330. }).form; //创建窗体
  8331. _taskbar = {
  8332. "id": str + _formdiv.id,
  8333. "style": {
  8334. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8335. },
  8336. "name": "思维网格",
  8337. "forms": _formdiv,
  8338. "click": function () {
  8339. U.MD.D.I.openApplication(str, obj, info);
  8340. }
  8341. }
  8342. break;
  8343. case "courseDesign":
  8344. _iframe = $$("iframe", {
  8345. "webkitallowfullscreen": "",
  8346. "mozallowfullscreen": "",
  8347. "allowfullscreen": "",
  8348. "frameborder": "no",
  8349. "border": "0",
  8350. "scrolling ": "no",
  8351. "style": {
  8352. "cssText": "border:0; width:100%; height:100%;"
  8353. },
  8354. "src": "/course-design-vue"
  8355. })
  8356. _box.appendChild(_iframe);
  8357. _box.appendChild(_jie);
  8358. _formdiv = new U.UF.UI.form(
  8359. "项目设计",
  8360. _box, {
  8361. "id": "courseDesign" + cid + stage + task + tool,
  8362. "style": {
  8363. "width": "90%",
  8364. "height": "90%",
  8365. "overflow": 'hidden'
  8366. },
  8367. "onresize": function () { }
  8368. }, {
  8369. closecallback: function () { }
  8370. }, {
  8371. "style": {
  8372. "height": "36px"
  8373. }
  8374. }).form; //创建窗体
  8375. _taskbar = {
  8376. "id": str + _formdiv.id,
  8377. "style": {
  8378. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8379. },
  8380. "name": "项目设计",
  8381. "forms": _formdiv,
  8382. "click": function () {
  8383. U.MD.D.I.openApplication(str, obj, info);
  8384. }
  8385. }
  8386. break;
  8387. }
  8388. const script1 = document.createElement("script");
  8389. script1.type = "text/javascript";
  8390. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8391. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8392. const script2 = document.createElement("script");
  8393. script2.type = "text/javascript";
  8394. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8395. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8396. const script3 = document.createElement("script");
  8397. script3.type = "text/javascript";
  8398. script3.charset = "UTF-8";
  8399. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8400. const script4 = document.createElement("script");
  8401. script4.type = "text/javascript";
  8402. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8403. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8404. if (_iframe) {
  8405. if (str == 'doc') {
  8406. _iframe = _formdiv.querySelector('iframe')
  8407. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8408. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8409. _iframe.contentWindow.document.body.appendChild(script1);
  8410. _iframe.contentWindow.document.body.appendChild(script2);
  8411. // _iframe.contentWindow.document.body.appendChild(script3);
  8412. _iframe.contentWindow.document.body.appendChild(script4);
  8413. })
  8414. if (onloadListener) {
  8415. _iframe.contentDocument.location.reload()
  8416. } else {
  8417. _iframe.contentDocument.location.reload()
  8418. }
  8419. } else if (str == 'courseDesign') {
  8420. U.UF.DL.iframeLoad(_iframe, function () {
  8421. // _iframe.contentWindow.U.MD.O.W.load();
  8422. // _iframe.contentWindow.document.body.appendChild(script1);
  8423. _iframe.contentWindow.document.body.appendChild(script2);
  8424. _iframe.contentWindow.document.body.appendChild(script4);
  8425. })
  8426. } else if (str == 'mind') {
  8427. _iframe = _formdiv.querySelector('iframe')
  8428. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8429. //
  8430. _iframe.contentWindow.document.body.appendChild(script1);
  8431. _iframe.contentWindow.document.body.appendChild(script2);
  8432. _iframe.contentWindow.document.body.appendChild(script4);
  8433. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8434. })
  8435. if (onloadListener) {
  8436. _iframe.contentDocument.location.reload()
  8437. } else {
  8438. _iframe.contentDocument.location.reload()
  8439. }
  8440. } else if (str == 'whiteboard') {
  8441. _iframe = _formdiv.querySelector('iframe')
  8442. let onloadListener = _iframe.onload = () => {
  8443. _iframe.contentWindow.document.body.appendChild(script1);
  8444. _iframe.contentWindow.document.body.appendChild(script2);
  8445. _iframe.contentWindow.document.body.appendChild(script4);
  8446. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8447. };
  8448. // if (onloadListener) {
  8449. // try {
  8450. // _iframe.src += "?cocorobo="+new Date().getTime()
  8451. // _iframe.contentWindow.document.location.reload()
  8452. // } catch (error) {
  8453. // }
  8454. // } else {
  8455. // _iframe.contentDocument.location.reload()
  8456. // }
  8457. } else {
  8458. _iframe.onload = () => {
  8459. _iframe.contentWindow.document.body.appendChild(script1);
  8460. _iframe.contentWindow.document.body.appendChild(script2);
  8461. // _iframe.contentWindow.document.body.appendChild(script3);
  8462. _iframe.contentWindow.document.body.appendChild(script4);
  8463. };
  8464. }
  8465. _jie.onclick = async () => {
  8466. let text = ''
  8467. if (aTool == 1) {
  8468. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8469. } else if (aTool == 6) {
  8470. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8471. } else if (aTool == 3) {
  8472. text = await U.MD.D.I.getEditorContent(_iframe);
  8473. }
  8474. _loading.style.display = 'flex'
  8475. console.log(_loading);
  8476. var _ajs = _iframe.contentWindow.document.createElement("script");
  8477. _ajs.type = "text/javascript";
  8478. _ajs.innerHTML =
  8479. // 'console.log(' + _loading + ');\n' +
  8480. 'var _js = document.createElement("script");\n' +
  8481. '_js.type="text/javascript";\n' +
  8482. '_js.charset="UTF-8";\n' +
  8483. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8484. "_js.onload = function(){\n" +
  8485. ' var a = document.getElementsByTagName("img")\n' +
  8486. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8487. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8488. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8489. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8490. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8491. "beforeUpload_shishi(file," +
  8492. "'" +
  8493. _userid +
  8494. "'" +
  8495. ", " +
  8496. "'" +
  8497. _cid +
  8498. "'" +
  8499. ", " +
  8500. "'" +
  8501. _stage +
  8502. "'" +
  8503. ", " +
  8504. "'" +
  8505. _task +
  8506. "'" +
  8507. ", " +
  8508. "'" +
  8509. _tool +
  8510. "'" +
  8511. ", " +
  8512. "'" +
  8513. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  8514. "'" +
  8515. ", " +
  8516. "'" +
  8517. aTool +
  8518. "'" +
  8519. ", " +
  8520. "`" +
  8521. text +
  8522. "`" +
  8523. ")\n" +
  8524. " });\n" +
  8525. "}\n" +
  8526. "document.head.appendChild(_js);\n";
  8527. _iframe.contentWindow.document.head.appendChild(_ajs);
  8528. }
  8529. }
  8530. //U.MD.D.I.openClick(str);
  8531. //如果有任务栏信息
  8532. // if (_taskbar) {
  8533. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8534. // }
  8535. }
  8536. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  8537. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8538. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8539. _userinfo = US.userInfo, //登录用户信息
  8540. _userid = US.userInfo.userid //登录用户id
  8541. let _iframe;
  8542. let _cid = cid,
  8543. _stage = stage,
  8544. _task = task,
  8545. _tool = tool;
  8546. var _jie = $$("div", {
  8547. "style": {
  8548. "position": "absolute",
  8549. "bottom": "50px",
  8550. "right": "50px",
  8551. "zIndex": "9999",
  8552. "backgroundColor": "#2268bc",
  8553. "color": "#fff",
  8554. "padding": "12px 20px",
  8555. "cursor": "pointer",
  8556. "borderRadius": "4px",
  8557. },
  8558. "innerHTML": "提交作业"
  8559. })
  8560. let aTool = ''
  8561. let _loading = document.createElement('div')
  8562. _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;"
  8563. // _loading.id = "";
  8564. let _lchild = document.createElement('div')
  8565. let _limg = document.createElement('img')
  8566. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8567. _limg.style = "width: 26px;margin-right: 10px;"
  8568. _lchild.appendChild(_limg)
  8569. let _lspan = document.createElement('span')
  8570. _lspan.innerHTML = "上传中..."
  8571. _lchild.appendChild(_lspan)
  8572. _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%);"
  8573. _loading.appendChild(_lchild)
  8574. let _box = $$('div', {
  8575. "style": {
  8576. "position": "relative",
  8577. "width": "100%",
  8578. "height": "100%",
  8579. },
  8580. })
  8581. _box.appendChild(_loading)
  8582. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  8583. switch (str) {
  8584. case "whiteboard":
  8585. aTool = 1;
  8586. _iframe = $$("iframe", {
  8587. "frameborder": "no",
  8588. "border": "0",
  8589. "scrolling ": "no",
  8590. "style": {
  8591. "cssText": "border:0;width:100%;height:100%"
  8592. },
  8593. "src": "https://beta.iwb.cocorobo.cn/"
  8594. })
  8595. _box.appendChild(_iframe);
  8596. _box.appendChild(_jie);
  8597. _formdiv = new U.UF.UI.form(
  8598. "电子白板",
  8599. _box, {
  8600. "id": "whiteboard" + cid + stage + task + tool,
  8601. "style": {
  8602. "width": "90%",
  8603. "height": "90%",
  8604. "overflow": 'hidden'
  8605. },
  8606. "onresize": function () { }
  8607. }, {
  8608. closecallback: function () { }
  8609. }, {
  8610. "style": {
  8611. "height": "36px"
  8612. }
  8613. }).form; //创建窗体
  8614. _taskbar = {
  8615. "id": str + _formdiv.id,
  8616. "style": {
  8617. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8618. },
  8619. "name": "电子白板",
  8620. "forms": _formdiv,
  8621. "click": function () {
  8622. U.MD.D.I.openApplication(str, obj, info);
  8623. }
  8624. }
  8625. break;
  8626. case "mind":
  8627. aTool = 3;
  8628. _iframe = $$("iframe", {
  8629. "frameborder": "no",
  8630. "border": "0",
  8631. "scrolling ": "no",
  8632. "style": {
  8633. "cssText": "border:0;width:100%;height:100%"
  8634. },
  8635. "src": "/kityminder-editor/dist/index.html"
  8636. })
  8637. _box.appendChild(_iframe);
  8638. _box.appendChild(_jie);
  8639. _formdiv = new U.UF.UI.form(
  8640. "思维导图",
  8641. _box, { //"/jsmind/example/demo.html"
  8642. "id": "mind" + cid + stage + task + tool,
  8643. "style": {
  8644. "width": "90%",
  8645. "height": "90%",
  8646. "overflow": 'hidden'
  8647. },
  8648. "onresize": function () { }
  8649. }, {
  8650. closecallback: function () { }
  8651. }, {
  8652. "style": {
  8653. "height": "36px"
  8654. }
  8655. }).form; //创建窗体
  8656. _taskbar = {
  8657. "id": str + _formdiv.id,
  8658. "style": {
  8659. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8660. },
  8661. "name": "思维导图",
  8662. "forms": _formdiv,
  8663. "click": function () {
  8664. U.MD.D.I.openApplication(str, obj, info);
  8665. }
  8666. }
  8667. break;
  8668. case "MindMap":
  8669. aTool = 3;
  8670. _iframe = $$("iframe", {
  8671. "frameborder": "no",
  8672. "border": "0",
  8673. "scrolling ": "no",
  8674. "style": {
  8675. "cssText": "border:0;width:100%;height:100%"
  8676. },
  8677. "src": "//cloud.cocorobo.cn/mind/"
  8678. })
  8679. _box.appendChild(_iframe);
  8680. _box.appendChild(_jie);
  8681. _formdiv = new U.UF.UI.form(
  8682. "思维导图",
  8683. _box, { //"/jsmind/example/demo.html"
  8684. "id": "mind" + cid + stage + task + tool,
  8685. "style": {
  8686. "width": "90%",
  8687. "height": "90%",
  8688. "overflow": 'hidden'
  8689. },
  8690. "onresize": function () { }
  8691. }, {
  8692. closecallback: function () { }
  8693. }, {
  8694. "style": {
  8695. "height": "36px"
  8696. }
  8697. }).form; //创建窗体
  8698. _taskbar = {
  8699. "id": str + _formdiv.id,
  8700. "style": {
  8701. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8702. },
  8703. "name": "思维导图",
  8704. "forms": _formdiv,
  8705. "click": function () {
  8706. U.MD.D.I.openApplication(str, obj, info);
  8707. }
  8708. }
  8709. break;
  8710. case "doc":
  8711. aTool = 6;
  8712. _iframe = $$("iframe", {
  8713. "frameborder": "no",
  8714. "border": "0",
  8715. "scrolling ": "no",
  8716. "style": {
  8717. "cssText": "border:0;width:100%;height:100%"
  8718. },
  8719. "src": "/Office/Word/WordEditArea.htm"
  8720. })
  8721. _box.appendChild(_iframe);
  8722. _box.appendChild(_jie);
  8723. _formdiv = new U.UF.UI.form(
  8724. "协同文档",
  8725. _box, {
  8726. "id": "doc" + cid + stage + task + tool,
  8727. "style": {
  8728. "width": "90%",
  8729. "height": "90%",
  8730. "overflow": 'hidden'
  8731. },
  8732. "onresize": function () { }
  8733. }, {
  8734. closecallback: function () { }
  8735. }, {
  8736. "style": {
  8737. "height": "36px"
  8738. }
  8739. }).form; //创建窗体
  8740. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8741. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8742. })
  8743. _taskbar = {
  8744. "id": str + _formdiv.id,
  8745. "style": {
  8746. "backgroundImage": "url(/img/icon/doc.png)"
  8747. },
  8748. "name": "协同文档",
  8749. "forms": _formdiv,
  8750. "click": function () {
  8751. U.MD.D.I.openApplication(str, obj, info);
  8752. }
  8753. }
  8754. break;
  8755. case "mindNetwork": //好友打开
  8756. aTool = 7;
  8757. _iframe = $$("iframe", {
  8758. "webkitallowfullscreen": "",
  8759. "mozallowfullscreen": "",
  8760. "allowfullscreen": "",
  8761. "frameborder": "no",
  8762. "border": "0",
  8763. "scrolling ": "no",
  8764. "style": {
  8765. "cssText": "border:0; width:100%; height:100%;"
  8766. },
  8767. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8768. })
  8769. _box.appendChild(_iframe);
  8770. _box.appendChild(_jie);
  8771. _formdiv = new U.UF.UI.form(
  8772. "思维网格",
  8773. _box, {
  8774. "id": "mindNetwork" + cid + stage + task + tool,
  8775. "style": {
  8776. "width": "90%",
  8777. "height": "90%",
  8778. "overflow": 'hidden'
  8779. },
  8780. "onresize": function () { }
  8781. }, {
  8782. closecallback: function () { }
  8783. }, {
  8784. "style": {
  8785. "height": "36px"
  8786. }
  8787. }).form; //创建窗体
  8788. _taskbar = {
  8789. "id": str + _formdiv.id,
  8790. "style": {
  8791. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8792. },
  8793. "name": "思维网格",
  8794. "forms": _formdiv,
  8795. "click": function () {
  8796. U.MD.D.I.openApplication(str, obj, info);
  8797. }
  8798. }
  8799. break;
  8800. case "courseDesign":
  8801. _iframe = $$("iframe", {
  8802. "webkitallowfullscreen": "",
  8803. "mozallowfullscreen": "",
  8804. "allowfullscreen": "",
  8805. "frameborder": "no",
  8806. "border": "0",
  8807. "scrolling ": "no",
  8808. "style": {
  8809. "cssText": "border:0; width:100%; height:100%;"
  8810. },
  8811. "src": "/course-design-vue"
  8812. })
  8813. _box.appendChild(_iframe);
  8814. _box.appendChild(_jie);
  8815. _formdiv = new U.UF.UI.form(
  8816. "项目设计",
  8817. _box, {
  8818. "id": "courseDesign" + cid + stage + task + tool,
  8819. "style": {
  8820. "width": "90%",
  8821. "height": "90%",
  8822. "overflow": 'hidden'
  8823. },
  8824. "onresize": function () { }
  8825. }, {
  8826. closecallback: function () { }
  8827. }, {
  8828. "style": {
  8829. "height": "36px"
  8830. }
  8831. }).form; //创建窗体
  8832. _taskbar = {
  8833. "id": str + _formdiv.id,
  8834. "style": {
  8835. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8836. },
  8837. "name": "项目设计",
  8838. "forms": _formdiv,
  8839. "click": function () {
  8840. U.MD.D.I.openApplication(str, obj, info);
  8841. }
  8842. }
  8843. break;
  8844. }
  8845. const script1 = document.createElement("script");
  8846. script1.type = "text/javascript";
  8847. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8848. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8849. const script2 = document.createElement("script");
  8850. script2.type = "text/javascript";
  8851. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8852. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8853. const script3 = document.createElement("script");
  8854. script3.type = "text/javascript";
  8855. script3.charset = "UTF-8";
  8856. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8857. const script4 = document.createElement("script");
  8858. script4.type = "text/javascript";
  8859. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8860. script4.src = window.origin + "/js/Common/jietu2E.js";
  8861. if (_iframe) {
  8862. if (str == 'doc') {
  8863. _iframe = _formdiv.querySelector('iframe')
  8864. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8865. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8866. _iframe.contentWindow.document.body.appendChild(script1);
  8867. _iframe.contentWindow.document.body.appendChild(script2);
  8868. // _iframe.contentWindow.document.body.appendChild(script3);
  8869. _iframe.contentWindow.document.body.appendChild(script4);
  8870. })
  8871. if (onloadListener) {
  8872. _iframe.contentDocument.location.reload()
  8873. } else {
  8874. _iframe.contentDocument.location.reload()
  8875. }
  8876. } else if (str == 'courseDesign') {
  8877. U.UF.DL.iframeLoad(_iframe, function () {
  8878. // _iframe.contentWindow.U.MD.O.W.load();
  8879. // _iframe.contentWindow.document.body.appendChild(script1);
  8880. _iframe.contentWindow.document.body.appendChild(script2);
  8881. _iframe.contentWindow.document.body.appendChild(script4);
  8882. })
  8883. } else if (str == 'mind') {
  8884. _iframe = _formdiv.querySelector('iframe')
  8885. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8886. //
  8887. _iframe.contentWindow.document.body.appendChild(script1);
  8888. _iframe.contentWindow.document.body.appendChild(script2);
  8889. _iframe.contentWindow.document.body.appendChild(script4);
  8890. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8891. })
  8892. if (onloadListener) {
  8893. _iframe.contentDocument.location.reload()
  8894. } else {
  8895. _iframe.contentDocument.location.reload()
  8896. }
  8897. } else if (str == 'whiteboard') {
  8898. _iframe = _formdiv.querySelector('iframe')
  8899. let onloadListener = _iframe.onload = () => {
  8900. _iframe.contentWindow.document.body.appendChild(script1);
  8901. _iframe.contentWindow.document.body.appendChild(script2);
  8902. _iframe.contentWindow.document.body.appendChild(script4);
  8903. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8904. };
  8905. // if (onloadListener) {
  8906. // try {
  8907. // _iframe.src += "?cocorobo="+new Date().getTime()
  8908. // _iframe.contentWindow.document.location.reload()
  8909. // } catch (error) {
  8910. // }
  8911. // } else {
  8912. // _iframe.contentDocument.location.reload()
  8913. // }
  8914. } else {
  8915. _iframe.onload = () => {
  8916. _iframe.contentWindow.document.body.appendChild(script1);
  8917. _iframe.contentWindow.document.body.appendChild(script2);
  8918. // _iframe.contentWindow.document.body.appendChild(script3);
  8919. _iframe.contentWindow.document.body.appendChild(script4);
  8920. };
  8921. }
  8922. _jie.onclick = async () => {
  8923. let text = ''
  8924. if (aTool == 1) {
  8925. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8926. } else if (aTool == 6) {
  8927. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8928. } else if (aTool == 3) {
  8929. text = await U.MD.D.I.getEditorContent(_iframe);
  8930. }
  8931. _loading.style.display = 'flex'
  8932. console.log(_loading);
  8933. var _ajs = _iframe.contentWindow.document.createElement("script");
  8934. _ajs.type = "text/javascript";
  8935. _ajs.innerHTML =
  8936. // 'console.log(' + _loading + ');\n' +
  8937. 'var _js = document.createElement("script");\n' +
  8938. '_js.type="text/javascript";\n' +
  8939. '_js.charset="UTF-8";\n' +
  8940. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8941. "_js.onload = function(){\n" +
  8942. ' var a = document.getElementsByTagName("img")\n' +
  8943. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8944. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8945. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8946. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8947. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8948. "beforeUpload_shishi(file," +
  8949. "'" +
  8950. _userid +
  8951. "'" +
  8952. ", " +
  8953. "'" +
  8954. _cid +
  8955. "'" +
  8956. ", " +
  8957. "'" +
  8958. _stage +
  8959. "'" +
  8960. ", " +
  8961. "'" +
  8962. _task +
  8963. "'" +
  8964. ", " +
  8965. "'" +
  8966. _tool +
  8967. "'" +
  8968. ", " +
  8969. "'" +
  8970. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8971. "'" +
  8972. ", " +
  8973. "'" +
  8974. aTool +
  8975. "'" +
  8976. ", " +
  8977. "`" +
  8978. text +
  8979. "`" +
  8980. ")\n" +
  8981. " });\n" +
  8982. "}\n" +
  8983. "document.head.appendChild(_js);\n";
  8984. _iframe.contentWindow.document.head.appendChild(_ajs);
  8985. }
  8986. }
  8987. //U.MD.D.I.openClick(str);
  8988. //如果有任务栏信息
  8989. // if (_taskbar) {
  8990. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8991. // }
  8992. }
  8993. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8994. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8995. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8996. _userid = student.userid, //登录用户id
  8997. _username = student.student //用户名字
  8998. let _iframe;
  8999. let _cid = cid,
  9000. _stage = stage,
  9001. _task = task,
  9002. _tool = tool;
  9003. var _jie = $$("div", {
  9004. "style": {
  9005. "position": "absolute",
  9006. "bottom": "50px",
  9007. "right": "50px",
  9008. "zIndex": "9999",
  9009. "backgroundColor": "#2268bc",
  9010. "color": "#fff",
  9011. "padding": "12px 20px",
  9012. "cursor": "pointer",
  9013. "borderRadius": "4px",
  9014. },
  9015. "innerHTML": "提交作业"
  9016. })
  9017. let aTool = ''
  9018. let _loading = document.createElement('div')
  9019. _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;"
  9020. // _loading.id = "";
  9021. let _lchild = document.createElement('div')
  9022. let _limg = document.createElement('img')
  9023. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9024. _limg.style = "width: 26px;margin-right: 10px;"
  9025. _lchild.appendChild(_limg)
  9026. let _lspan = document.createElement('span')
  9027. _lspan.innerHTML = "上传中..."
  9028. _lchild.appendChild(_lspan)
  9029. _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%);"
  9030. _loading.appendChild(_lchild)
  9031. var _box = $$('div', {
  9032. "style": {
  9033. "position": "relative",
  9034. "width": "100%",
  9035. "height": "100%",
  9036. },
  9037. })
  9038. _box.appendChild(_loading)
  9039. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  9040. switch (str) {
  9041. case "whiteboard":
  9042. aTool = 1;
  9043. _iframe = $$("iframe", {
  9044. "frameborder": "no",
  9045. "border": "0",
  9046. "scrolling ": "no",
  9047. "style": {
  9048. "cssText": "border:0;width:100%;height:100%"
  9049. },
  9050. "src": "https://beta.iwb.cocorobo.cn/"
  9051. })
  9052. _box.appendChild(_iframe);
  9053. _box.appendChild(_jie);
  9054. _formdiv = new U.UF.UI.form(
  9055. "电子白板-" + _username,
  9056. _box, {
  9057. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9058. "style": {
  9059. "width": "90%",
  9060. "height": "90%",
  9061. "overflow": 'hidden'
  9062. },
  9063. "onresize": function () { }
  9064. }, {
  9065. closecallback: function () { }
  9066. }, {
  9067. "style": {
  9068. "height": "36px"
  9069. }
  9070. }).form; //创建窗体
  9071. _taskbar = {
  9072. "id": str + _formdiv.id,
  9073. "style": {
  9074. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9075. },
  9076. "name": "电子白板",
  9077. "forms": _formdiv,
  9078. "click": function () {
  9079. U.MD.D.I.openApplication(str, obj, info);
  9080. }
  9081. }
  9082. break;
  9083. case "mind":
  9084. aTool = 3;
  9085. _iframe = $$("iframe", {
  9086. "frameborder": "no",
  9087. "border": "0",
  9088. "scrolling ": "no",
  9089. "style": {
  9090. "cssText": "border:0;width:100%;height:100%"
  9091. },
  9092. "src": "/kityminder-editor/dist/index.html"
  9093. })
  9094. _box.appendChild(_iframe);
  9095. _box.appendChild(_jie);
  9096. _formdiv = new U.UF.UI.form(
  9097. "思维导图-" + _username,
  9098. _box, { //"/jsmind/example/demo.html"
  9099. "id": "mind" + cid + stage + task + tool + _userid,
  9100. "style": {
  9101. "width": "90%",
  9102. "height": "90%",
  9103. "overflow": 'hidden'
  9104. },
  9105. "onresize": function () { }
  9106. }, {
  9107. closecallback: function () { }
  9108. }, {
  9109. "style": {
  9110. "height": "36px"
  9111. }
  9112. }).form; //创建窗体
  9113. _taskbar = {
  9114. "id": str + _formdiv.id,
  9115. "style": {
  9116. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9117. },
  9118. "name": "思维导图",
  9119. "forms": _formdiv,
  9120. "click": function () {
  9121. U.MD.D.I.openApplication(str, obj, info);
  9122. }
  9123. }
  9124. break;
  9125. case "MindMap":
  9126. aTool = 3;
  9127. _iframe = $$("iframe", {
  9128. "frameborder": "no",
  9129. "border": "0",
  9130. "scrolling ": "no",
  9131. "style": {
  9132. "cssText": "border:0;width:100%;height:100%"
  9133. },
  9134. "src": "//cloud.cocorobo.cn/mind/"
  9135. })
  9136. _box.appendChild(_iframe);
  9137. _box.appendChild(_jie);
  9138. _formdiv = new U.UF.UI.form(
  9139. "思维导图-" + _username,
  9140. _box, { //"/jsmind/example/demo.html"
  9141. "id": "mind" + cid + stage + task + tool + _userid,
  9142. "style": {
  9143. "width": "90%",
  9144. "height": "90%",
  9145. "overflow": 'hidden'
  9146. },
  9147. "onresize": function () { }
  9148. }, {
  9149. closecallback: function () { }
  9150. }, {
  9151. "style": {
  9152. "height": "36px"
  9153. }
  9154. }).form; //创建窗体
  9155. _taskbar = {
  9156. "id": str + _formdiv.id,
  9157. "style": {
  9158. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9159. },
  9160. "name": "思维导图",
  9161. "forms": _formdiv,
  9162. "click": function () {
  9163. U.MD.D.I.openApplication(str, obj, info);
  9164. }
  9165. }
  9166. break;
  9167. case "doc":
  9168. aTool = 6;
  9169. _iframe = $$("iframe", {
  9170. "frameborder": "no",
  9171. "border": "0",
  9172. "scrolling ": "no",
  9173. "style": {
  9174. "cssText": "border:0;width:100%;height:100%"
  9175. },
  9176. "src": "/Office/Word/WordEditArea.htm"
  9177. })
  9178. _box.appendChild(_iframe);
  9179. _box.appendChild(_jie);
  9180. _formdiv = new U.UF.UI.form(
  9181. "协同文档-" + _username,
  9182. _box, {
  9183. "id": "doc" + cid + stage + task + tool + _userid,
  9184. "style": {
  9185. "width": "90%",
  9186. "height": "90%",
  9187. "overflow": 'hidden'
  9188. },
  9189. "onresize": function () { }
  9190. }, {
  9191. closecallback: function () { }
  9192. }, {
  9193. "style": {
  9194. "height": "36px"
  9195. }
  9196. }).form; //创建窗体
  9197. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9198. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9199. })
  9200. _taskbar = {
  9201. "id": str + _formdiv.id,
  9202. "style": {
  9203. "backgroundImage": "url(/img/icon/doc.png)"
  9204. },
  9205. "name": "协同文档",
  9206. "forms": _formdiv,
  9207. "click": function () {
  9208. U.MD.D.I.openApplication(str, obj, info);
  9209. }
  9210. }
  9211. break;
  9212. case "mindNetwork": //好友打开
  9213. aTool = 7;
  9214. _iframe = $$("iframe", {
  9215. "webkitallowfullscreen": "",
  9216. "mozallowfullscreen": "",
  9217. "allowfullscreen": "",
  9218. "frameborder": "no",
  9219. "border": "0",
  9220. "scrolling ": "no",
  9221. "style": {
  9222. "cssText": "border:0; width:100%; height:100%;"
  9223. },
  9224. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9225. })
  9226. _box.appendChild(_iframe);
  9227. _box.appendChild(_jie);
  9228. _formdiv = new U.UF.UI.form(
  9229. "思维网格-" + _username,
  9230. _box, {
  9231. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9232. "style": {
  9233. "width": "90%",
  9234. "height": "90%",
  9235. "overflow": 'hidden'
  9236. },
  9237. "onresize": function () { }
  9238. }, {
  9239. closecallback: function () { }
  9240. }, {
  9241. "style": {
  9242. "height": "36px"
  9243. }
  9244. }).form; //创建窗体
  9245. _taskbar = {
  9246. "id": str + _formdiv.id,
  9247. "style": {
  9248. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9249. },
  9250. "name": "思维网格",
  9251. "forms": _formdiv,
  9252. "click": function () {
  9253. U.MD.D.I.openApplication(str, obj, info);
  9254. }
  9255. }
  9256. break;
  9257. case "courseDesign":
  9258. _iframe = $$("iframe", {
  9259. "webkitallowfullscreen": "",
  9260. "mozallowfullscreen": "",
  9261. "allowfullscreen": "",
  9262. "frameborder": "no",
  9263. "border": "0",
  9264. "scrolling ": "no",
  9265. "style": {
  9266. "cssText": "border:0; width:100%; height:100%;"
  9267. },
  9268. "src": "/course-design-vue"
  9269. })
  9270. _box.appendChild(_iframe);
  9271. _box.appendChild(_jie);
  9272. _formdiv = new U.UF.UI.form(
  9273. "项目设计-" + _username,
  9274. _box, {
  9275. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9276. "style": {
  9277. "width": "90%",
  9278. "height": "90%",
  9279. "overflow": 'hidden'
  9280. },
  9281. "onresize": function () { }
  9282. }, {
  9283. closecallback: function () { }
  9284. }, {
  9285. "style": {
  9286. "height": "36px"
  9287. }
  9288. }).form; //创建窗体
  9289. _taskbar = {
  9290. "id": str + _formdiv.id,
  9291. "style": {
  9292. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9293. },
  9294. "name": "项目设计",
  9295. "forms": _formdiv,
  9296. "click": function () {
  9297. U.MD.D.I.openApplication(str, obj, info);
  9298. }
  9299. }
  9300. break;
  9301. }
  9302. const script1 = document.createElement("script");
  9303. script1.type = "text/javascript";
  9304. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9305. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9306. const script2 = document.createElement("script");
  9307. script2.type = "text/javascript";
  9308. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9309. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9310. const script3 = document.createElement("script");
  9311. script3.type = "text/javascript";
  9312. script3.charset = "UTF-8";
  9313. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9314. const script4 = document.createElement("script");
  9315. script4.type = "text/javascript";
  9316. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9317. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  9318. if (_iframe) {
  9319. if (str == 'doc') {
  9320. _iframe = _formdiv.querySelector('iframe')
  9321. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9322. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9323. _iframe.contentWindow.document.body.appendChild(script1);
  9324. _iframe.contentWindow.document.body.appendChild(script2);
  9325. // _iframe.contentWindow.document.body.appendChild(script3);
  9326. _iframe.contentWindow.document.body.appendChild(script4);
  9327. })
  9328. if (onloadListener) {
  9329. _iframe.contentDocument.location.reload()
  9330. } else {
  9331. _iframe.contentDocument.location.reload()
  9332. }
  9333. } else if (str == 'courseDesign') {
  9334. U.UF.DL.iframeLoad(_iframe, function () {
  9335. // _iframe.contentWindow.U.MD.O.W.load();
  9336. // _iframe.contentWindow.document.body.appendChild(script1);
  9337. _iframe.contentWindow.document.body.appendChild(script2);
  9338. _iframe.contentWindow.document.body.appendChild(script4);
  9339. })
  9340. } else if (str == 'mind') {
  9341. _iframe = _formdiv.querySelector('iframe')
  9342. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9343. //
  9344. _iframe.contentWindow.document.body.appendChild(script1);
  9345. _iframe.contentWindow.document.body.appendChild(script2);
  9346. _iframe.contentWindow.document.body.appendChild(script4);
  9347. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9348. })
  9349. if (onloadListener) {
  9350. _iframe.contentDocument.location.reload()
  9351. } else {
  9352. _iframe.contentDocument.location.reload()
  9353. }
  9354. } else if (str == 'whiteboard') {
  9355. _iframe = _formdiv.querySelector('iframe')
  9356. let onloadListener = _iframe.onload = () => {
  9357. _iframe.contentWindow.document.body.appendChild(script1);
  9358. _iframe.contentWindow.document.body.appendChild(script2);
  9359. _iframe.contentWindow.document.body.appendChild(script4);
  9360. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9361. };
  9362. // if (onloadListener) {
  9363. // try {
  9364. // _iframe.src += "?cocorobo="+new Date().getTime()
  9365. // _iframe.contentWindow.document.location.reload()
  9366. // } catch (error) {
  9367. // }
  9368. // } else {
  9369. // _iframe.contentDocument.location.reload()
  9370. // }
  9371. } else {
  9372. _iframe.onload = () => {
  9373. _iframe.contentWindow.document.body.appendChild(script1);
  9374. _iframe.contentWindow.document.body.appendChild(script2);
  9375. // _iframe.contentWindow.document.body.appendChild(script3);
  9376. _iframe.contentWindow.document.body.appendChild(script4);
  9377. };
  9378. }
  9379. _jie.onclick = async () => {
  9380. let text = ''
  9381. if (aTool == 1) {
  9382. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9383. } else if (aTool == 6) {
  9384. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9385. } else if (aTool == 3) {
  9386. text = await U.MD.D.I.getEditorContent(_iframe);
  9387. }
  9388. _loading.style.display = 'flex'
  9389. console.log(_loading);
  9390. var _ajs = _iframe.contentWindow.document.createElement("script");
  9391. _ajs.type = "text/javascript";
  9392. _ajs.innerHTML =
  9393. // 'console.log(' + _loading + ');\n' +
  9394. 'var _js = document.createElement("script");\n' +
  9395. '_js.type="text/javascript";\n' +
  9396. '_js.charset="UTF-8";\n' +
  9397. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9398. "_js.onload = function(){\n" +
  9399. ' var a = document.getElementsByTagName("img")\n' +
  9400. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9401. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9402. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9403. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9404. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9405. "beforeUpload_shishi(file," +
  9406. "'" +
  9407. _userid +
  9408. "'" +
  9409. ", " +
  9410. "'" +
  9411. _cid +
  9412. "'" +
  9413. ", " +
  9414. "'" +
  9415. _stage +
  9416. "'" +
  9417. ", " +
  9418. "'" +
  9419. _task +
  9420. "'" +
  9421. ", " +
  9422. "'" +
  9423. _tool +
  9424. "'" +
  9425. ", " +
  9426. "'" +
  9427. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  9428. "'" +
  9429. ", " +
  9430. "'" +
  9431. aTool +
  9432. "'" +
  9433. ", " +
  9434. "`" +
  9435. text +
  9436. "`" +
  9437. ")\n" +
  9438. " });\n" +
  9439. "}\n" +
  9440. "document.head.appendChild(_js);\n";
  9441. _iframe.contentWindow.document.head.appendChild(_ajs);
  9442. }
  9443. }
  9444. }
  9445. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  9446. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9447. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9448. _userid = student.userid, //登录用户id
  9449. _username = student.student //用户名字
  9450. let _iframe;
  9451. let _cid = cid,
  9452. _stage = stage,
  9453. _task = task,
  9454. _tool = tool;
  9455. var _jie = $$("div", {
  9456. "style": {
  9457. "position": "absolute",
  9458. "bottom": "50px",
  9459. "right": "50px",
  9460. "zIndex": "9999",
  9461. "backgroundColor": "#2268bc",
  9462. "color": "#fff",
  9463. "padding": "12px 20px",
  9464. "cursor": "pointer",
  9465. "borderRadius": "4px",
  9466. },
  9467. "innerHTML": "提交作业"
  9468. })
  9469. let aTool = ''
  9470. let _loading = document.createElement('div')
  9471. _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;"
  9472. // _loading.id = "";
  9473. let _lchild = document.createElement('div')
  9474. let _limg = document.createElement('img')
  9475. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9476. _limg.style = "width: 26px;margin-right: 10px;"
  9477. _lchild.appendChild(_limg)
  9478. let _lspan = document.createElement('span')
  9479. _lspan.innerHTML = "上传中..."
  9480. _lchild.appendChild(_lspan)
  9481. _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%);"
  9482. _loading.appendChild(_lchild)
  9483. var _box = $$('div', {
  9484. "style": {
  9485. "position": "relative",
  9486. "width": "100%",
  9487. "height": "100%",
  9488. },
  9489. })
  9490. _box.appendChild(_loading)
  9491. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  9492. switch (str) {
  9493. case "whiteboard":
  9494. aTool = 1;
  9495. _iframe = $$("iframe", {
  9496. "frameborder": "no",
  9497. "border": "0",
  9498. "scrolling ": "no",
  9499. "style": {
  9500. "cssText": "border:0;width:100%;height:100%"
  9501. },
  9502. "src": "https://beta.iwb.cocorobo.cn/"
  9503. })
  9504. _box.appendChild(_iframe);
  9505. _box.appendChild(_jie);
  9506. _formdiv = new U.UF.UI.form(
  9507. "电子白板-" + _username,
  9508. _box, {
  9509. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9510. "style": {
  9511. "width": "90%",
  9512. "height": "90%",
  9513. "overflow": 'hidden'
  9514. },
  9515. "onresize": function () { }
  9516. }, {
  9517. closecallback: function () { }
  9518. }, {
  9519. "style": {
  9520. "height": "36px"
  9521. }
  9522. }).form; //创建窗体
  9523. _taskbar = {
  9524. "id": str + _formdiv.id,
  9525. "style": {
  9526. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9527. },
  9528. "name": "电子白板",
  9529. "forms": _formdiv,
  9530. "click": function () {
  9531. U.MD.D.I.openApplication(str, obj, info);
  9532. }
  9533. }
  9534. break;
  9535. case "mind":
  9536. aTool = 3;
  9537. _iframe = $$("iframe", {
  9538. "frameborder": "no",
  9539. "border": "0",
  9540. "scrolling ": "no",
  9541. "style": {
  9542. "cssText": "border:0;width:100%;height:100%"
  9543. },
  9544. "src": "/kityminder-editor/dist/index.html"
  9545. })
  9546. _box.appendChild(_iframe);
  9547. _box.appendChild(_jie);
  9548. _formdiv = new U.UF.UI.form(
  9549. "思维导图-" + _username,
  9550. _box, { //"/jsmind/example/demo.html"
  9551. "id": "mind" + cid + stage + task + tool + _userid,
  9552. "style": {
  9553. "width": "90%",
  9554. "height": "90%",
  9555. "overflow": 'hidden'
  9556. },
  9557. "onresize": function () { }
  9558. }, {
  9559. closecallback: function () { }
  9560. }, {
  9561. "style": {
  9562. "height": "36px"
  9563. }
  9564. }).form; //创建窗体
  9565. _taskbar = {
  9566. "id": str + _formdiv.id,
  9567. "style": {
  9568. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9569. },
  9570. "name": "思维导图",
  9571. "forms": _formdiv,
  9572. "click": function () {
  9573. U.MD.D.I.openApplication(str, obj, info);
  9574. }
  9575. }
  9576. break;
  9577. case "MindMap":
  9578. aTool = 3;
  9579. _iframe = $$("iframe", {
  9580. "frameborder": "no",
  9581. "border": "0",
  9582. "scrolling ": "no",
  9583. "style": {
  9584. "cssText": "border:0;width:100%;height:100%"
  9585. },
  9586. "src": "//cloud.cocorobo.cn/mind/"
  9587. })
  9588. _box.appendChild(_iframe);
  9589. _box.appendChild(_jie);
  9590. _formdiv = new U.UF.UI.form(
  9591. "思维导图-" + _username,
  9592. _box, { //"/jsmind/example/demo.html"
  9593. "id": "mind" + cid + stage + task + tool + _userid,
  9594. "style": {
  9595. "width": "90%",
  9596. "height": "90%",
  9597. "overflow": 'hidden'
  9598. },
  9599. "onresize": function () { }
  9600. }, {
  9601. closecallback: function () { }
  9602. }, {
  9603. "style": {
  9604. "height": "36px"
  9605. }
  9606. }).form; //创建窗体
  9607. _taskbar = {
  9608. "id": str + _formdiv.id,
  9609. "style": {
  9610. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9611. },
  9612. "name": "思维导图",
  9613. "forms": _formdiv,
  9614. "click": function () {
  9615. U.MD.D.I.openApplication(str, obj, info);
  9616. }
  9617. }
  9618. break;
  9619. case "doc":
  9620. aTool = 6;
  9621. _iframe = $$("iframe", {
  9622. "frameborder": "no",
  9623. "border": "0",
  9624. "scrolling ": "no",
  9625. "style": {
  9626. "cssText": "border:0;width:100%;height:100%"
  9627. },
  9628. "src": "/Office/Word/WordEditArea.htm"
  9629. })
  9630. _box.appendChild(_iframe);
  9631. _box.appendChild(_jie);
  9632. _formdiv = new U.UF.UI.form(
  9633. "协同文档-" + _username,
  9634. _box, {
  9635. "id": "doc" + cid + stage + task + tool + _userid,
  9636. "style": {
  9637. "width": "90%",
  9638. "height": "90%",
  9639. "overflow": 'hidden'
  9640. },
  9641. "onresize": function () { }
  9642. }, {
  9643. closecallback: function () { }
  9644. }, {
  9645. "style": {
  9646. "height": "36px"
  9647. }
  9648. }).form; //创建窗体
  9649. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9650. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9651. })
  9652. _taskbar = {
  9653. "id": str + _formdiv.id,
  9654. "style": {
  9655. "backgroundImage": "url(/img/icon/doc.png)"
  9656. },
  9657. "name": "协同文档",
  9658. "forms": _formdiv,
  9659. "click": function () {
  9660. U.MD.D.I.openApplication(str, obj, info);
  9661. }
  9662. }
  9663. break;
  9664. case "mindNetwork": //好友打开
  9665. aTool = 7;
  9666. _iframe = $$("iframe", {
  9667. "webkitallowfullscreen": "",
  9668. "mozallowfullscreen": "",
  9669. "allowfullscreen": "",
  9670. "frameborder": "no",
  9671. "border": "0",
  9672. "scrolling ": "no",
  9673. "style": {
  9674. "cssText": "border:0; width:100%; height:100%;"
  9675. },
  9676. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9677. })
  9678. _box.appendChild(_iframe);
  9679. _box.appendChild(_jie);
  9680. _formdiv = new U.UF.UI.form(
  9681. "思维网格-" + _username,
  9682. _box, {
  9683. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9684. "style": {
  9685. "width": "90%",
  9686. "height": "90%",
  9687. "overflow": 'hidden'
  9688. },
  9689. "onresize": function () { }
  9690. }, {
  9691. closecallback: function () { }
  9692. }, {
  9693. "style": {
  9694. "height": "36px"
  9695. }
  9696. }).form; //创建窗体
  9697. _taskbar = {
  9698. "id": str + _formdiv.id,
  9699. "style": {
  9700. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9701. },
  9702. "name": "思维网格",
  9703. "forms": _formdiv,
  9704. "click": function () {
  9705. U.MD.D.I.openApplication(str, obj, info);
  9706. }
  9707. }
  9708. break;
  9709. case "courseDesign":
  9710. _iframe = $$("iframe", {
  9711. "webkitallowfullscreen": "",
  9712. "mozallowfullscreen": "",
  9713. "allowfullscreen": "",
  9714. "frameborder": "no",
  9715. "border": "0",
  9716. "scrolling ": "no",
  9717. "style": {
  9718. "cssText": "border:0; width:100%; height:100%;"
  9719. },
  9720. "src": "/course-design-vue"
  9721. })
  9722. _box.appendChild(_iframe);
  9723. _box.appendChild(_jie);
  9724. _formdiv = new U.UF.UI.form(
  9725. "项目设计-" + _username,
  9726. _box, {
  9727. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9728. "style": {
  9729. "width": "90%",
  9730. "height": "90%",
  9731. "overflow": 'hidden'
  9732. },
  9733. "onresize": function () { }
  9734. }, {
  9735. closecallback: function () { }
  9736. }, {
  9737. "style": {
  9738. "height": "36px"
  9739. }
  9740. }).form; //创建窗体
  9741. _taskbar = {
  9742. "id": str + _formdiv.id,
  9743. "style": {
  9744. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9745. },
  9746. "name": "项目设计",
  9747. "forms": _formdiv,
  9748. "click": function () {
  9749. U.MD.D.I.openApplication(str, obj, info);
  9750. }
  9751. }
  9752. break;
  9753. }
  9754. const script1 = document.createElement("script");
  9755. script1.type = "text/javascript";
  9756. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9757. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9758. const script2 = document.createElement("script");
  9759. script2.type = "text/javascript";
  9760. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9761. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9762. const script3 = document.createElement("script");
  9763. script3.type = "text/javascript";
  9764. script3.charset = "UTF-8";
  9765. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9766. const script4 = document.createElement("script");
  9767. script4.type = "text/javascript";
  9768. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9769. script4.src = window.origin + "/js/Common/jietu2E.js";
  9770. if (_iframe) {
  9771. if (str == 'doc') {
  9772. _iframe = _formdiv.querySelector('iframe')
  9773. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9774. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9775. _iframe.contentWindow.document.body.appendChild(script1);
  9776. _iframe.contentWindow.document.body.appendChild(script2);
  9777. // _iframe.contentWindow.document.body.appendChild(script3);
  9778. _iframe.contentWindow.document.body.appendChild(script4);
  9779. })
  9780. if (onloadListener) {
  9781. _iframe.contentDocument.location.reload()
  9782. } else {
  9783. _iframe.contentDocument.location.reload()
  9784. }
  9785. } else if (str == 'courseDesign') {
  9786. U.UF.DL.iframeLoad(_iframe, function () {
  9787. // _iframe.contentWindow.U.MD.O.W.load();
  9788. // _iframe.contentWindow.document.body.appendChild(script1);
  9789. _iframe.contentWindow.document.body.appendChild(script2);
  9790. _iframe.contentWindow.document.body.appendChild(script4);
  9791. })
  9792. } else if (str == 'mind') {
  9793. _iframe = _formdiv.querySelector('iframe')
  9794. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9795. //
  9796. _iframe.contentWindow.document.body.appendChild(script1);
  9797. _iframe.contentWindow.document.body.appendChild(script2);
  9798. _iframe.contentWindow.document.body.appendChild(script4);
  9799. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9800. })
  9801. if (onloadListener) {
  9802. _iframe.contentDocument.location.reload()
  9803. } else {
  9804. _iframe.contentDocument.location.reload()
  9805. }
  9806. } else if (str == 'whiteboard') {
  9807. _iframe = _formdiv.querySelector('iframe')
  9808. let onloadListener = _iframe.onload = () => {
  9809. _iframe.contentWindow.document.body.appendChild(script1);
  9810. _iframe.contentWindow.document.body.appendChild(script2);
  9811. _iframe.contentWindow.document.body.appendChild(script4);
  9812. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9813. };
  9814. // if (onloadListener) {
  9815. // try {
  9816. // _iframe.src += "?cocorobo="+new Date().getTime()
  9817. // _iframe.contentWindow.document.location.reload()
  9818. // } catch (error) {
  9819. // }
  9820. // } else {
  9821. // _iframe.contentDocument.location.reload()
  9822. // }
  9823. } else {
  9824. _iframe.onload = () => {
  9825. _iframe.contentWindow.document.body.appendChild(script1);
  9826. _iframe.contentWindow.document.body.appendChild(script2);
  9827. // _iframe.contentWindow.document.body.appendChild(script3);
  9828. _iframe.contentWindow.document.body.appendChild(script4);
  9829. };
  9830. }
  9831. _jie.onclick = async () => {
  9832. let text = ''
  9833. if (aTool == 1) {
  9834. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9835. } else if (aTool == 6) {
  9836. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9837. } else if (aTool == 3) {
  9838. text = await U.MD.D.I.getEditorContent(_iframe);
  9839. }
  9840. _loading.style.display = 'flex'
  9841. console.log(_loading);
  9842. var _ajs = _iframe.contentWindow.document.createElement("script");
  9843. _ajs.type = "text/javascript";
  9844. _ajs.innerHTML =
  9845. // 'console.log(' + _loading + ');\n' +
  9846. 'var _js = document.createElement("script");\n' +
  9847. '_js.type="text/javascript";\n' +
  9848. '_js.charset="UTF-8";\n' +
  9849. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9850. "_js.onload = function(){\n" +
  9851. ' var a = document.getElementsByTagName("img")\n' +
  9852. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9853. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9854. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9855. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9856. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9857. "beforeUpload_shishi(file," +
  9858. "'" +
  9859. _userid +
  9860. "'" +
  9861. ", " +
  9862. "'" +
  9863. _cid +
  9864. "'" +
  9865. ", " +
  9866. "'" +
  9867. _stage +
  9868. "'" +
  9869. ", " +
  9870. "'" +
  9871. _task +
  9872. "'" +
  9873. ", " +
  9874. "'" +
  9875. _tool +
  9876. "'" +
  9877. ", " +
  9878. "'" +
  9879. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9880. "'" +
  9881. ", " +
  9882. "'" +
  9883. aTool +
  9884. "'" +
  9885. ", " +
  9886. "`" +
  9887. text +
  9888. "`" +
  9889. ")\n" +
  9890. " });\n" +
  9891. "}\n" +
  9892. "document.head.appendChild(_js);\n";
  9893. _iframe.contentWindow.document.head.appendChild(_ajs);
  9894. }
  9895. }
  9896. }
  9897. U.MD.D.I.getEditorContent = function (iframe) {
  9898. return new Promise((resolve, reject) => {
  9899. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9900. console.log(content);
  9901. resolve(content)
  9902. });
  9903. });
  9904. }
  9905. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9906. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9907. // if (res.value[0].length > 0) {
  9908. // // resolve(res.value[0][0].text);
  9909. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9910. // $(fileInput).val('');
  9911. // });
  9912. // }
  9913. // }, [], { "type": "GET", "withCredentials": true });
  9914. var xmlhttp;
  9915. var Mac, Sn, DeviceId
  9916. if (window.XMLHttpRequest) {
  9917. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9918. xmlhttp = new XMLHttpRequest();
  9919. } else {
  9920. // IE6, IE5 浏览器执行代码
  9921. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9922. }
  9923. xmlhttp.onreadystatechange = function () {
  9924. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9925. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9926. // resolve(res.value[0][0].text);
  9927. if (type == '2') {
  9928. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9929. } else if (type == '3') {
  9930. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9931. }
  9932. } else {
  9933. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9934. }
  9935. }
  9936. }
  9937. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9938. xmlhttp.send();
  9939. }
  9940. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9941. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9942. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9943. _userinfo = US.userInfo, //登录用户信息
  9944. _userid = US.userInfo.userid //登录用户id
  9945. let _iframe;
  9946. let _cid = cid,
  9947. _stage = stage,
  9948. _task = task,
  9949. _tool = tool;
  9950. var _jie = $$("div", {
  9951. "style": {
  9952. "position": "absolute",
  9953. "bottom": "50px",
  9954. "right": "50px",
  9955. "zIndex": "9999",
  9956. "backgroundColor": "#2268bc",
  9957. "color": "#fff",
  9958. "padding": "12px 20px",
  9959. "cursor": "pointer",
  9960. "borderRadius": "4px",
  9961. },
  9962. "innerHTML": "确认并提交"
  9963. })
  9964. let aTool = ''
  9965. let _loading = document.createElement('div')
  9966. _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;"
  9967. // _loading.id = "";
  9968. let _lchild = document.createElement('div')
  9969. let _limg = document.createElement('img')
  9970. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9971. _limg.style = "width: 26px;margin-right: 10px;"
  9972. _lchild.appendChild(_limg)
  9973. let _lspan = document.createElement('span')
  9974. _lspan.innerHTML = "上传中..."
  9975. _lchild.appendChild(_lspan)
  9976. _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%);"
  9977. _loading.appendChild(_lchild)
  9978. var _box = $$('div', {
  9979. "style": {
  9980. "position": "relative",
  9981. "width": "100%",
  9982. "height": "100%",
  9983. },
  9984. })
  9985. _box.appendChild(_loading)
  9986. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9987. switch (str) {
  9988. case "whiteboard":
  9989. aTool = 1;
  9990. _iframe = $$("iframe", {
  9991. "frameborder": "no",
  9992. "border": "0",
  9993. "scrolling ": "no",
  9994. "style": {
  9995. "cssText": "border:0;width:100%;height:100%"
  9996. },
  9997. "src": "https://beta.iwb.cocorobo.cn/"
  9998. })
  9999. _box.appendChild(_iframe);
  10000. _box.appendChild(_jie);
  10001. _formdiv = new U.UF.UI.form(
  10002. "电子白板",
  10003. _box, {
  10004. "id": "whiteboards" + cid + stage + task + tool,
  10005. "style": {
  10006. "width": "90%",
  10007. "height": "90%",
  10008. "overflow": 'hidden'
  10009. },
  10010. "onresize": function () { }
  10011. }, {
  10012. closecallback: function () { }
  10013. }, {
  10014. "style": {
  10015. "height": "36px"
  10016. }
  10017. }).form; //创建窗体
  10018. _taskbar = {
  10019. "id": str + _formdiv.id,
  10020. "style": {
  10021. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10022. },
  10023. "name": "电子白板",
  10024. "forms": _formdiv,
  10025. "click": function () {
  10026. U.MD.D.I.openApplication(str, obj, info);
  10027. }
  10028. }
  10029. break;
  10030. case "mind":
  10031. aTool = 3;
  10032. _iframe = $$("iframe", {
  10033. "frameborder": "no",
  10034. "border": "0",
  10035. "scrolling ": "no",
  10036. "style": {
  10037. "cssText": "border:0;width:100%;height:100%"
  10038. },
  10039. "src": "/kityminder-editor/dist/index.html"
  10040. });
  10041. _box.appendChild(_iframe);
  10042. _box.appendChild(_jie);
  10043. _formdiv = new U.UF.UI.form(
  10044. "思维导图",
  10045. _box, { //"/jsmind/example/demo.html"
  10046. "id": "minds" + cid + stage + task + tool,
  10047. "style": {
  10048. "width": "90%",
  10049. "height": "90%",
  10050. "overflow": 'hidden'
  10051. },
  10052. "onresize": function () { }
  10053. }, {
  10054. closecallback: function () { }
  10055. }, {
  10056. "style": {
  10057. "height": "36px"
  10058. }
  10059. }).form; //创建窗体
  10060. _taskbar = {
  10061. "id": str + _formdiv.id,
  10062. "style": {
  10063. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10064. },
  10065. "name": "思维导图",
  10066. "forms": _formdiv,
  10067. "click": function () {
  10068. U.MD.D.I.openApplication(str, obj, info);
  10069. }
  10070. }
  10071. break;
  10072. case "doc":
  10073. aTool = 6;
  10074. _iframe = $$("iframe", {
  10075. "frameborder": "no",
  10076. "border": "0",
  10077. "scrolling ": "no",
  10078. "style": {
  10079. "cssText": "border:0;width:100%;height:100%"
  10080. },
  10081. "src": "/Office/Word/WordEditArea.htm"
  10082. })
  10083. _box.appendChild(_iframe);
  10084. _box.appendChild(_jie);
  10085. _formdiv = new U.UF.UI.form(
  10086. "协同文档",
  10087. _box, {
  10088. "id": "docs" + cid + stage + task + tool,
  10089. "style": {
  10090. "width": "90%",
  10091. "height": "90%",
  10092. "overflow": 'hidden'
  10093. },
  10094. "onresize": function () { }
  10095. }, {
  10096. closecallback: function () { }
  10097. }, {
  10098. "style": {
  10099. "height": "36px"
  10100. }
  10101. }).form; //创建窗体
  10102. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10103. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10104. })
  10105. _taskbar = {
  10106. "id": str + _formdiv.id,
  10107. "style": {
  10108. "backgroundImage": "url(/img/icon/doc.png)"
  10109. },
  10110. "name": "协同文档",
  10111. "forms": _formdiv,
  10112. "click": function () {
  10113. U.MD.D.I.openApplication(str, obj, info);
  10114. }
  10115. }
  10116. break;
  10117. }
  10118. const script1 = document.createElement("script");
  10119. script1.type = "text/javascript";
  10120. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10121. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  10122. const script2 = document.createElement("script");
  10123. script2.type = "text/javascript";
  10124. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10125. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  10126. const script3 = document.createElement("script");
  10127. script3.type = "text/javascript";
  10128. script3.charset = "UTF-8";
  10129. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  10130. const script4 = document.createElement("script");
  10131. script4.type = "text/javascript";
  10132. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10133. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  10134. if (_iframe) {
  10135. if (str == 'doc') {
  10136. _iframe = _formdiv.querySelector('iframe')
  10137. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10138. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10139. _iframe.contentWindow.document.body.appendChild(script1);
  10140. _iframe.contentWindow.document.body.appendChild(script2);
  10141. // _iframe.contentWindow.document.body.appendChild(script3);
  10142. _iframe.contentWindow.document.body.appendChild(script4);
  10143. })
  10144. if (onloadListener) {
  10145. _iframe.contentDocument.location.reload()
  10146. } else {
  10147. _iframe.contentDocument.location.reload()
  10148. }
  10149. } else if (str == 'mind') {
  10150. _iframe = _formdiv.querySelector('iframe')
  10151. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10152. _iframe.contentWindow.document.body.appendChild(script1);
  10153. _iframe.contentWindow.document.body.appendChild(script2);
  10154. _iframe.contentWindow.document.body.appendChild(script4);
  10155. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10156. })
  10157. if (onloadListener) {
  10158. _iframe.contentDocument.location.reload()
  10159. } else {
  10160. _iframe.contentDocument.location.reload()
  10161. }
  10162. } else {
  10163. _iframe.onload = () => {
  10164. _iframe.contentWindow.document.body.appendChild(script1);
  10165. _iframe.contentWindow.document.body.appendChild(script2);
  10166. // _iframe.contentWindow.document.body.appendChild(script3);
  10167. _iframe.contentWindow.document.body.appendChild(script4);
  10168. };
  10169. }
  10170. _jie.onclick = async () => {
  10171. let text = ''
  10172. if (aTool == 6) {
  10173. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10174. } else if (aTool == 3) {
  10175. text = await U.MD.D.I.getEditorContent(_iframe);
  10176. }
  10177. _loading.style.display = 'flex'
  10178. console.log(_loading);
  10179. var _ajs = _iframe.contentWindow.document.createElement("script");
  10180. _ajs.type = "text/javascript";
  10181. _ajs.innerHTML =
  10182. // 'console.log(' + _loading + ');\n' +
  10183. 'var _js = document.createElement("script");\n' +
  10184. '_js.type="text/javascript";\n' +
  10185. '_js.charset="UTF-8";\n' +
  10186. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10187. "_js.onload = function(){\n" +
  10188. ' var a = document.getElementsByTagName("img")\n' +
  10189. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10190. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10191. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10192. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10193. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10194. "beforeUpload_shishi(file," +
  10195. "'" +
  10196. _userid +
  10197. "'" +
  10198. ", " +
  10199. "'" +
  10200. _cid +
  10201. "'" +
  10202. ", " +
  10203. "'" +
  10204. _stage +
  10205. "'" +
  10206. ", " +
  10207. "'" +
  10208. _task +
  10209. "'" +
  10210. ", " +
  10211. "'" +
  10212. _tool +
  10213. "'" +
  10214. ", " +
  10215. "'" +
  10216. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  10217. "'" +
  10218. ", " +
  10219. "'" +
  10220. aTool +
  10221. "'" +
  10222. ", " +
  10223. "`" +
  10224. text +
  10225. "`" +
  10226. ")\n" +
  10227. " });\n" +
  10228. "}\n" +
  10229. "document.head.appendChild(_js);\n";
  10230. _iframe.contentWindow.document.head.appendChild(_ajs);
  10231. }
  10232. }
  10233. //U.MD.D.I.openClick(str);
  10234. //如果有任务栏信息
  10235. // if (_taskbar) {
  10236. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10237. // }
  10238. }
  10239. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  10240. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10241. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10242. _userinfo = US.userInfo, //登录用户信息
  10243. _userid = US.userInfo.userid //登录用户id
  10244. let _iframe;
  10245. let _cid = cid,
  10246. _stage = stage,
  10247. _task = task,
  10248. _tool = tool;
  10249. var _jie = $$("div", {
  10250. "style": {
  10251. "position": "absolute",
  10252. "bottom": "50px",
  10253. "right": "50px",
  10254. "zIndex": "9999",
  10255. "backgroundColor": "#2268bc",
  10256. "color": "#fff",
  10257. "padding": "12px 20px",
  10258. "cursor": "pointer",
  10259. "borderRadius": "4px",
  10260. },
  10261. "innerHTML": "确认并提交"
  10262. })
  10263. let aTool = ''
  10264. let _loading = document.createElement('div')
  10265. _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;"
  10266. // _loading.id = "";
  10267. let _lchild = document.createElement('div')
  10268. let _limg = document.createElement('img')
  10269. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10270. _limg.style = "width: 26px;margin-right: 10px;"
  10271. _lchild.appendChild(_limg)
  10272. let _lspan = document.createElement('span')
  10273. _lspan.innerHTML = "上传中..."
  10274. _lchild.appendChild(_lspan)
  10275. _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%);"
  10276. _loading.appendChild(_lchild)
  10277. var _box = $$('div', {
  10278. "style": {
  10279. "position": "relative",
  10280. "width": "100%",
  10281. "height": "100%",
  10282. },
  10283. })
  10284. _box.appendChild(_loading)
  10285. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  10286. switch (str) {
  10287. case "whiteboard":
  10288. aTool = 1;
  10289. _iframe = $$("iframe", {
  10290. "frameborder": "no",
  10291. "border": "0",
  10292. "scrolling ": "no",
  10293. "style": {
  10294. "cssText": "border:0;width:100%;height:100%"
  10295. },
  10296. "src": "https://beta.iwb.cocorobo.cn/"
  10297. })
  10298. _box.appendChild(_iframe);
  10299. _box.appendChild(_jie);
  10300. _formdiv = new U.UF.UI.form(
  10301. "电子白板",
  10302. _box, {
  10303. "id": "whiteboards" + cid + stage + task + tool,
  10304. "style": {
  10305. "width": "90%",
  10306. "height": "90%",
  10307. "overflow": 'hidden'
  10308. },
  10309. "onresize": function () { }
  10310. }, {
  10311. closecallback: function () { }
  10312. }, {
  10313. "style": {
  10314. "height": "36px"
  10315. }
  10316. }).form; //创建窗体
  10317. _taskbar = {
  10318. "id": str + _formdiv.id,
  10319. "style": {
  10320. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10321. },
  10322. "name": "电子白板",
  10323. "forms": _formdiv,
  10324. "click": function () {
  10325. U.MD.D.I.openApplication(str, obj, info);
  10326. }
  10327. }
  10328. break;
  10329. case "mind":
  10330. aTool = 3;
  10331. _iframe = $$("iframe", {
  10332. "frameborder": "no",
  10333. "border": "0",
  10334. "scrolling ": "no",
  10335. "style": {
  10336. "cssText": "border:0;width:100%;height:100%"
  10337. },
  10338. "src": "/kityminder-editor/dist/index.html"
  10339. });
  10340. _box.appendChild(_iframe);
  10341. _box.appendChild(_jie);
  10342. _formdiv = new U.UF.UI.form(
  10343. "思维导图",
  10344. _box, { //"/jsmind/example/demo.html"
  10345. "id": "minds" + cid + stage + task + tool,
  10346. "style": {
  10347. "width": "90%",
  10348. "height": "90%",
  10349. "overflow": 'hidden'
  10350. },
  10351. "onresize": function () { }
  10352. }, {
  10353. closecallback: function () { }
  10354. }, {
  10355. "style": {
  10356. "height": "36px"
  10357. }
  10358. }).form; //创建窗体
  10359. _taskbar = {
  10360. "id": str + _formdiv.id,
  10361. "style": {
  10362. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10363. },
  10364. "name": "思维导图",
  10365. "forms": _formdiv,
  10366. "click": function () {
  10367. U.MD.D.I.openApplication(str, obj, info);
  10368. }
  10369. }
  10370. break;
  10371. case "doc":
  10372. aTool = 6;
  10373. _iframe = $$("iframe", {
  10374. "frameborder": "no",
  10375. "border": "0",
  10376. "scrolling ": "no",
  10377. "style": {
  10378. "cssText": "border:0;width:100%;height:100%"
  10379. },
  10380. "src": "/Office/Word/WordEditArea.htm"
  10381. })
  10382. _box.appendChild(_iframe);
  10383. _box.appendChild(_jie);
  10384. _formdiv = new U.UF.UI.form(
  10385. "协同文档",
  10386. _box, {
  10387. "id": "docs" + cid + stage + task + tool,
  10388. "style": {
  10389. "width": "90%",
  10390. "height": "90%",
  10391. "overflow": 'hidden'
  10392. },
  10393. "onresize": function () { }
  10394. }, {
  10395. closecallback: function () { }
  10396. }, {
  10397. "style": {
  10398. "height": "36px"
  10399. }
  10400. }).form; //创建窗体
  10401. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10402. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10403. })
  10404. _taskbar = {
  10405. "id": str + _formdiv.id,
  10406. "style": {
  10407. "backgroundImage": "url(/img/icon/doc.png)"
  10408. },
  10409. "name": "协同文档",
  10410. "forms": _formdiv,
  10411. "click": function () {
  10412. U.MD.D.I.openApplication(str, obj, info);
  10413. }
  10414. }
  10415. break;
  10416. }
  10417. const script1 = document.createElement("script");
  10418. script1.type = "text/javascript";
  10419. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10420. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  10421. const script2 = document.createElement("script");
  10422. script2.type = "text/javascript";
  10423. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10424. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  10425. const script3 = document.createElement("script");
  10426. script3.type = "text/javascript";
  10427. script3.charset = "UTF-8";
  10428. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  10429. const script4 = document.createElement("script");
  10430. script4.type = "text/javascript";
  10431. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10432. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  10433. if (_iframe) {
  10434. if (str == 'doc') {
  10435. _iframe = _formdiv.querySelector('iframe')
  10436. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10437. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10438. _iframe.contentWindow.document.body.appendChild(script1);
  10439. _iframe.contentWindow.document.body.appendChild(script2);
  10440. // _iframe.contentWindow.document.body.appendChild(script3);
  10441. _iframe.contentWindow.document.body.appendChild(script4);
  10442. })
  10443. if (onloadListener) {
  10444. _iframe.contentDocument.location.reload()
  10445. } else {
  10446. _iframe.contentDocument.location.reload()
  10447. }
  10448. } else if (str == 'mind') {
  10449. _iframe = _formdiv.querySelector('iframe')
  10450. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10451. _iframe.contentWindow.document.body.appendChild(script1);
  10452. _iframe.contentWindow.document.body.appendChild(script2);
  10453. _iframe.contentWindow.document.body.appendChild(script4);
  10454. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10455. })
  10456. if (onloadListener) {
  10457. _iframe.contentDocument.location.reload()
  10458. } else {
  10459. _iframe.contentDocument.location.reload()
  10460. }
  10461. } else {
  10462. _iframe.onload = () => {
  10463. _iframe.contentWindow.document.body.appendChild(script1);
  10464. _iframe.contentWindow.document.body.appendChild(script2);
  10465. // _iframe.contentWindow.document.body.appendChild(script3);
  10466. _iframe.contentWindow.document.body.appendChild(script4);
  10467. };
  10468. }
  10469. _jie.onclick = async () => {
  10470. let text = ''
  10471. if (aTool == 6) {
  10472. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10473. } else if (aTool == 3) {
  10474. text = await U.MD.D.I.getEditorContent(_iframe);
  10475. }
  10476. _loading.style.display = 'flex'
  10477. console.log(_loading);
  10478. var _ajs = _iframe.contentWindow.document.createElement("script");
  10479. _ajs.type = "text/javascript";
  10480. _ajs.innerHTML =
  10481. // 'console.log(' + _loading + ');\n' +
  10482. 'var _js = document.createElement("script");\n' +
  10483. '_js.type="text/javascript";\n' +
  10484. '_js.charset="UTF-8";\n' +
  10485. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10486. "_js.onload = function(){\n" +
  10487. ' var a = document.getElementsByTagName("img")\n' +
  10488. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10489. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10490. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10491. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10492. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10493. "beforeUpload_shishi(file," +
  10494. "'" +
  10495. _userid +
  10496. "'" +
  10497. ", " +
  10498. "'" +
  10499. _cid +
  10500. "'" +
  10501. ", " +
  10502. "'" +
  10503. _stage +
  10504. "'" +
  10505. ", " +
  10506. "'" +
  10507. _task +
  10508. "'" +
  10509. ", " +
  10510. "'" +
  10511. _tool +
  10512. "'" +
  10513. ", " +
  10514. "'" +
  10515. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  10516. "'" +
  10517. ", " +
  10518. "'" +
  10519. aTool +
  10520. "'" +
  10521. ", " +
  10522. "`" +
  10523. text +
  10524. "`" +
  10525. ")\n" +
  10526. " });\n" +
  10527. "}\n" +
  10528. "document.head.appendChild(_js);\n";
  10529. _iframe.contentWindow.document.head.appendChild(_ajs);
  10530. }
  10531. }
  10532. //U.MD.D.I.openClick(str);
  10533. //如果有任务栏信息
  10534. // if (_taskbar) {
  10535. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10536. // }
  10537. }
  10538. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  10539. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10540. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10541. _userinfo = US.userInfo, //登录用户信息
  10542. _userid = US.userInfo.userid //登录用户id
  10543. let _iframe;
  10544. let _cid = cid,
  10545. _stage = stage,
  10546. _task = task,
  10547. _tool = tool;
  10548. var _jie = $$("div", {
  10549. "style": {
  10550. "position": "absolute",
  10551. "bottom": "50px",
  10552. "right": "50px",
  10553. "zIndex": "9999",
  10554. "backgroundColor": "#2268bc",
  10555. "color": "#fff",
  10556. "padding": "12px 20px",
  10557. "cursor": "pointer",
  10558. "borderRadius": "4px",
  10559. },
  10560. "innerHTML": "上传模板"
  10561. })
  10562. let aTool = ''
  10563. let _loading = document.createElement('div')
  10564. _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;"
  10565. // _loading.id = "";
  10566. let _lchild = document.createElement('div')
  10567. let _limg = document.createElement('img')
  10568. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10569. _limg.style = "width: 26px;margin-right: 10px;"
  10570. _lchild.appendChild(_limg)
  10571. let _lspan = document.createElement('span')
  10572. _lspan.innerHTML = "上传中..."
  10573. _lchild.appendChild(_lspan)
  10574. _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%);"
  10575. _loading.appendChild(_lchild)
  10576. var _box = $$('div', {
  10577. "style": {
  10578. "position": "relative",
  10579. "width": "100%",
  10580. "height": "100%",
  10581. },
  10582. })
  10583. _box.appendChild(_loading)
  10584. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  10585. switch (str) {
  10586. case "whiteboard":
  10587. aTool = 1;
  10588. _iframe = $$("iframe", {
  10589. "frameborder": "no",
  10590. "border": "0",
  10591. "scrolling ": "no",
  10592. "style": {
  10593. "cssText": "border:0;width:100%;height:100%"
  10594. },
  10595. "src": "https://beta.iwb.cocorobo.cn/"
  10596. })
  10597. _box.appendChild(_iframe);
  10598. _box.appendChild(_jie);
  10599. _formdiv = new U.UF.UI.form(
  10600. "电子白板",
  10601. _box, {
  10602. "id": "whiteboards_Yu" + cid + stage + task + tool,
  10603. "style": {
  10604. "width": "90%",
  10605. "height": "90%",
  10606. "overflow": 'hidden'
  10607. },
  10608. "onresize": function () { }
  10609. }, {
  10610. closecallback: function () { }
  10611. }, {
  10612. "style": {
  10613. "height": "36px"
  10614. }
  10615. }).form; //创建窗体
  10616. _taskbar = {
  10617. "id": str + _formdiv.id,
  10618. "style": {
  10619. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10620. },
  10621. "name": "电子白板",
  10622. "forms": _formdiv,
  10623. "click": function () {
  10624. U.MD.D.I.openApplication(str, obj, info);
  10625. }
  10626. }
  10627. break;
  10628. case "mind":
  10629. aTool = 3;
  10630. _iframe = $$("iframe", {
  10631. "frameborder": "no",
  10632. "border": "0",
  10633. "scrolling ": "no",
  10634. "style": {
  10635. "cssText": "border:0;width:100%;height:100%"
  10636. },
  10637. "src": "/kityminder-editor/dist/index.html"
  10638. });
  10639. _box.appendChild(_iframe);
  10640. _box.appendChild(_jie);
  10641. _formdiv = new U.UF.UI.form(
  10642. "思维导图",
  10643. _box, { //"/jsmind/example/demo.html"
  10644. "id": "minds_Yu" + cid + stage + task + tool,
  10645. "style": {
  10646. "width": "90%",
  10647. "height": "90%",
  10648. "overflow": 'hidden'
  10649. },
  10650. "onresize": function () { }
  10651. }, {
  10652. closecallback: function () { }
  10653. }, {
  10654. "style": {
  10655. "height": "36px"
  10656. }
  10657. }).form; //创建窗体
  10658. _taskbar = {
  10659. "id": str + _formdiv.id,
  10660. "style": {
  10661. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10662. },
  10663. "name": "思维导图",
  10664. "forms": _formdiv,
  10665. "click": function () {
  10666. U.MD.D.I.openApplication(str, obj, info);
  10667. }
  10668. }
  10669. break;
  10670. case "doc":
  10671. aTool = 6;
  10672. _iframe = $$("iframe", {
  10673. "frameborder": "no",
  10674. "border": "0",
  10675. "scrolling ": "no",
  10676. "style": {
  10677. "cssText": "border:0;width:100%;height:100%"
  10678. },
  10679. "src": "/Office/Word/WordEditArea.htm"
  10680. })
  10681. _box.appendChild(_iframe);
  10682. _box.appendChild(_jie);
  10683. _formdiv = new U.UF.UI.form(
  10684. "协同文档",
  10685. _box, {
  10686. "id": "docs_Yu" + cid + stage + task + tool,
  10687. "style": {
  10688. "width": "90%",
  10689. "height": "90%",
  10690. "overflow": 'hidden'
  10691. },
  10692. "onresize": function () { }
  10693. }, {
  10694. closecallback: function () { }
  10695. }, {
  10696. "style": {
  10697. "height": "36px"
  10698. }
  10699. }).form; //创建窗体
  10700. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10701. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10702. })
  10703. _taskbar = {
  10704. "id": str + _formdiv.id,
  10705. "style": {
  10706. "backgroundImage": "url(/img/icon/doc.png)"
  10707. },
  10708. "name": "协同文档",
  10709. "forms": _formdiv,
  10710. "click": function () {
  10711. U.MD.D.I.openApplication(str, obj, info);
  10712. }
  10713. }
  10714. break;
  10715. case "CocoPi":
  10716. aTool = 57;
  10717. _iframe = $$("iframe", {
  10718. "allowpaymentrequest": "allowpaymentrequest",
  10719. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10720. "webkitallowfullscreen": "",
  10721. "mozallowfullscreen": "",
  10722. "frameborder": "no",
  10723. "border": "0",
  10724. "scrolling ": "no",
  10725. "style": {
  10726. "cssText": "border:0;width:100%;height:100%"
  10727. },
  10728. "src": "https://pi.cocorobo.cn/"
  10729. })
  10730. _box.appendChild(_iframe);
  10731. _box.appendChild(_jie);
  10732. _formdiv = new U.UF.UI.form(
  10733. "CocoPi",
  10734. _box, {
  10735. "id": "CocoPi_Yu" + cid + stage + task + tool,
  10736. "style": {
  10737. "width": "90%",
  10738. "height": "90%",
  10739. "overflow": 'hidden'
  10740. },
  10741. "onresize": function () { }
  10742. }, {
  10743. closecallback: function () { }
  10744. }, {
  10745. "style": {
  10746. "height": "36px"
  10747. }
  10748. }).form; //创建窗体
  10749. _taskbar = {
  10750. "id": str + _formdiv.id,
  10751. "style": {
  10752. "backgroundImage": "url(/img/icon/cocopi.png)"
  10753. },
  10754. "name": "CocoPi",
  10755. "forms": _formdiv,
  10756. "click": function () {
  10757. U.MD.D.I.openApplication(str, obj, info);
  10758. }
  10759. }
  10760. break;
  10761. case "ppt":
  10762. aTool = 73;
  10763. _iframe = $$("iframe", {
  10764. "frameborder": "no",
  10765. "border": "0",
  10766. "scrolling ": "no",
  10767. "style": {
  10768. "cssText": "border:0;width:100%;height:100%"
  10769. },
  10770. "src": "https://ppt.cocorobo.cn/"
  10771. });
  10772. _box.appendChild(_iframe);
  10773. _box.appendChild(_jie);
  10774. _formdiv = new U.UF.UI.form(
  10775. "PPT",
  10776. _box, { //"/jsmind/example/demo.html"
  10777. "id": "ppts_Yu" + cid + stage + task + tool,
  10778. "style": {
  10779. "width": "90%",
  10780. "height": "90%",
  10781. "overflow": 'hidden'
  10782. },
  10783. "onresize": function () { }
  10784. }, {
  10785. closecallback: function () { }
  10786. }, {
  10787. "style": {
  10788. "height": "36px"
  10789. }
  10790. }).form; //创建窗体
  10791. _taskbar = {
  10792. "id": str + _formdiv.id,
  10793. "style": {
  10794. "backgroundImage": "url(/img/icon/ppt.png)"
  10795. },
  10796. "name": "PPT",
  10797. "forms": _formdiv,
  10798. "click": function () {
  10799. U.MD.D.I.openApplication(str, obj, info);
  10800. }
  10801. }
  10802. break;
  10803. }
  10804. if (_iframe) {
  10805. if (str == 'doc') {
  10806. _iframe = _formdiv.querySelector('iframe')
  10807. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10808. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10809. })
  10810. if (onloadListener) {
  10811. _iframe.contentDocument.location.reload()
  10812. } else {
  10813. _iframe.contentDocument.location.reload()
  10814. }
  10815. } else if (str == 'mind') {
  10816. _iframe = _formdiv.querySelector('iframe')
  10817. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10818. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10819. })
  10820. if (onloadListener) {
  10821. _iframe.contentDocument.location.reload()
  10822. } else {
  10823. _iframe.contentDocument.location.reload()
  10824. }
  10825. } else if (str == 'whiteboard') {
  10826. _iframe = _formdiv.querySelector('iframe')
  10827. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10828. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10829. })
  10830. // if (onloadListener) {
  10831. // try {
  10832. // _iframe.src += "?cocorobo="+new Date().getTime()
  10833. // _iframe.contentWindow.document.location.reload()
  10834. // } catch (error) {
  10835. // }
  10836. // } else {
  10837. // _iframe.contentDocument.location.reload()
  10838. // }
  10839. } else if (str == 'CocoPi') {
  10840. _iframe = _formdiv.querySelector('iframe')
  10841. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10842. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10843. })
  10844. if (onloadListener) {
  10845. _iframe.contentDocument.location.reload()
  10846. } else {
  10847. _iframe.contentDocument.location.reload()
  10848. }
  10849. } else if (str == 'ppt') {
  10850. _iframe = _formdiv.querySelector('iframe')
  10851. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10852. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '5', _iframe)
  10853. })
  10854. if (onloadListener) {
  10855. _iframe.contentDocument.location.reload()
  10856. } else {
  10857. _iframe.contentDocument.location.reload()
  10858. }
  10859. } else {
  10860. _iframe.onload = () => { };
  10861. }
  10862. _jie.onclick = async () => {
  10863. let text = ''
  10864. let type = '2'
  10865. if (aTool == 1) {
  10866. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10867. type = '3'
  10868. } else if (aTool == 6) {
  10869. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10870. type = '1'
  10871. } else if (aTool == 3) {
  10872. text = await U.MD.D.I.getEditorContent(_iframe);
  10873. type = '2'
  10874. } else if (aTool == 57) {
  10875. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10876. type = '4'
  10877. } else if (aTool == 73) {
  10878. text = encodeURIComponent(JSON.stringify(_iframe.contentWindow.window.exportJSON()))
  10879. type = '5'
  10880. }
  10881. _loading.style.display = 'flex'
  10882. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10883. }
  10884. }
  10885. //U.MD.D.I.openClick(str);
  10886. //如果有任务栏信息
  10887. // if (_taskbar) {
  10888. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10889. // }
  10890. }
  10891. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10892. var xmlhttp;
  10893. var Mac, Sn, DeviceId
  10894. if (window.XMLHttpRequest) {
  10895. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10896. xmlhttp = new XMLHttpRequest();
  10897. } else {
  10898. // IE6, IE5 浏览器执行代码
  10899. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10900. }
  10901. xmlhttp.onreadystatechange = function () {
  10902. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10903. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10904. // resolve(res.value[0][0].text);
  10905. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10906. }
  10907. }
  10908. }
  10909. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10910. xmlhttp.send();
  10911. }
  10912. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10913. var xmlhttp;
  10914. var Mac, Sn, DeviceId
  10915. if (window.XMLHttpRequest) {
  10916. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10917. xmlhttp = new XMLHttpRequest();
  10918. } else {
  10919. // IE6, IE5 浏览器执行代码
  10920. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10921. }
  10922. xmlhttp.onreadystatechange = function () {
  10923. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10924. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10925. // resolve(res.value[0][0].text);
  10926. if (type == '2') {
  10927. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10928. } else if (type == '3') {
  10929. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10930. } else if (type == '4') {
  10931. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10932. } else if (type == '5') {
  10933. iframe.contentWindow.window.readJSON(decodeURIComponent(JSON.parse(xmlhttp.response)[0][0].text), true)
  10934. }
  10935. } else {
  10936. if (type == '2') {
  10937. iframe.contentWindow.editor.minder.importData('json', '')
  10938. } else if (type == '3') {
  10939. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10940. } else if (type == '4') {
  10941. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10942. }
  10943. }
  10944. }
  10945. }
  10946. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10947. xmlhttp.send();
  10948. }
  10949. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10950. var xmlhttp;
  10951. var Mac, Sn, DeviceId
  10952. if (window.XMLHttpRequest) {
  10953. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10954. xmlhttp = new XMLHttpRequest();
  10955. } else {
  10956. // IE6, IE5 浏览器执行代码
  10957. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10958. }
  10959. xmlhttp.onreadystatechange = function () {
  10960. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10961. if (xmlhttp.response) {
  10962. // resolve(res.value[0][0].text);
  10963. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10964. // $(fileInput).val('');
  10965. // });
  10966. span.innerHTML = '上传成功'
  10967. setTimeout(() => {
  10968. loading.style.display = 'none'
  10969. }, 1000);
  10970. }
  10971. }
  10972. }
  10973. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10974. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10975. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10976. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10977. // 设置请求头,表示请求体的编码格式
  10978. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10979. // 设置请求体,使用url-encoded格式的数据
  10980. }
  10981. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10982. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10983. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10984. _userinfo = US.userInfo, //登录用户信息
  10985. _userid = US.userInfo.userid //登录用户id
  10986. let _iframe;
  10987. let _cid = cid,
  10988. _stage = stage,
  10989. _task = task,
  10990. _tool = tool;
  10991. var _jie = $$("div", {
  10992. "style": {
  10993. "position": "absolute",
  10994. "bottom": "50px",
  10995. "right": "50px",
  10996. "zIndex": "9999",
  10997. "backgroundColor": "#2268bc",
  10998. "color": "#fff",
  10999. "padding": "12px 20px",
  11000. "cursor": "pointer",
  11001. "borderRadius": "4px",
  11002. },
  11003. "innerHTML": "提交作业"
  11004. })
  11005. let aTool = ''
  11006. let _loading = document.createElement('div')
  11007. _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;"
  11008. // _loading.id = "";
  11009. let _lchild = document.createElement('div')
  11010. let _limg = document.createElement('img')
  11011. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  11012. _limg.style = "width: 26px;margin-right: 10px;"
  11013. _lchild.appendChild(_limg)
  11014. let _lspan = document.createElement('span')
  11015. _lspan.innerHTML = "上传中..."
  11016. _lchild.appendChild(_lspan)
  11017. _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%);"
  11018. _loading.appendChild(_lchild)
  11019. var _box = $$('div', {
  11020. "style": {
  11021. "position": "relative",
  11022. "width": "100%",
  11023. "height": "100%",
  11024. },
  11025. })
  11026. _box.appendChild(_loading)
  11027. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  11028. switch (str) {
  11029. case "CocoPi":
  11030. aTool = 57;
  11031. _iframe = $$("iframe", {
  11032. "allowpaymentrequest": "allowpaymentrequest",
  11033. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  11034. "webkitallowfullscreen": "",
  11035. "mozallowfullscreen": "",
  11036. "frameborder": "no",
  11037. "border": "0",
  11038. "scrolling ": "no",
  11039. "style": {
  11040. "cssText": "border:0;width:100%;height:100%"
  11041. },
  11042. "src": "https://pi.cocorobo.cn/"
  11043. })
  11044. _box.appendChild(_iframe);
  11045. _box.appendChild(_jie);
  11046. _formdiv = new U.UF.UI.form(
  11047. "CocoPi",
  11048. _box, {
  11049. "id": "CocoPi_Upload" + cid + stage + task + tool,
  11050. "style": {
  11051. "width": "90%",
  11052. "height": "90%",
  11053. "overflow": 'hidden'
  11054. },
  11055. "onresize": function () { }
  11056. }, {
  11057. closecallback: function () { }
  11058. }, {
  11059. "style": {
  11060. "height": "36px"
  11061. }
  11062. }).form; //创建窗体
  11063. _taskbar = {
  11064. "id": str + _formdiv.id,
  11065. "style": {
  11066. "backgroundImage": "url(/img/icon/cocopi.png)"
  11067. },
  11068. "name": "CocoPi",
  11069. "forms": _formdiv,
  11070. "click": function () {
  11071. U.MD.D.I.openApplication(str, obj, info);
  11072. }
  11073. }
  11074. break;
  11075. }
  11076. if (_iframe) {
  11077. if (str == 'CocoPi') {
  11078. _iframe = _formdiv.querySelector('iframe')
  11079. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11080. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  11081. })
  11082. if (onloadListener) {
  11083. _iframe.contentDocument.location.reload()
  11084. } else {
  11085. _iframe.contentDocument.location.reload()
  11086. }
  11087. }
  11088. _jie.onclick = async () => {
  11089. let text = ''
  11090. if (aTool == 57) {
  11091. text = _iframe.contentWindow.getLoadXmlStr()
  11092. }
  11093. _loading.style.display = 'flex'
  11094. console.log(_loading);
  11095. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  11096. _loading.style.display = 'none'
  11097. let _div = document.createElement('div')
  11098. _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;"
  11099. let _inner = document.createElement('div')
  11100. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  11101. _inner.innerHTML = "上传成功"
  11102. _div.appendChild(_inner)
  11103. _iframe.contentWindow.window.document.body.appendChild(_div)
  11104. _div.onclick = () => {
  11105. _iframe.contentWindow.window.document.body.removeChild(_div)
  11106. }
  11107. setTimeout(() => {
  11108. _iframe.contentWindow.window.document.body.removeChild(_div)
  11109. }, 1000);
  11110. }, [], { "type": "POST", "withCredentials": true });
  11111. }
  11112. }
  11113. }
  11114. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  11115. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  11116. _formdiv, //创建任务栏时同时弹出的窗体元素。
  11117. _userid = student.userid, //登录用户id
  11118. _username = student.student //用户名字
  11119. let _iframe;
  11120. let _cid = cid,
  11121. _stage = stage,
  11122. _task = task,
  11123. _tool = tool;
  11124. var _jie = $$("div", {
  11125. "style": {
  11126. "position": "absolute",
  11127. "bottom": "50px",
  11128. "right": "50px",
  11129. "zIndex": "9999",
  11130. "backgroundColor": "#2268bc",
  11131. "color": "#fff",
  11132. "padding": "12px 20px",
  11133. "cursor": "pointer",
  11134. "borderRadius": "4px",
  11135. },
  11136. "innerHTML": "提交作业"
  11137. })
  11138. let aTool = ''
  11139. let _loading = document.createElement('div')
  11140. _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;"
  11141. // _loading.id = "";
  11142. let _lchild = document.createElement('div')
  11143. let _limg = document.createElement('img')
  11144. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  11145. _limg.style = "width: 26px;margin-right: 10px;"
  11146. _lchild.appendChild(_limg)
  11147. let _lspan = document.createElement('span')
  11148. _lspan.innerHTML = "上传中..."
  11149. _lchild.appendChild(_lspan)
  11150. _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%);"
  11151. _loading.appendChild(_lchild)
  11152. var _box = $$('div', {
  11153. "style": {
  11154. "position": "relative",
  11155. "width": "100%",
  11156. "height": "100%",
  11157. },
  11158. })
  11159. _box.appendChild(_loading)
  11160. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  11161. switch (str) {
  11162. case "CocoPi":
  11163. aTool = 57;
  11164. _iframe = $$("iframe", {
  11165. "allowpaymentrequest": "allowpaymentrequest",
  11166. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  11167. "webkitallowfullscreen": "",
  11168. "mozallowfullscreen": "",
  11169. "frameborder": "no",
  11170. "border": "0",
  11171. "scrolling ": "no",
  11172. "style": {
  11173. "cssText": "border:0;width:100%;height:100%"
  11174. },
  11175. "src": "https://pi.cocorobo.cn/"
  11176. })
  11177. _box.appendChild(_iframe);
  11178. _box.appendChild(_jie);
  11179. _formdiv = new U.UF.UI.form(
  11180. "CocoPi-" + _username,
  11181. _box, {
  11182. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  11183. "style": {
  11184. "width": "90%",
  11185. "height": "90%",
  11186. "overflow": 'hidden'
  11187. },
  11188. "onresize": function () { }
  11189. }, {
  11190. closecallback: function () { }
  11191. }, {
  11192. "style": {
  11193. "height": "36px"
  11194. }
  11195. }).form; //创建窗体
  11196. _taskbar = {
  11197. "id": str + _formdiv.id,
  11198. "style": {
  11199. "backgroundImage": "url(/img/icon/cocopi.png)"
  11200. },
  11201. "name": "CocoPi",
  11202. "forms": _formdiv,
  11203. "click": function () {
  11204. U.MD.D.I.openApplication(str, obj, info);
  11205. }
  11206. }
  11207. break;
  11208. }
  11209. if (_iframe) {
  11210. if (str == 'CocoPi') {
  11211. _iframe = _formdiv.querySelector('iframe')
  11212. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11213. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  11214. })
  11215. if (onloadListener) {
  11216. _iframe.contentDocument.location.reload()
  11217. } else {
  11218. _iframe.contentDocument.location.reload()
  11219. }
  11220. }
  11221. _jie.onclick = async () => {
  11222. let text = ''
  11223. if (aTool == 57) {
  11224. text = _iframe.contentWindow.getLoadXmlStr()
  11225. }
  11226. _loading.style.display = 'flex'
  11227. console.log(_loading);
  11228. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  11229. _loading.style.display = 'none'
  11230. let _div = document.createElement('div')
  11231. _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;"
  11232. let _inner = document.createElement('div')
  11233. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  11234. _inner.innerHTML = "上传成功"
  11235. _div.appendChild(_inner)
  11236. _iframe.contentWindow.window.document.body.appendChild(_div)
  11237. _div.onclick = () => {
  11238. _iframe.contentWindow.window.document.body.removeChild(_div)
  11239. }
  11240. setTimeout(() => {
  11241. _iframe.contentWindow.window.document.body.removeChild(_div)
  11242. }, 1000);
  11243. }, [], { "type": "POST", "withCredentials": true });
  11244. }
  11245. }
  11246. }
  11247. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  11248. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  11249. if (res.value[0].length > 0) {
  11250. if (atool == 57) {
  11251. iframe.contentWindow.loadingXml(res.value[0][0].content)
  11252. }
  11253. } else {
  11254. if (atool == 57) {
  11255. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  11256. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  11257. }
  11258. }
  11259. }, [], { "type": "POST", "withCredentials": true });
  11260. }
  11261. U.MD.D.addOp = function (text, type, time) {
  11262. var userInfo = US.userInfo;
  11263. if (Object.keys(userInfo).length !== 0) {
  11264. U.A.Request(US.Config.pbl + "addOperationTimeT", [userInfo.userid, text, type, time], function (res) {
  11265. }, [], { "type": "POST", "withCredentials": true });
  11266. }
  11267. }