DeskTop.js 702 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158
  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. ];
  717. //hk
  718. U.MD.D.I.hkaceteacherDeskIcon = [
  719. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  720. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  721. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  722. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  723. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  724. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  725. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  726. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  727. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  728. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  729. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  730. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  731. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  732. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  733. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  734. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  735. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  736. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  737. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  738. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  739. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  740. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  741. ];
  742. //hk
  743. U.MD.D.I.hkaceStudentDeskIcon = [
  744. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  745. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  746. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  747. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  748. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  749. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  750. ];
  751. //香海正覺蓮社佛教正覺中學
  752. U.MD.D.I.hkZJLSteacherDeskIcon = [
  753. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  754. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  755. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  756. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  757. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  758. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  759. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  760. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  761. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  762. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  763. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  764. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  765. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  766. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  767. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  768. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  769. ];
  770. //香海正覺蓮社佛教正覺中學
  771. U.MD.D.I.hkZJLSStudentDeskIcon = [
  772. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  773. { "Name": "项目管理", "Url": "studentCourse", "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": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  776. ];
  777. //云海
  778. U.MD.D.I.yunhaiTeacherDeskIcon = [
  779. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  780. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  781. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  782. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  783. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  784. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  785. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  786. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  787. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  788. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  789. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  790. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  791. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  792. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  793. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  794. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  795. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  796. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  797. ];
  798. //福田
  799. U.MD.D.I.heyuanTeacherDeskIcon = [
  800. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  801. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  802. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  803. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  804. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  805. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  806. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  807. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  808. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  809. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  810. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  811. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  812. ];
  813. //福田
  814. U.MD.D.I.heyuanAdminDeskIcon = [
  815. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  816. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  817. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  818. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  819. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  820. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  821. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  822. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  823. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  824. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  825. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  826. ];
  827. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  828. U.MD.D.I.szherTeacherDeskIcon = [
  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": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  832. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  833. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  834. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  835. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  836. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  837. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  838. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  839. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  840. ];
  841. //dsei
  842. U.MD.D.I.dseiTeacherDeskIcon = [
  843. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  844. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  845. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  846. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  847. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  848. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  849. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  850. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  851. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  852. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  853. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  854. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  855. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  856. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  857. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  858. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  859. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  860. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  861. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  862. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  863. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  864. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  865. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  866. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  867. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  868. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  869. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  870. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  871. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  872. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  873. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  874. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  875. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  876. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  877. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  878. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  879. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  880. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  881. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  882. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  883. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  884. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  885. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  886. ];
  887. //dsei
  888. U.MD.D.I.dseiAdminDeskIcon = [
  889. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  890. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  891. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  892. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  893. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  894. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  895. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  896. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  897. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  898. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  899. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  900. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  901. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  902. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  903. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  904. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  905. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  906. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  907. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  908. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  909. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  910. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  911. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  912. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  913. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  914. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  915. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  916. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  917. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  918. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  919. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  920. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  921. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  922. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  923. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  924. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  925. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  926. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  927. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  928. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  929. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  930. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  931. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  932. ];
  933. //dsei
  934. U.MD.D.I.dseiStudentDeskIcon = [
  935. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  936. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  937. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  938. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  939. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  940. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  941. ];
  942. //未来教育基地
  943. U.MD.D.I.szjkyTeacherDeskIcon = [
  944. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  945. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  946. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  947. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  948. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  949. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  950. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  951. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  952. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  953. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  954. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  955. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  956. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  957. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  958. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  959. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  960. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  961. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  962. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  963. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  964. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  965. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  966. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  967. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  968. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  969. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  970. ];
  971. //未来教育基地
  972. U.MD.D.I.szjkyAdminDeskIcon = [
  973. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  974. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  975. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  976. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  977. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  978. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  979. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  980. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  981. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  982. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  983. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  984. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  985. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  986. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  987. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  988. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  989. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  990. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  991. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  992. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  993. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  994. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  995. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  996. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  997. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  998. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  999. ];
  1000. //未来教育基地
  1001. U.MD.D.I.szjkyStudentDeskIcon = [
  1002. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1003. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1004. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1005. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1006. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1007. ];
  1008. //成华教育局
  1009. U.MD.D.I.chjyjTeacherDeskIcon = [
  1010. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1011. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1012. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1013. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1014. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1015. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1016. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1017. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1018. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1019. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1020. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1021. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1022. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1023. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1024. ];
  1025. //成华教育局chjyj
  1026. U.MD.D.I.chjyjAdminDeskIcon = [
  1027. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1028. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1029. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1030. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1031. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1032. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1033. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1034. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1035. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1036. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1037. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1038. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1039. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1040. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1041. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1042. ];
  1043. //成华教育局chjyj
  1044. U.MD.D.I.chjyjStudentDeskIcon = [
  1045. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1046. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1047. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1048. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1049. ];
  1050. //tpc
  1051. U.MD.D.I.tpcStudentDeskIcon = [
  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. ];
  1057. //tpc
  1058. U.MD.D.I.tpcTeacherDeskIcon = [
  1059. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1060. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1061. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1062. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1063. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1064. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1065. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1066. ];
  1067. //tpc
  1068. U.MD.D.I.tpcAdminDeskIcon = [
  1069. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1070. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1071. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1072. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1073. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1074. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1075. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1076. ];
  1077. //THU-IOE
  1078. U.MD.D.I.thuioeTeacherDeskIcon = [
  1079. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1080. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1081. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1082. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1083. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1084. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1085. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1086. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1087. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1088. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1089. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1090. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1091. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1092. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1093. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1094. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1095. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1096. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1097. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1098. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1099. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1100. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1101. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1102. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1103. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1104. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1105. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1106. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1107. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1108. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1109. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1110. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1111. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1112. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1113. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1114. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1115. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1116. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1117. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1118. ];
  1119. //THU-IOE
  1120. U.MD.D.I.thuioeStudentDeskIcon = [
  1121. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1122. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1123. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1124. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1125. ];
  1126. //jccssyl
  1127. U.MD.D.I.jccssylTeacherDeskIcon = [
  1128. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1129. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1130. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1131. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1132. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1133. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1134. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1135. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1136. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1137. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1138. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1139. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1140. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1141. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1142. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1143. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1144. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1145. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1146. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1147. ];
  1148. //jccssyl
  1149. U.MD.D.I.jccssylStudentDeskIcon = [
  1150. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1151. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1152. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1153. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1154. ];
  1155. //cale
  1156. U.MD.D.I.caleTeacherDeskIcon = [
  1157. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1158. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1159. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1160. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1161. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1162. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1163. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1164. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1165. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1166. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1167. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1168. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1169. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1170. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1171. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1172. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1173. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1174. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1175. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1176. ];
  1177. //cale
  1178. U.MD.D.I.caleStudentDeskIcon = [
  1179. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1180. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1181. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1182. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1183. ];
  1184. //lqwmsgzs
  1185. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1186. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1187. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1188. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1189. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1190. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1191. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1192. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1193. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1194. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1195. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1196. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1197. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1198. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1199. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1200. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1201. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1202. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1203. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1204. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1205. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1206. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1207. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1208. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1209. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1210. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1211. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1212. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1213. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1214. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1215. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1216. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1217. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1218. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1219. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1220. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1221. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1222. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1223. ];
  1224. //lqwmsgzs
  1225. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1226. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1227. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1228. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1229. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1230. ];
  1231. //盐田区幼儿园
  1232. U.MD.D.I.ytyTeacherDeskIcon = [
  1233. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1234. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1235. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1236. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1237. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1238. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1239. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1240. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1241. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1242. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1243. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1244. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1245. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1246. ];
  1247. //盐田区幼儿园
  1248. U.MD.D.I.ytyStudentDeskIcon = [
  1249. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1250. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1251. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1252. ];
  1253. //scnuai
  1254. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1255. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1256. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1257. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1258. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1259. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1260. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1261. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1262. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1263. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1264. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1265. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1266. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1267. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1268. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1269. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1270. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1271. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1272. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1273. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1274. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1275. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1276. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1277. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1278. ];
  1279. //scnuai
  1280. U.MD.D.I.scnuaiAdminDeskIcon = [
  1281. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1282. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1283. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1284. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1285. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1286. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1287. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1288. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1289. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1290. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1291. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1292. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1293. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1294. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1295. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1296. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1297. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1298. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1299. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1300. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1301. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1302. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1303. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1304. ];
  1305. //scnuai
  1306. U.MD.D.I.scnuaiStudentDeskIcon = [
  1307. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1308. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1309. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1310. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1311. ];
  1312. //cocobiz
  1313. U.MD.D.I.cocobizteacherDeskIcon = [
  1314. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1315. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1316. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1317. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1318. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1319. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1320. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1321. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1322. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1323. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1324. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1325. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1326. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1327. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1328. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1329. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1330. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1331. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1332. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1333. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1334. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1335. ];
  1336. //cocobiz
  1337. U.MD.D.I.cocobizStudentDeskIcon = [
  1338. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1339. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1340. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1341. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1342. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1343. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1344. ];
  1345. //xxzjky
  1346. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1347. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1348. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1349. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1350. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1351. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1352. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1353. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1354. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1355. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1356. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1357. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1358. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1359. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1360. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1361. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1362. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1363. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1364. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1365. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1366. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1367. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1368. ];
  1369. //xxzjky
  1370. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1371. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1372. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1373. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1374. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1375. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1376. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1377. ];
  1378. //nsfx
  1379. U.MD.D.I.nsfxTeacherDeskIcon = [
  1380. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1381. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1382. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1383. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1384. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1385. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1386. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1387. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1388. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1389. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1390. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1391. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1392. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1393. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1394. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1395. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1396. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1397. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1398. ];
  1399. //nsfx
  1400. U.MD.D.I.nsfxStudentDeskIcon = [
  1401. { "Name": "项目管理", "Url": "studentCourse", "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": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1404. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1405. ];
  1406. //stia
  1407. U.MD.D.I.stiaTeacherDeskIcon = [
  1408. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1409. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1410. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1411. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1412. // { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1413. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1414. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1415. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1416. // { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1417. // { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1418. // { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1419. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1420. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1421. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1422. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1423. ];
  1424. //stia
  1425. U.MD.D.I.stiaStudentDeskIcon = [
  1426. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1427. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1428. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1429. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1430. ];
  1431. //szdjg
  1432. U.MD.D.I.szdjgTeacherDeskIcon = [
  1433. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1434. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1435. ];
  1436. //szdjg
  1437. U.MD.D.I.szdjgStudentDeskIcon = [
  1438. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1439. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1440. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1441. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1442. ];
  1443. //010607
  1444. U.MD.D.I.x010607TeacherDeskIcon = [
  1445. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1446. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1447. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1448. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1449. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1450. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1451. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1452. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1453. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1454. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1455. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1456. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1457. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1458. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1459. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1460. ];
  1461. //010607
  1462. U.MD.D.I.x010607StudentDeskIcon = [
  1463. { "Name": "项目管理", "Url": "studentCourse", "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": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1466. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1467. ];
  1468. //010608
  1469. U.MD.D.I.x010608TeacherDeskIcon = [
  1470. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1471. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1472. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1473. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1474. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1475. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1476. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1477. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1478. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1479. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1480. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1481. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1482. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1483. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1484. ];
  1485. //010608
  1486. U.MD.D.I.x010608StudentDeskIcon = [
  1487. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1488. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1489. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1490. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1491. ];
  1492. //xhly
  1493. U.MD.D.I.xhlyTeacherDeskIcon = [
  1494. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1495. ];
  1496. //010608
  1497. U.MD.D.I.xhlyStudentDeskIcon = [
  1498. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1499. ];
  1500. //北师大
  1501. U.MD.D.I.BSDNSteacherDeskIcon = [
  1502. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1503. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1504. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1505. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1506. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1507. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1508. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1509. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1510. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1511. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1512. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1513. ];
  1514. //北师大
  1515. U.MD.D.I.BSDNSstudentDeskIcon = [
  1516. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1517. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1518. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1519. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1520. ];
  1521. //CUHK_EDU
  1522. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1523. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1524. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1525. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1526. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1527. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1528. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1529. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1530. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1531. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1532. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1533. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1534. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1535. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1536. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1537. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1538. ];
  1539. //CUHK_EDU
  1540. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1541. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1542. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1543. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1544. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1545. ];
  1546. //010503
  1547. U.MD.D.I.x010503TeacherDeskIcon = [
  1548. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1549. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1550. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1551. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1552. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1553. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1554. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1555. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1556. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1557. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1558. ];
  1559. //010503
  1560. U.MD.D.I.x010503StudentDeskIcon = [
  1561. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1562. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1563. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1564. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1565. ];
  1566. //SPROUT Lab
  1567. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1568. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1569. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1570. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1571. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1572. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1573. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1574. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1575. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1576. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1577. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1578. ];
  1579. //SPROUT Lab
  1580. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1581. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1582. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1583. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1584. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1585. ];
  1586. //010204
  1587. U.MD.D.I.x010204TeacherDeskIcon = [
  1588. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1589. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1590. ];
  1591. //010204
  1592. U.MD.D.I.x010204StudentDeskIcon = [
  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. //trail
  1599. U.MD.D.I.trailTeacherDeskIcon = [
  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": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1603. ];
  1604. //trail
  1605. U.MD.D.I.trailStudentDeskIcon = [
  1606. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1607. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1608. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1609. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1610. ];
  1611. //010504
  1612. U.MD.D.I.x010504TeacherDeskIcon = [
  1613. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1614. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1615. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1616. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1617. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1618. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1619. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1620. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1621. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1622. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1623. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1624. ];
  1625. //010504
  1626. U.MD.D.I.x010504StudentDeskIcon = [
  1627. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1628. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1629. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1630. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1631. ];
  1632. //010505
  1633. U.MD.D.I.x010505TeacherDeskIcon = [
  1634. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1635. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1636. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1637. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1638. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1639. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1640. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1641. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1642. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1643. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1644. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1645. ];
  1646. //010505
  1647. U.MD.D.I.x010505StudentDeskIcon = [
  1648. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1649. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1650. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1651. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1652. ];
  1653. //SCNUET
  1654. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1655. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1656. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1657. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1658. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1659. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1660. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1661. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1662. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1663. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1664. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1665. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1666. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1667. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1668. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1669. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1670. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1671. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1672. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1673. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1674. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1675. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1676. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1677. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1678. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1679. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1680. ];
  1681. //SCNUET
  1682. U.MD.D.I.SCNUETAdminDeskIcon = [
  1683. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1684. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1685. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1686. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1687. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1688. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1689. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1690. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1691. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1692. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1693. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1694. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1695. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1696. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1697. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1698. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1699. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1700. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1701. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1702. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1703. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1704. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1705. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1706. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1707. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1708. ];
  1709. //SCNUET
  1710. U.MD.D.I.SCNUETStudentDeskIcon = [
  1711. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1712. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1713. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1714. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1715. ];
  1716. //x020201
  1717. U.MD.D.I.x020201TeacherDeskIcon = [
  1718. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1719. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1720. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1721. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1722. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1723. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1724. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1725. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1726. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1727. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1728. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1729. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1730. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1731. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1732. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1733. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1734. ];
  1735. //x020201
  1736. U.MD.D.I.x020201AdminDeskIcon = [
  1737. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1738. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1739. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1740. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1741. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1742. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1743. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1744. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1745. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1746. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1747. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1748. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1749. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1750. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1751. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1752. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1753. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1754. ];
  1755. //020201
  1756. U.MD.D.I.x020201StudentDeskIcon = [
  1757. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1758. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1759. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1760. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1761. ];
  1762. //010611
  1763. U.MD.D.I.x010611TeacherDeskIcon = [
  1764. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1765. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1766. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1767. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1768. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1769. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1770. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1771. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1772. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1773. ];
  1774. //010611
  1775. U.MD.D.I.x010611StudentDeskIcon = [
  1776. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1777. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1778. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1779. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1780. ];
  1781. //010612
  1782. U.MD.D.I.x010612TeacherDeskIcon = [
  1783. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1784. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1785. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1786. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1787. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1788. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1789. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1790. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1791. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1792. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1793. ];
  1794. //010612
  1795. U.MD.D.I.x010612StudentDeskIcon = [
  1796. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1797. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1798. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1799. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1800. ];
  1801. //tianyuan
  1802. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1803. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1804. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1805. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1806. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1807. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1808. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1809. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1810. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1811. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1812. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1813. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1814. ];
  1815. //010611
  1816. U.MD.D.I.tianyuanStudentDeskIcon = [
  1817. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1818. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1819. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1820. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1821. ];
  1822. //320101
  1823. U.MD.D.I.x320101TeacherDeskIcon = [
  1824. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1825. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1826. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1827. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1828. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1829. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1830. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1831. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1832. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1833. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1834. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1835. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1836. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1837. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1838. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1839. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1840. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1841. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1842. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1843. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1844. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1845. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1846. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1847. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1848. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1849. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1850. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1851. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1852. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1853. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1854. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1855. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1856. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1857. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1858. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1859. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1860. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1861. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1862. ];
  1863. //320101
  1864. U.MD.D.I.x320101StudentDeskIcon = [
  1865. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1866. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1867. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1868. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1869. ];
  1870. //szsy
  1871. U.MD.D.I.szsyTeacherDeskIcon = [
  1872. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1873. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1874. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1875. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1876. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1877. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1878. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1879. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1880. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1881. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1882. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1883. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1884. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1885. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1886. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1887. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1888. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1889. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1890. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1891. ];
  1892. //szsy
  1893. U.MD.D.I.szsyStudentDeskIcon = [
  1894. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1895. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1896. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1897. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1898. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1899. ];
  1900. //010404
  1901. U.MD.D.I.x010404TeacherDeskIcon = [
  1902. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1903. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1904. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1905. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1906. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1907. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1908. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1909. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1910. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1911. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1912. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1913. ];
  1914. //010404
  1915. U.MD.D.I.x010404StudentDeskIcon = [
  1916. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1917. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1918. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1919. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1920. ];
  1921. //#region 桌面初始化a
  1922. /**
  1923. * 初始化桌面的起始函数
  1924. *
  1925. */
  1926. U.MD.D.I.init = function () {
  1927. if ($("#U_MD_D_K")[0]) {
  1928. //初始化桌面图标
  1929. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1930. // var clickUrl = ':12588/requestIp.php';
  1931. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1932. // U.MD.D.I.Ip = data;
  1933. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1934. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1935. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1936. // })
  1937. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1938. // })
  1939. }
  1940. }
  1941. /**
  1942. * 模式切换
  1943. *
  1944. */
  1945. U.MD.D.I.ModeCheck = function (type) {
  1946. if (US.Config.type == type) {
  1947. return
  1948. }
  1949. US.Config.type = type
  1950. $('.U_PBL_Check .active')[0].className = ''
  1951. if (type == 1) {
  1952. $('.U_PBL_Check div')[0].className = 'active'
  1953. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1954. } else {
  1955. $('.U_PBL_Check div')[1].className = 'active'
  1956. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1957. }
  1958. //初始化桌面图标
  1959. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1960. if (type == 2) {
  1961. U.MD.D.I.openApplication("project")
  1962. }
  1963. }
  1964. /**
  1965. * 隐藏任务栏
  1966. *
  1967. * @param {element} 桌面元素
  1968. */
  1969. U.MD.D.I.hiddenTaskbar = function (el) {
  1970. //任务栏位置变小
  1971. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1972. //桌面的位置变大
  1973. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1974. }
  1975. /**
  1976. * 隐藏任务栏
  1977. *
  1978. * @param {element} 桌面元素
  1979. */
  1980. U.MD.D.I.hiddenTaskbarout = function (el) {
  1981. //任务栏位置变小
  1982. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1983. //任务栏位置变化
  1984. U.selectEl(el).css({ "bottom": "-60px" });
  1985. //桌面的位置变大
  1986. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1987. }
  1988. }
  1989. /**
  1990. * 初始化打印桌面图标
  1991. *
  1992. * @param {element} 桌面元素
  1993. */
  1994. U.MD.D.I.initDesktopIcons = function (el, type) {
  1995. var i, //用于循环
  1996. _content, //桌面图标元素
  1997. _iconcontent, //桌面图标元素
  1998. _frag = $$("frag"), //定义一个碎片元素
  1999. _type = US.userInfo.type,
  2000. _org = US.userInfo.org,
  2001. _oid = US.userInfo.organizeid,
  2002. _role = US.userInfo.role,
  2003. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  2004. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  2005. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  2006. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  2007. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  2008. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  2009. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  2010. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  2011. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  2012. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  2013. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  2014. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  2015. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  2016. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  2017. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  2018. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  2019. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  2020. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  2021. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  2022. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  2023. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  2024. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  2025. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  2026. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  2027. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  2028. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  2029. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  2030. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  2031. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  2032. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  2033. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  2034. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  2035. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  2036. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  2037. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  2038. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  2039. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  2040. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  2041. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  2042. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  2043. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  2044. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  2045. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  2046. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  2047. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  2048. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  2049. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  2050. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  2051. _ricohTeacherDeskIconInfo = U.MD.D.I.ricohteacherDeskIcon, //hk
  2052. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  2053. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  2054. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  2055. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  2056. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  2057. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  2058. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  2059. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  2060. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  2061. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  2062. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  2063. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  2064. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  2065. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  2066. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  2067. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  2068. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  2069. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  2070. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  2071. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  2072. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  2073. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  2074. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  2075. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  2076. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  2077. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  2078. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  2079. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  2080. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2081. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2082. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2083. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2084. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2085. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2086. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2087. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2088. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2089. _x010612StudentDeskIconInfo = U.MD.D.I.x010612StudentDeskIcon, //010611
  2090. _x010612TeacherDeskIconInfo = U.MD.D.I.x010612TeacherDeskIcon, //010611
  2091. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2092. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2093. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2094. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2095. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2096. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2097. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2098. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2099. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2100. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2101. _x010505StudentDeskIconInfo = U.MD.D.I.x010505StudentDeskIcon, //010505
  2102. _x010505TeacherDeskIconInfo = U.MD.D.I.x010505TeacherDeskIcon, //010505
  2103. _x010404StudentDeskIconInfo = U.MD.D.I.x010404StudentDeskIcon, //010404
  2104. _x010404TeacherDeskIconInfo = U.MD.D.I.x010404TeacherDeskIcon, //010404
  2105. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2106. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2107. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2108. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2109. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2110. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2111. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2112. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2113. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2114. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2115. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2116. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2117. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2118. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2119. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2120. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2121. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2122. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2123. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2124. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  2125. 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'];
  2126. 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'];
  2127. //清楚桌面图标
  2128. el.innerHTML = "";
  2129. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2130. _teacherDesktopIconInfo.push(
  2131. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2132. { "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)" } },
  2133. )
  2134. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2135. }
  2136. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5' || _org == '4d3812ef-fa66-11ef-b508-005056924926' || _oid == "0df61e4c-fe2d-11ef-b508-005056924926" || _org == 'eaee75a4-ff2e-11ef-b508-005056924926' || _org == 'e775a5d7-039a-11f0-b508-005056924926' || _org == '4d3812ef-fa66-11ef-b508-005056924926') {
  2137. _teacherDesktopIconInfo.push(
  2138. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2139. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2140. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2141. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2142. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2143. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2144. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2145. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2146. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2147. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2148. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2149. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2150. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2151. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2152. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2153. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2154. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2155. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2156. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2157. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2158. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2159. )
  2160. }
  2161. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2162. _teacherDesktopIconInfo.push(
  2163. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2164. )
  2165. }
  2166. if (_oid == 'b650d914-f039-11ef-b508-005056924926') {//松坪学校
  2167. _nsfxTeacherDeskIconInfo.push(
  2168. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2169. )
  2170. }
  2171. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2172. // _teacherDesktopIconInfo.push(
  2173. // )
  2174. // }
  2175. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2176. _teacherDesktopIconInfo.push(
  2177. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2178. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2179. )
  2180. }
  2181. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2182. _teacherDesktopIconInfo.push(
  2183. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2184. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2185. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2186. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2187. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2188. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2189. )
  2190. _studentDesktopIconInfo.push(
  2191. )
  2192. }
  2193. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2194. _teacherDesktopIconInfo.push(
  2195. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2196. )
  2197. _studentDesktopIconInfo.push(
  2198. )
  2199. }
  2200. //010606 组织
  2201. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2202. _teacherDesktopIconInfo.push(
  2203. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2204. )
  2205. _studentDesktopIconInfo.push(
  2206. )
  2207. }
  2208. //麒麟二中 和 民新小学
  2209. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2210. _teacherDesktopIconInfo.push(
  2211. )
  2212. }
  2213. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2214. _teacherDesktopIconInfo.push(
  2215. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2216. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2217. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2218. )
  2219. }
  2220. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2221. _hkTeacherDeskIconInfo.push(
  2222. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2223. )
  2224. }
  2225. //北师大附中(010601)
  2226. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2227. // _teacherDesktopIconInfo.push(
  2228. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2229. // )
  2230. // _studentDesktopIconInfo.push(
  2231. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2232. // )
  2233. // }
  2234. //樂善堂余近卿中學
  2235. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2236. _teacherDesktopIconInfo.push(
  2237. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2238. )
  2239. }
  2240. // Education Artificial Intelligence
  2241. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2242. _teacherDesktopIconInfo.push(
  2243. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2244. )
  2245. }
  2246. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2247. _teacherDesktopIconInfo.push(
  2248. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2249. )
  2250. }
  2251. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2252. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2253. _teacherDesktopIconInfo.push(
  2254. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2255. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2256. )
  2257. }
  2258. //麒麟二中
  2259. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2260. _studentDesktopIconInfo.push(
  2261. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2262. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2263. )
  2264. }
  2265. //万科双语
  2266. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2267. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2268. if (el.Name == '项目管理') {
  2269. el.Name = 'PBL项目'
  2270. }
  2271. return el
  2272. })
  2273. _studentDesktopIconInfo3.push(
  2274. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2275. )
  2276. }
  2277. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2278. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2279. return el.Name != '魔盒识字' && el.Name != '24点'
  2280. })
  2281. }
  2282. 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) {
  2283. _studentDesktopIconInfo.push(
  2284. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2285. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2286. )
  2287. }
  2288. //循环创建桌面图标
  2289. if (type == 1) {
  2290. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2291. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2292. _content = $$("div", {
  2293. className: "U_MD_D_KO",
  2294. "onmousedown": U.UF.C.closure(function (obj) {
  2295. //防止拖动图标即打开了桌面应用
  2296. U.MD.D.click(this, obj);
  2297. }, [_studentDesktopIconInfo[i]]),
  2298. "onclick": U.UF.C.closure(function (obj) {
  2299. //防止拖动图标即打开了桌面应用
  2300. U.MD.D.click(this, obj);
  2301. }, [_studentDesktopIconInfo[i]])
  2302. }, _frag); //
  2303. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2304. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2305. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2306. }
  2307. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2308. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2309. _content = $$("div", {
  2310. className: "U_MD_D_KO",
  2311. "onmousedown": U.UF.C.closure(function (obj) {
  2312. //防止拖动图标即打开了桌面应用
  2313. U.MD.D.click(this, obj);
  2314. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2315. "onclick": U.UF.C.closure(function (obj) {
  2316. //防止拖动图标即打开了桌面应用
  2317. U.MD.D.click(this, obj);
  2318. }, [_hkZJLSStudentDeskIconInfo[i]])
  2319. }, _frag); //
  2320. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2321. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2322. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2323. } //
  2324. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2325. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2326. _content = $$("div", {
  2327. className: "U_MD_D_KO",
  2328. "onmousedown": U.UF.C.closure(function (obj) {
  2329. //防止拖动图标即打开了桌面应用
  2330. U.MD.D.click(this, obj);
  2331. }, [_ytyStudentDeskIconInfo[i]]),
  2332. "onclick": U.UF.C.closure(function (obj) {
  2333. //防止拖动图标即打开了桌面应用
  2334. U.MD.D.click(this, obj);
  2335. }, [_ytyStudentDeskIconInfo[i]])
  2336. }, _frag); //
  2337. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2338. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2339. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2340. } //
  2341. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2342. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2343. _content = $$("div", {
  2344. className: "U_MD_D_KO",
  2345. "onmousedown": U.UF.C.closure(function (obj) {
  2346. //防止拖动图标即打开了桌面应用
  2347. U.MD.D.click(this, obj);
  2348. }, [_jccssylStudentDeskIconInfo[i]]),
  2349. "onclick": U.UF.C.closure(function (obj) {
  2350. //防止拖动图标即打开了桌面应用
  2351. U.MD.D.click(this, obj);
  2352. }, [_jccssylStudentDeskIconInfo[i]])
  2353. }, _frag); //
  2354. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2355. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2356. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2357. }
  2358. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2359. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2360. _content = $$("div", {
  2361. className: "U_MD_D_KO",
  2362. "onmousedown": U.UF.C.closure(function (obj) {
  2363. //防止拖动图标即打开了桌面应用
  2364. U.MD.D.click(this, obj);
  2365. }, [_scnuaiStudentDeskIconInfo[i]]),
  2366. "onclick": U.UF.C.closure(function (obj) {
  2367. //防止拖动图标即打开了桌面应用
  2368. U.MD.D.click(this, obj);
  2369. }, [_scnuaiStudentDeskIconInfo[i]])
  2370. }, _frag); //
  2371. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2372. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2373. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2374. }
  2375. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2376. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2377. _content = $$("div", {
  2378. className: "U_MD_D_KO",
  2379. "onmousedown": U.UF.C.closure(function (obj) {
  2380. //防止拖动图标即打开了桌面应用
  2381. U.MD.D.click(this, obj);
  2382. }, [_caleStudentDeskIconInfo[i]]),
  2383. "onclick": U.UF.C.closure(function (obj) {
  2384. //防止拖动图标即打开了桌面应用
  2385. U.MD.D.click(this, obj);
  2386. }, [_caleStudentDeskIconInfo[i]])
  2387. }, _frag); //
  2388. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2389. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2390. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2391. }
  2392. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2393. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2394. _content = $$("div", {
  2395. className: "U_MD_D_KO",
  2396. "onmousedown": U.UF.C.closure(function (obj) {
  2397. //防止拖动图标即打开了桌面应用
  2398. U.MD.D.click(this, obj);
  2399. }, [_thuioeStudentDeskIconInfo[i]]),
  2400. "onclick": U.UF.C.closure(function (obj) {
  2401. //防止拖动图标即打开了桌面应用
  2402. U.MD.D.click(this, obj);
  2403. }, [_thuioeStudentDeskIconInfo[i]])
  2404. }, _frag); //
  2405. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2406. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2407. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2408. }
  2409. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2410. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2411. _content = $$("div", {
  2412. className: "U_MD_D_KO",
  2413. "onmousedown": U.UF.C.closure(function (obj) {
  2414. //防止拖动图标即打开了桌面应用
  2415. U.MD.D.click(this, obj);
  2416. }, [_tpcStudentDeskIconInfo[i]]),
  2417. "onclick": U.UF.C.closure(function (obj) {
  2418. //防止拖动图标即打开了桌面应用
  2419. U.MD.D.click(this, obj);
  2420. }, [_tpcStudentDeskIconInfo[i]])
  2421. }, _frag); //
  2422. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2423. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2424. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2425. } //
  2426. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2427. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2428. _content = $$("div", {
  2429. className: "U_MD_D_KO",
  2430. "onmousedown": U.UF.C.closure(function (obj) {
  2431. //防止拖动图标即打开了桌面应用
  2432. U.MD.D.click(this, obj);
  2433. }, [_chjyjStudentDeskIconInfo[i]]),
  2434. "onclick": U.UF.C.closure(function (obj) {
  2435. //防止拖动图标即打开了桌面应用
  2436. U.MD.D.click(this, obj);
  2437. }, [_chjyjStudentDeskIconInfo[i]])
  2438. }, _frag); //
  2439. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2440. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2441. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2442. }
  2443. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2444. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2445. _content = $$("div", {
  2446. className: "U_MD_D_KO",
  2447. "onmousedown": U.UF.C.closure(function (obj) {
  2448. //防止拖动图标即打开了桌面应用
  2449. U.MD.D.click(this, obj);
  2450. }, [_szjkyStudentDeskIconInfo[i]]),
  2451. "onclick": U.UF.C.closure(function (obj) {
  2452. //防止拖动图标即打开了桌面应用
  2453. U.MD.D.click(this, obj);
  2454. }, [_szjkyStudentDeskIconInfo[i]])
  2455. }, _frag); //
  2456. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2457. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2458. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2459. }
  2460. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2461. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2462. _content = $$("div", {
  2463. className: "U_MD_D_KO",
  2464. "onmousedown": U.UF.C.closure(function (obj) {
  2465. //防止拖动图标即打开了桌面应用
  2466. U.MD.D.click(this, obj);
  2467. }, [_x020201StudentDeskIconInfo[i]]),
  2468. "onclick": U.UF.C.closure(function (obj) {
  2469. //防止拖动图标即打开了桌面应用
  2470. U.MD.D.click(this, obj);
  2471. }, [_x020201StudentDeskIconInfo[i]])
  2472. }, _frag); //
  2473. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2474. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2475. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2476. }
  2477. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2478. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2479. _content = $$("div", {
  2480. className: "U_MD_D_KO",
  2481. "onmousedown": U.UF.C.closure(function (obj) {
  2482. //防止拖动图标即打开了桌面应用
  2483. U.MD.D.click(this, obj);
  2484. }, [_SCNUETStudentDeskIconInfo[i]]),
  2485. "onclick": U.UF.C.closure(function (obj) {
  2486. //防止拖动图标即打开了桌面应用
  2487. U.MD.D.click(this, obj);
  2488. }, [_SCNUETStudentDeskIconInfo[i]])
  2489. }, _frag); //
  2490. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2491. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2492. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2493. }
  2494. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2495. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2496. _content = $$("div", {
  2497. className: "U_MD_D_KO",
  2498. "onmousedown": U.UF.C.closure(function (obj) {
  2499. //防止拖动图标即打开了桌面应用
  2500. U.MD.D.click(this, obj);
  2501. }, [_dseiStudentDeskIconInfo[i]]),
  2502. "onclick": U.UF.C.closure(function (obj) {
  2503. //防止拖动图标即打开了桌面应用
  2504. U.MD.D.click(this, obj);
  2505. }, [_dseiStudentDeskIconInfo[i]])
  2506. }, _frag); //
  2507. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2508. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2509. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2510. }
  2511. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2512. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2513. _content = $$("div", {
  2514. className: "U_MD_D_KO",
  2515. "onmousedown": U.UF.C.closure(function (obj) {
  2516. //防止拖动图标即打开了桌面应用
  2517. U.MD.D.click(this, obj);
  2518. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2519. "onclick": U.UF.C.closure(function (obj) {
  2520. //防止拖动图标即打开了桌面应用
  2521. U.MD.D.click(this, obj);
  2522. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2523. }, _frag); //
  2524. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2525. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2526. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2527. }
  2528. } else if (_type == 2 && (_org == "7cc601a0-fafc-4116-a805-0adbacf7a38d")) {
  2529. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2530. _content = $$("div", {
  2531. className: "U_MD_D_KO",
  2532. "onmousedown": U.UF.C.closure(function (obj) {
  2533. //防止拖动图标即打开了桌面应用
  2534. U.MD.D.click(this, obj);
  2535. }, [_nsfxStudentDeskIconInfo[i]]),
  2536. "onclick": U.UF.C.closure(function (obj) {
  2537. //防止拖动图标即打开了桌面应用
  2538. U.MD.D.click(this, obj);
  2539. }, [_nsfxStudentDeskIconInfo[i]])
  2540. }, _frag); //
  2541. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2542. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2543. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2544. }
  2545. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2546. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2547. _content = $$("div", {
  2548. className: "U_MD_D_KO",
  2549. "onmousedown": U.UF.C.closure(function (obj) {
  2550. //防止拖动图标即打开了桌面应用
  2551. U.MD.D.click(this, obj);
  2552. }, [_stiaStudentDeskIconInfo[i]]),
  2553. "onclick": U.UF.C.closure(function (obj) {
  2554. //防止拖动图标即打开了桌面应用
  2555. U.MD.D.click(this, obj);
  2556. }, [_stiaStudentDeskIconInfo[i]])
  2557. }, _frag); //
  2558. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2559. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2560. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2561. }
  2562. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2563. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2564. _content = $$("div", {
  2565. className: "U_MD_D_KO",
  2566. "onmousedown": U.UF.C.closure(function (obj) {
  2567. //防止拖动图标即打开了桌面应用
  2568. U.MD.D.click(this, obj);
  2569. }, [_szdjgStudentDeskIconInfo[i]]),
  2570. "onclick": U.UF.C.closure(function (obj) {
  2571. //防止拖动图标即打开了桌面应用
  2572. U.MD.D.click(this, obj);
  2573. }, [_szdjgStudentDeskIconInfo[i]])
  2574. }, _frag); //
  2575. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2576. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2577. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2578. }
  2579. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2580. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2581. _content = $$("div", {
  2582. className: "U_MD_D_KO",
  2583. "onmousedown": U.UF.C.closure(function (obj) {
  2584. //防止拖动图标即打开了桌面应用
  2585. U.MD.D.click(this, obj);
  2586. }, [_x010607StudentDeskIconInfo[i]]),
  2587. "onclick": U.UF.C.closure(function (obj) {
  2588. //防止拖动图标即打开了桌面应用
  2589. U.MD.D.click(this, obj);
  2590. }, [_x010607StudentDeskIconInfo[i]])
  2591. }, _frag); //
  2592. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2593. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2594. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2595. }
  2596. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2597. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2598. _content = $$("div", {
  2599. className: "U_MD_D_KO",
  2600. "onmousedown": U.UF.C.closure(function (obj) {
  2601. //防止拖动图标即打开了桌面应用
  2602. U.MD.D.click(this, obj);
  2603. }, [_xhlyStudentDeskIconInfo[i]]),
  2604. "onclick": U.UF.C.closure(function (obj) {
  2605. //防止拖动图标即打开了桌面应用
  2606. U.MD.D.click(this, obj);
  2607. }, [_xhlyStudentDeskIconInfo[i]])
  2608. }, _frag); //
  2609. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2610. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2611. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2612. }
  2613. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2614. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2615. _content = $$("div", {
  2616. className: "U_MD_D_KO",
  2617. "onmousedown": U.UF.C.closure(function (obj) {
  2618. //防止拖动图标即打开了桌面应用
  2619. U.MD.D.click(this, obj);
  2620. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2621. "onclick": U.UF.C.closure(function (obj) {
  2622. //防止拖动图标即打开了桌面应用
  2623. U.MD.D.click(this, obj);
  2624. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2625. }, _frag); //
  2626. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2627. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2628. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2629. }
  2630. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2631. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2632. _content = $$("div", {
  2633. className: "U_MD_D_KO",
  2634. "onmousedown": U.UF.C.closure(function (obj) {
  2635. //防止拖动图标即打开了桌面应用
  2636. U.MD.D.click(this, obj);
  2637. }, [_x010503StudentDeskIconInfo[i]]),
  2638. "onclick": U.UF.C.closure(function (obj) {
  2639. //防止拖动图标即打开了桌面应用
  2640. U.MD.D.click(this, obj);
  2641. }, [_x010503StudentDeskIconInfo[i]])
  2642. }, _frag); //
  2643. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2644. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2645. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2646. }
  2647. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2648. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2649. _content = $$("div", {
  2650. className: "U_MD_D_KO",
  2651. "onmousedown": U.UF.C.closure(function (obj) {
  2652. //防止拖动图标即打开了桌面应用
  2653. U.MD.D.click(this, obj);
  2654. }, [_x010504StudentDeskIconInfo[i]]),
  2655. "onclick": U.UF.C.closure(function (obj) {
  2656. //防止拖动图标即打开了桌面应用
  2657. U.MD.D.click(this, obj);
  2658. }, [_x010504StudentDeskIconInfo[i]])
  2659. }, _frag); //
  2660. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2661. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2662. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2663. }
  2664. } else if (_type == 2 && (_oid == "8406b214-085f-11f0-b508-005056924926")) {
  2665. for (i = 0; i < _x010505StudentDeskIconInfo.length; i++) {
  2666. _content = $$("div", {
  2667. className: "U_MD_D_KO",
  2668. "onmousedown": U.UF.C.closure(function (obj) {
  2669. //防止拖动图标即打开了桌面应用
  2670. U.MD.D.click(this, obj);
  2671. }, [_x010505StudentDeskIconInfo[i]]),
  2672. "onclick": U.UF.C.closure(function (obj) {
  2673. //防止拖动图标即打开了桌面应用
  2674. U.MD.D.click(this, obj);
  2675. }, [_x010505StudentDeskIconInfo[i]])
  2676. }, _frag); //
  2677. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2678. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505StudentDeskIconInfo[i].style }, _iconcontent);
  2679. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505StudentDeskIconInfo[i].Name }, _iconcontent);
  2680. }
  2681. } else if (_type == 2 && (_oid == "bc239322-ffb2-11ef-b508-005056924926")) {
  2682. for (i = 0; i < _x010404StudentDeskIconInfo.length; i++) {
  2683. _content = $$("div", {
  2684. className: "U_MD_D_KO",
  2685. "onmousedown": U.UF.C.closure(function (obj) {
  2686. //防止拖动图标即打开了桌面应用
  2687. U.MD.D.click(this, obj);
  2688. }, [_x010404StudentDeskIconInfo[i]]),
  2689. "onclick": U.UF.C.closure(function (obj) {
  2690. //防止拖动图标即打开了桌面应用
  2691. U.MD.D.click(this, obj);
  2692. }, [_x010404StudentDeskIconInfo[i]])
  2693. }, _frag); //
  2694. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2695. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404StudentDeskIconInfo[i].style }, _iconcontent);
  2696. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404StudentDeskIconInfo[i].Name }, _iconcontent);
  2697. }
  2698. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2699. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2700. _content = $$("div", {
  2701. className: "U_MD_D_KO",
  2702. "onmousedown": U.UF.C.closure(function (obj) {
  2703. //防止拖动图标即打开了桌面应用
  2704. U.MD.D.click(this, obj);
  2705. }, [_x010204StudentDeskIconInfo[i]]),
  2706. "onclick": U.UF.C.closure(function (obj) {
  2707. //防止拖动图标即打开了桌面应用
  2708. U.MD.D.click(this, obj);
  2709. }, [_x010204StudentDeskIconInfo[i]])
  2710. }, _frag); //
  2711. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2712. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2713. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2714. }
  2715. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2716. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2717. _content = $$("div", {
  2718. className: "U_MD_D_KO",
  2719. "onmousedown": U.UF.C.closure(function (obj) {
  2720. //防止拖动图标即打开了桌面应用
  2721. U.MD.D.click(this, obj);
  2722. }, [_x320101StudentDeskIconInfo[i]]),
  2723. "onclick": U.UF.C.closure(function (obj) {
  2724. //防止拖动图标即打开了桌面应用
  2725. U.MD.D.click(this, obj);
  2726. }, [_x320101StudentDeskIconInfo[i]])
  2727. }, _frag); //
  2728. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2729. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2730. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2731. }
  2732. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2733. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2734. _content = $$("div", {
  2735. className: "U_MD_D_KO",
  2736. "onmousedown": U.UF.C.closure(function (obj) {
  2737. //防止拖动图标即打开了桌面应用
  2738. U.MD.D.click(this, obj);
  2739. }, [_trailStudentDeskIconInfo[i]]),
  2740. "onclick": U.UF.C.closure(function (obj) {
  2741. //防止拖动图标即打开了桌面应用
  2742. U.MD.D.click(this, obj);
  2743. }, [_trailStudentDeskIconInfo[i]])
  2744. }, _frag); //
  2745. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2746. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2747. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2748. }
  2749. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2750. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2751. _content = $$("div", {
  2752. className: "U_MD_D_KO",
  2753. "onmousedown": U.UF.C.closure(function (obj) {
  2754. //防止拖动图标即打开了桌面应用
  2755. U.MD.D.click(this, obj);
  2756. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2757. "onclick": U.UF.C.closure(function (obj) {
  2758. //防止拖动图标即打开了桌面应用
  2759. U.MD.D.click(this, obj);
  2760. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2761. }, _frag); //
  2762. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2763. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2764. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2765. }
  2766. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2767. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2768. _content = $$("div", {
  2769. className: "U_MD_D_KO",
  2770. "onmousedown": U.UF.C.closure(function (obj) {
  2771. //防止拖动图标即打开了桌面应用
  2772. U.MD.D.click(this, obj);
  2773. }, [_szsyStudentDeskIconInfo[i]]),
  2774. "onclick": U.UF.C.closure(function (obj) {
  2775. //防止拖动图标即打开了桌面应用
  2776. U.MD.D.click(this, obj);
  2777. }, [_szsyStudentDeskIconInfo[i]])
  2778. }, _frag); //
  2779. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2780. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2781. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2782. }
  2783. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2784. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2785. _content = $$("div", {
  2786. className: "U_MD_D_KO",
  2787. "onmousedown": U.UF.C.closure(function (obj) {
  2788. //防止拖动图标即打开了桌面应用
  2789. U.MD.D.click(this, obj);
  2790. }, [_x010608StudentDeskIconInfo[i]]),
  2791. "onclick": U.UF.C.closure(function (obj) {
  2792. //防止拖动图标即打开了桌面应用
  2793. U.MD.D.click(this, obj);
  2794. }, [_x010608StudentDeskIconInfo[i]])
  2795. }, _frag); //
  2796. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2797. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2798. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2799. }
  2800. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2801. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2802. _content = $$("div", {
  2803. className: "U_MD_D_KO",
  2804. "onmousedown": U.UF.C.closure(function (obj) {
  2805. //防止拖动图标即打开了桌面应用
  2806. U.MD.D.click(this, obj);
  2807. }, [_x010611StudentDeskIconInfo[i]]),
  2808. "onclick": U.UF.C.closure(function (obj) {
  2809. //防止拖动图标即打开了桌面应用
  2810. U.MD.D.click(this, obj);
  2811. }, [_x010611StudentDeskIconInfo[i]])
  2812. }, _frag); //
  2813. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2814. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2815. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2816. }
  2817. } else if (_type == 2 && (_oid == "86fa8cd7-00c2-11f0-b508-005056924926")) {
  2818. for (i = 0; i < _x010612StudentDeskIconInfo.length; i++) {
  2819. _content = $$("div", {
  2820. className: "U_MD_D_KO",
  2821. "onmousedown": U.UF.C.closure(function (obj) {
  2822. //防止拖动图标即打开了桌面应用
  2823. U.MD.D.click(this, obj);
  2824. }, [_x010612StudentDeskIconInfo[i]]),
  2825. "onclick": U.UF.C.closure(function (obj) {
  2826. //防止拖动图标即打开了桌面应用
  2827. U.MD.D.click(this, obj);
  2828. }, [_x010612StudentDeskIconInfo[i]])
  2829. }, _frag); //
  2830. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2831. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612StudentDeskIconInfo[i].style }, _iconcontent);
  2832. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612StudentDeskIconInfo[i].Name }, _iconcontent);
  2833. }
  2834. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2835. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2836. _content = $$("div", {
  2837. className: "U_MD_D_KO",
  2838. "onmousedown": U.UF.C.closure(function (obj) {
  2839. //防止拖动图标即打开了桌面应用
  2840. U.MD.D.click(this, obj);
  2841. }, [_tianyuantudentDeskIconInfo[i]]),
  2842. "onclick": U.UF.C.closure(function (obj) {
  2843. //防止拖动图标即打开了桌面应用
  2844. U.MD.D.click(this, obj);
  2845. }, [_tianyuantudentDeskIconInfo[i]])
  2846. }, _frag); //
  2847. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2848. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2849. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2850. }
  2851. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2852. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2853. _content = $$("div", {
  2854. className: "U_MD_D_KO",
  2855. "onmousedown": U.UF.C.closure(function (obj) {
  2856. //防止拖动图标即打开了桌面应用
  2857. U.MD.D.click(this, obj);
  2858. }, [_siesStudentDeskIconInfo[i]]),
  2859. "onclick": U.UF.C.closure(function (obj) {
  2860. //防止拖动图标即打开了桌面应用
  2861. U.MD.D.click(this, obj);
  2862. }, [_siesStudentDeskIconInfo[i]])
  2863. }, _frag); //
  2864. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2865. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2866. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2867. }
  2868. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2869. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2870. _content = $$("div", {
  2871. className: "U_MD_D_KO",
  2872. "onmousedown": U.UF.C.closure(function (obj) {
  2873. //防止拖动图标即打开了桌面应用
  2874. U.MD.D.click(this, obj);
  2875. }, [_guzmsStudentDeskIconInfo[i]]),
  2876. "onclick": U.UF.C.closure(function (obj) {
  2877. //防止拖动图标即打开了桌面应用
  2878. U.MD.D.click(this, obj);
  2879. }, [_guzmsStudentDeskIconInfo[i]])
  2880. }, _frag); //
  2881. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2882. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2883. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2884. }
  2885. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2886. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2887. _content = $$("div", {
  2888. className: "U_MD_D_KO",
  2889. "onmousedown": U.UF.C.closure(function (obj) {
  2890. //防止拖动图标即打开了桌面应用
  2891. U.MD.D.click(this, obj);
  2892. }, [_hkStudentDeskIconInfo[i]]),
  2893. "onclick": U.UF.C.closure(function (obj) {
  2894. //防止拖动图标即打开了桌面应用
  2895. U.MD.D.click(this, obj);
  2896. }, [_hkStudentDeskIconInfo[i]])
  2897. }, _frag); //
  2898. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2899. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2900. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2901. }
  2902. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2903. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2904. _content = $$("div", {
  2905. className: "U_MD_D_KO",
  2906. "onmousedown": U.UF.C.closure(function (obj) {
  2907. //防止拖动图标即打开了桌面应用
  2908. U.MD.D.click(this, obj);
  2909. }, [_hkaceStudentDeskIconInfo[i]]),
  2910. "onclick": U.UF.C.closure(function (obj) {
  2911. //防止拖动图标即打开了桌面应用
  2912. U.MD.D.click(this, obj);
  2913. }, [_hkaceStudentDeskIconInfo[i]])
  2914. }, _frag); //
  2915. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2916. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2917. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2918. }
  2919. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2920. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2921. _content = $$("div", {
  2922. className: "U_MD_D_KO",
  2923. "onmousedown": U.UF.C.closure(function (obj) {
  2924. //防止拖动图标即打开了桌面应用
  2925. U.MD.D.click(this, obj);
  2926. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2927. "onclick": U.UF.C.closure(function (obj) {
  2928. //防止拖动图标即打开了桌面应用
  2929. U.MD.D.click(this, obj);
  2930. }, [_BSDNSstudentDesktopIconInfo[i]])
  2931. }, _frag); //
  2932. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2933. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2934. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2935. }
  2936. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2937. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2938. _content = $$("div", {
  2939. className: "U_MD_D_KO",
  2940. "onmousedown": U.UF.C.closure(function (obj) {
  2941. //防止拖动图标即打开了桌面应用
  2942. U.MD.D.click(this, obj);
  2943. }, [_cocobizStudentDeskIconInfo[i]]),
  2944. "onclick": U.UF.C.closure(function (obj) {
  2945. //防止拖动图标即打开了桌面应用
  2946. U.MD.D.click(this, obj);
  2947. }, [_cocobizStudentDeskIconInfo[i]])
  2948. }, _frag); //
  2949. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2950. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2951. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2952. }
  2953. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2954. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2955. _content = $$("div", {
  2956. className: "U_MD_D_KO",
  2957. "onmousedown": U.UF.C.closure(function (obj) {
  2958. //防止拖动图标即打开了桌面应用
  2959. U.MD.D.click(this, obj);
  2960. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2961. "onclick": U.UF.C.closure(function (obj) {
  2962. //防止拖动图标即打开了桌面应用
  2963. U.MD.D.click(this, obj);
  2964. }, [_xxzjkyStudentDeskIconInfo[i]])
  2965. }, _frag); //
  2966. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2967. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2968. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2969. }
  2970. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2971. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2972. _content = $$("div", {
  2973. className: "U_MD_D_KO",
  2974. "onmousedown": U.UF.C.closure(function (obj) {
  2975. //防止拖动图标即打开了桌面应用
  2976. U.MD.D.click(this, obj);
  2977. }, [_studentDesktopIconInfo[i]]),
  2978. "onclick": U.UF.C.closure(function (obj) {
  2979. //防止拖动图标即打开了桌面应用
  2980. U.MD.D.click(this, obj);
  2981. }, [_studentDesktopIconInfo[i]])
  2982. }, _frag); //
  2983. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2984. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2985. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2986. }
  2987. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2988. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2989. _content = $$("div", {
  2990. className: "U_MD_D_KO",
  2991. "onmousedown": U.UF.C.closure(function (obj) {
  2992. //防止拖动图标即打开了桌面应用
  2993. U.MD.D.click(this, obj);
  2994. }, [_tcStudentDeskIconInfo[i]]),
  2995. "onclick": U.UF.C.closure(function (obj) {
  2996. //防止拖动图标即打开了桌面应用
  2997. U.MD.D.click(this, obj);
  2998. }, [_tcStudentDeskIconInfo[i]])
  2999. }, _frag); //
  3000. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3001. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  3002. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  3003. }
  3004. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  3005. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  3006. _content = $$("div", {
  3007. className: "U_MD_D_KO",
  3008. "onmousedown": U.UF.C.closure(function (obj) {
  3009. //防止拖动图标即打开了桌面应用
  3010. U.MD.D.click(this, obj);
  3011. }, [_szscStudentDeskIconInfo[i]]),
  3012. "onclick": U.UF.C.closure(function (obj) {
  3013. //防止拖动图标即打开了桌面应用
  3014. U.MD.D.click(this, obj);
  3015. }, [_szscStudentDeskIconInfo[i]])
  3016. }, _frag); //
  3017. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3018. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  3019. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  3020. }
  3021. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  3022. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  3023. _content = $$("div", {
  3024. className: "U_MD_D_KO",
  3025. "onmousedown": U.UF.C.closure(function (obj) {
  3026. //防止拖动图标即打开了桌面应用
  3027. U.MD.D.click(this, obj);
  3028. }, [_studentDesktopIconInfo3[i]]),
  3029. "onclick": U.UF.C.closure(function (obj) {
  3030. //防止拖动图标即打开了桌面应用
  3031. U.MD.D.click(this, obj);
  3032. }, [_studentDesktopIconInfo3[i]])
  3033. }, _frag); //
  3034. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3035. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  3036. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  3037. }
  3038. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  3039. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  3040. _content = $$("div", {
  3041. className: "U_MD_D_KO",
  3042. "onmousedown": U.UF.C.closure(function (obj) {
  3043. //防止拖动图标即打开了桌面应用
  3044. U.MD.D.click(this, obj);
  3045. }, [_studentDesktopIconInfo2[i]]),
  3046. "onclick": U.UF.C.closure(function (obj) {
  3047. //防止拖动图标即打开了桌面应用
  3048. U.MD.D.click(this, obj);
  3049. }, [_studentDesktopIconInfo2[i]])
  3050. }, _frag); //
  3051. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3052. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  3053. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  3054. }
  3055. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  3056. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  3057. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  3058. continue
  3059. }
  3060. _content = $$("div", {
  3061. className: "U_MD_D_KO",
  3062. "onmousedown": U.UF.C.closure(function (obj) {
  3063. //防止拖动图标即打开了桌面应用
  3064. U.MD.D.click(this, obj);
  3065. }, [_wanketeacherDesktopIconInfo[i]]),
  3066. "onclick": U.UF.C.closure(function (obj) {
  3067. //防止拖动图标即打开了桌面应用
  3068. U.MD.D.click(this, obj);
  3069. }, [_wanketeacherDesktopIconInfo[i]])
  3070. }, _frag); //
  3071. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3072. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  3073. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  3074. }
  3075. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  3076. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  3077. _content = $$("div", {
  3078. className: "U_MD_D_KO",
  3079. "onmousedown": U.UF.C.closure(function (obj) {
  3080. //防止拖动图标即打开了桌面应用
  3081. U.MD.D.click(this, obj);
  3082. }, [_wankeAdminDesktopIconInfo[i]]),
  3083. "onclick": U.UF.C.closure(function (obj) {
  3084. //防止拖动图标即打开了桌面应用
  3085. U.MD.D.click(this, obj);
  3086. }, [_wankeAdminDesktopIconInfo[i]])
  3087. }, _frag); //
  3088. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3089. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  3090. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  3091. }
  3092. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  3093. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  3094. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3095. continue
  3096. }
  3097. _content = $$("div", {
  3098. className: "U_MD_D_KO",
  3099. "onmousedown": U.UF.C.closure(function (obj) {
  3100. //防止拖动图标即打开了桌面应用
  3101. U.MD.D.click(this, obj);
  3102. }, [_scnuaiTeacherDeskIconInfo[i]]),
  3103. "onclick": U.UF.C.closure(function (obj) {
  3104. //防止拖动图标即打开了桌面应用
  3105. U.MD.D.click(this, obj);
  3106. }, [_scnuaiTeacherDeskIconInfo[i]])
  3107. }, _frag); //
  3108. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3109. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3110. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3111. }
  3112. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  3113. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  3114. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3115. continue
  3116. }
  3117. _content = $$("div", {
  3118. className: "U_MD_D_KO",
  3119. "onmousedown": U.UF.C.closure(function (obj) {
  3120. //防止拖动图标即打开了桌面应用
  3121. U.MD.D.click(this, obj);
  3122. }, [_BSDNSteacherDesktopIconInfo[i]]),
  3123. "onclick": U.UF.C.closure(function (obj) {
  3124. //防止拖动图标即打开了桌面应用
  3125. U.MD.D.click(this, obj);
  3126. }, [_BSDNSteacherDesktopIconInfo[i]])
  3127. }, _frag); //
  3128. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3129. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  3130. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  3131. }
  3132. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  3133. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  3134. _content = $$("div", {
  3135. className: "U_MD_D_KO",
  3136. "onmousedown": U.UF.C.closure(function (obj) {
  3137. //防止拖动图标即打开了桌面应用
  3138. U.MD.D.click(this, obj);
  3139. }, [_scnuaiAdminDeskIconInfo[i]]),
  3140. "onclick": U.UF.C.closure(function (obj) {
  3141. //防止拖动图标即打开了桌面应用
  3142. U.MD.D.click(this, obj);
  3143. }, [_scnuaiAdminDeskIconInfo[i]])
  3144. }, _frag); //
  3145. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3146. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3147. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3148. }
  3149. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3150. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3151. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3152. continue
  3153. }
  3154. _content = $$("div", {
  3155. className: "U_MD_D_KO",
  3156. "onmousedown": U.UF.C.closure(function (obj) {
  3157. //防止拖动图标即打开了桌面应用
  3158. U.MD.D.click(this, obj);
  3159. }, [_jccssylTeacherDeskIconInfo[i]]),
  3160. "onclick": U.UF.C.closure(function (obj) {
  3161. //防止拖动图标即打开了桌面应用
  3162. U.MD.D.click(this, obj);
  3163. }, [_jccssylTeacherDeskIconInfo[i]])
  3164. }, _frag); //
  3165. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3166. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3167. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3168. }
  3169. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3170. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3171. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3172. continue
  3173. }
  3174. _content = $$("div", {
  3175. className: "U_MD_D_KO",
  3176. "onmousedown": U.UF.C.closure(function (obj) {
  3177. //防止拖动图标即打开了桌面应用
  3178. U.MD.D.click(this, obj);
  3179. }, [_caleTeacherDeskIconInfo[i]]),
  3180. "onclick": U.UF.C.closure(function (obj) {
  3181. //防止拖动图标即打开了桌面应用
  3182. U.MD.D.click(this, obj);
  3183. }, [_caleTeacherDeskIconInfo[i]])
  3184. }, _frag); //
  3185. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3186. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3187. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3188. }
  3189. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3190. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3191. _content = $$("div", {
  3192. className: "U_MD_D_KO",
  3193. "onmousedown": U.UF.C.closure(function (obj) {
  3194. //防止拖动图标即打开了桌面应用
  3195. U.MD.D.click(this, obj);
  3196. }, [_tpcOrganizerDeskIconInfo[i]]),
  3197. "onclick": U.UF.C.closure(function (obj) {
  3198. //防止拖动图标即打开了桌面应用
  3199. U.MD.D.click(this, obj);
  3200. }, [_tpcOrganizerDeskIconInfo[i]])
  3201. }, _frag); //
  3202. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3203. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3204. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3205. }
  3206. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3207. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3208. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3209. continue
  3210. }
  3211. _content = $$("div", {
  3212. className: "U_MD_D_KO",
  3213. "onmousedown": U.UF.C.closure(function (obj) {
  3214. //防止拖动图标即打开了桌面应用
  3215. U.MD.D.click(this, obj);
  3216. }, [_tpcTeacherDeskIconInfo[i]]),
  3217. "onclick": U.UF.C.closure(function (obj) {
  3218. //防止拖动图标即打开了桌面应用
  3219. U.MD.D.click(this, obj);
  3220. }, [_tpcTeacherDeskIconInfo[i]])
  3221. }, _frag); //
  3222. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3223. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3224. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3225. }
  3226. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3227. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3228. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3229. continue
  3230. }
  3231. _content = $$("div", {
  3232. className: "U_MD_D_KO",
  3233. "onmousedown": U.UF.C.closure(function (obj) {
  3234. //防止拖动图标即打开了桌面应用
  3235. U.MD.D.click(this, obj);
  3236. }, [_teacherDesktopIconInfo2[i]]),
  3237. "onclick": U.UF.C.closure(function (obj) {
  3238. //防止拖动图标即打开了桌面应用
  3239. U.MD.D.click(this, obj);
  3240. }, [_teacherDesktopIconInfo2[i]])
  3241. }, _frag); //
  3242. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3243. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3244. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3245. }
  3246. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3247. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3248. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3249. continue
  3250. }
  3251. _content = $$("div", {
  3252. className: "U_MD_D_KO",
  3253. "onmousedown": U.UF.C.closure(function (obj) {
  3254. //防止拖动图标即打开了桌面应用
  3255. U.MD.D.click(this, obj);
  3256. }, [_thuioeTeacherDeskIconInfo[i]]),
  3257. "onclick": U.UF.C.closure(function (obj) {
  3258. //防止拖动图标即打开了桌面应用
  3259. U.MD.D.click(this, obj);
  3260. }, [_thuioeTeacherDeskIconInfo[i]])
  3261. }, _frag); //
  3262. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3263. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3264. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3265. }
  3266. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3267. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3268. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3269. continue
  3270. }
  3271. _content = $$("div", {
  3272. className: "U_MD_D_KO",
  3273. "onmousedown": U.UF.C.closure(function (obj) {
  3274. //防止拖动图标即打开了桌面应用
  3275. U.MD.D.click(this, obj);
  3276. }, [_lotechTeacherDeskIconInfo[i]]),
  3277. "onclick": U.UF.C.closure(function (obj) {
  3278. //防止拖动图标即打开了桌面应用
  3279. U.MD.D.click(this, obj);
  3280. }, [_lotechTeacherDeskIconInfo[i]])
  3281. }, _frag); //
  3282. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3283. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3284. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3285. }//
  3286. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3287. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3288. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3289. continue
  3290. }
  3291. _content = $$("div", {
  3292. className: "U_MD_D_KO",
  3293. "onmousedown": U.UF.C.closure(function (obj) {
  3294. //防止拖动图标即打开了桌面应用
  3295. U.MD.D.click(this, obj);
  3296. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3297. "onclick": U.UF.C.closure(function (obj) {
  3298. //防止拖动图标即打开了桌面应用
  3299. U.MD.D.click(this, obj);
  3300. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3301. }, _frag); //
  3302. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3303. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3304. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3305. }
  3306. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3307. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3308. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3309. continue
  3310. }
  3311. _content = $$("div", {
  3312. className: "U_MD_D_KO",
  3313. "onmousedown": U.UF.C.closure(function (obj) {
  3314. //防止拖动图标即打开了桌面应用
  3315. U.MD.D.click(this, obj);
  3316. }, [_siesTeacherDeskIconInfo[i]]),
  3317. "onclick": U.UF.C.closure(function (obj) {
  3318. //防止拖动图标即打开了桌面应用
  3319. U.MD.D.click(this, obj);
  3320. }, [_siesTeacherDeskIconInfo[i]])
  3321. }, _frag); //
  3322. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3323. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3324. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3325. }
  3326. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3327. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3328. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3329. continue
  3330. }
  3331. _content = $$("div", {
  3332. className: "U_MD_D_KO",
  3333. "onmousedown": U.UF.C.closure(function (obj) {
  3334. //防止拖动图标即打开了桌面应用
  3335. U.MD.D.click(this, obj);
  3336. }, [_guzmsTeacherDeskIconInfo[i]]),
  3337. "onclick": U.UF.C.closure(function (obj) {
  3338. //防止拖动图标即打开了桌面应用
  3339. U.MD.D.click(this, obj);
  3340. }, [_guzmsTeacherDeskIconInfo[i]])
  3341. }, _frag); //
  3342. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3343. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3344. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3345. }
  3346. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3347. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3348. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3349. continue
  3350. }
  3351. _content = $$("div", {
  3352. className: "U_MD_D_KO",
  3353. "onmousedown": U.UF.C.closure(function (obj) {
  3354. //防止拖动图标即打开了桌面应用
  3355. U.MD.D.click(this, obj);
  3356. }, [_longhuaTeacherDeskIconInfo[i]]),
  3357. "onclick": U.UF.C.closure(function (obj) {
  3358. //防止拖动图标即打开了桌面应用
  3359. U.MD.D.click(this, obj);
  3360. }, [_longhuaTeacherDeskIconInfo[i]])
  3361. }, _frag); //
  3362. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3363. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3364. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3365. }
  3366. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3367. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3368. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3369. continue
  3370. }
  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. }, [_ytyTeacherDeskIconInfo[i]]),
  3377. "onclick": U.UF.C.closure(function (obj) {
  3378. //防止拖动图标即打开了桌面应用
  3379. U.MD.D.click(this, obj);
  3380. }, [_ytyTeacherDeskIconInfo[i]])
  3381. }, _frag); //
  3382. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3383. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3384. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3385. }
  3386. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3387. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3388. if(_role === 0 && _yunhaiTeacherDeskIconInfo[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. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3397. "onclick": U.UF.C.closure(function (obj) {
  3398. //防止拖动图标即打开了桌面应用
  3399. U.MD.D.click(this, obj);
  3400. }, [_yunhaiTeacherDeskIconInfo[i]])
  3401. }, _frag); //
  3402. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3403. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3404. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3405. } //_hkStudentDeskIconInfo
  3406. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3407. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3408. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[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. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3417. "onclick": U.UF.C.closure(function (obj) {
  3418. //防止拖动图标即打开了桌面应用
  3419. U.MD.D.click(this, obj);
  3420. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3421. }, _frag); //
  3422. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3423. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3424. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3425. }
  3426. } else if ((_type == 1 || _type == 4) && (_oid == "91796dfb-8791-11ef-9b30-005056b86db5")) {
  3427. for (i = 0; i < _ricohTeacherDeskIconInfo.length; i++) {
  3428. if(_role === 0 && _ricohTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3429. continue
  3430. }
  3431. _content = $$("div", {
  3432. className: "U_MD_D_KO",
  3433. "onmousedown": U.UF.C.closure(function (obj) {
  3434. //防止拖动图标即打开了桌面应用
  3435. U.MD.D.click(this, obj);
  3436. }, [_ricohTeacherDeskIconInfo[i]]),
  3437. "onclick": U.UF.C.closure(function (obj) {
  3438. //防止拖动图标即打开了桌面应用
  3439. U.MD.D.click(this, obj);
  3440. }, [_ricohTeacherDeskIconInfo[i]])
  3441. }, _frag); //
  3442. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3443. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ricohTeacherDeskIconInfo[i].style }, _iconcontent);
  3444. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ricohTeacherDeskIconInfo[i].Name }, _iconcontent);
  3445. }
  3446. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3447. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3448. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3449. continue
  3450. }
  3451. _content = $$("div", {
  3452. className: "U_MD_D_KO",
  3453. "onmousedown": U.UF.C.closure(function (obj) {
  3454. //防止拖动图标即打开了桌面应用
  3455. U.MD.D.click(this, obj);
  3456. }, [_hkTeacherDeskIconInfo[i]]),
  3457. "onclick": U.UF.C.closure(function (obj) {
  3458. //防止拖动图标即打开了桌面应用
  3459. U.MD.D.click(this, obj);
  3460. }, [_hkTeacherDeskIconInfo[i]])
  3461. }, _frag); //
  3462. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3463. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3464. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3465. }
  3466. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3467. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3468. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3469. continue
  3470. }
  3471. _content = $$("div", {
  3472. className: "U_MD_D_KO",
  3473. "onmousedown": U.UF.C.closure(function (obj) {
  3474. //防止拖动图标即打开了桌面应用
  3475. U.MD.D.click(this, obj);
  3476. }, [_hkaceTeacherDeskIconInfo[i]]),
  3477. "onclick": U.UF.C.closure(function (obj) {
  3478. //防止拖动图标即打开了桌面应用
  3479. U.MD.D.click(this, obj);
  3480. }, [_hkaceTeacherDeskIconInfo[i]])
  3481. }, _frag); //
  3482. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3483. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3484. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3485. }
  3486. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3487. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3488. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3489. continue
  3490. }
  3491. _content = $$("div", {
  3492. className: "U_MD_D_KO",
  3493. "onmousedown": U.UF.C.closure(function (obj) {
  3494. //防止拖动图标即打开了桌面应用
  3495. U.MD.D.click(this, obj);
  3496. }, [_cocobizTeacherDeskIconInfo[i]]),
  3497. "onclick": U.UF.C.closure(function (obj) {
  3498. //防止拖动图标即打开了桌面应用
  3499. U.MD.D.click(this, obj);
  3500. }, [_cocobizTeacherDeskIconInfo[i]])
  3501. }, _frag); //
  3502. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3503. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3504. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3505. }
  3506. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3507. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3508. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3509. continue
  3510. }
  3511. _content = $$("div", {
  3512. className: "U_MD_D_KO",
  3513. "onmousedown": U.UF.C.closure(function (obj) {
  3514. //防止拖动图标即打开了桌面应用
  3515. U.MD.D.click(this, obj);
  3516. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3517. "onclick": U.UF.C.closure(function (obj) {
  3518. //防止拖动图标即打开了桌面应用
  3519. U.MD.D.click(this, obj);
  3520. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3521. }, _frag); //
  3522. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3523. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3524. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3525. }
  3526. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3527. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  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. }, [_gdjgAdminDeskIconInfo[i]]),
  3534. "onclick": U.UF.C.closure(function (obj) {
  3535. //防止拖动图标即打开了桌面应用
  3536. U.MD.D.click(this, obj);
  3537. }, [_gdjgAdminDeskIconInfo[i]])
  3538. }, _frag); //
  3539. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3540. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3541. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3542. }
  3543. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3544. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3545. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  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. }, [_gdjgTeacherDeskIconInfo[i]]),
  3554. "onclick": U.UF.C.closure(function (obj) {
  3555. //防止拖动图标即打开了桌面应用
  3556. U.MD.D.click(this, obj);
  3557. }, [_gdjgTeacherDeskIconInfo[i]])
  3558. }, _frag); //
  3559. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3560. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3561. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3562. }
  3563. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3564. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3565. if(_role === 0 && _szherTeacherDeskIconInfo[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. }, [_szherTeacherDeskIconInfo[i]]),
  3574. "onclick": U.UF.C.closure(function (obj) {
  3575. //防止拖动图标即打开了桌面应用
  3576. U.MD.D.click(this, obj);
  3577. }, [_szherTeacherDeskIconInfo[i]])
  3578. }, _frag); //
  3579. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3580. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3581. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3582. }
  3583. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3584. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3585. _content = $$("div", {
  3586. className: "U_MD_D_KO",
  3587. "onmousedown": U.UF.C.closure(function (obj) {
  3588. //防止拖动图标即打开了桌面应用
  3589. U.MD.D.click(this, obj);
  3590. }, [_heyuannAdminDeskIconInfo[i]]),
  3591. "onclick": U.UF.C.closure(function (obj) {
  3592. //防止拖动图标即打开了桌面应用
  3593. U.MD.D.click(this, obj);
  3594. }, [_heyuannAdminDeskIconInfo[i]])
  3595. }, _frag); //
  3596. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3597. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3598. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3599. }
  3600. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3601. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3602. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3603. continue
  3604. }
  3605. _content = $$("div", {
  3606. className: "U_MD_D_KO",
  3607. "onmousedown": U.UF.C.closure(function (obj) {
  3608. //防止拖动图标即打开了桌面应用
  3609. U.MD.D.click(this, obj);
  3610. }, [_heyuanTeacherDeskIconInfo[i]]),
  3611. "onclick": U.UF.C.closure(function (obj) {
  3612. //防止拖动图标即打开了桌面应用
  3613. U.MD.D.click(this, obj);
  3614. }, [_heyuanTeacherDeskIconInfo[i]])
  3615. }, _frag); //
  3616. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3617. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3618. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3619. } //
  3620. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3621. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3622. _content = $$("div", {
  3623. className: "U_MD_D_KO",
  3624. "onmousedown": U.UF.C.closure(function (obj) {
  3625. //防止拖动图标即打开了桌面应用
  3626. U.MD.D.click(this, obj);
  3627. }, [_dseiAdminDeskIconInfo[i]]),
  3628. "onclick": U.UF.C.closure(function (obj) {
  3629. //防止拖动图标即打开了桌面应用
  3630. U.MD.D.click(this, obj);
  3631. }, [_dseiAdminDeskIconInfo[i]])
  3632. }, _frag); //
  3633. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3634. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3635. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3636. }
  3637. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3638. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3639. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3640. continue
  3641. }
  3642. _content = $$("div", {
  3643. className: "U_MD_D_KO",
  3644. "onmousedown": U.UF.C.closure(function (obj) {
  3645. //防止拖动图标即打开了桌面应用
  3646. U.MD.D.click(this, obj);
  3647. }, [_dseiTeacherDeskIconInfo[i]]),
  3648. "onclick": U.UF.C.closure(function (obj) {
  3649. //防止拖动图标即打开了桌面应用
  3650. U.MD.D.click(this, obj);
  3651. }, [_dseiTeacherDeskIconInfo[i]])
  3652. }, _frag); //
  3653. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3654. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3655. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3656. } //
  3657. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3658. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3659. _content = $$("div", {
  3660. className: "U_MD_D_KO",
  3661. "onmousedown": U.UF.C.closure(function (obj) {
  3662. //防止拖动图标即打开了桌面应用
  3663. U.MD.D.click(this, obj);
  3664. }, [_chjyjAdminDeskIconInfo[i]]),
  3665. "onclick": U.UF.C.closure(function (obj) {
  3666. //防止拖动图标即打开了桌面应用
  3667. U.MD.D.click(this, obj);
  3668. }, [_chjyjAdminDeskIconInfo[i]])
  3669. }, _frag); //
  3670. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3671. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3672. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3673. }//
  3674. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3675. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3676. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3677. continue
  3678. }
  3679. _content = $$("div", {
  3680. className: "U_MD_D_KO",
  3681. "onmousedown": U.UF.C.closure(function (obj) {
  3682. //防止拖动图标即打开了桌面应用
  3683. U.MD.D.click(this, obj);
  3684. }, [_chjyjTeacherDeskIconInfo[i]]),
  3685. "onclick": U.UF.C.closure(function (obj) {
  3686. //防止拖动图标即打开了桌面应用
  3687. U.MD.D.click(this, obj);
  3688. }, [_chjyjTeacherDeskIconInfo[i]])
  3689. }, _frag); //
  3690. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3691. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3692. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3693. }
  3694. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3695. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3696. _content = $$("div", {
  3697. className: "U_MD_D_KO",
  3698. "onmousedown": U.UF.C.closure(function (obj) {
  3699. //防止拖动图标即打开了桌面应用
  3700. U.MD.D.click(this, obj);
  3701. }, [_szjkyAdminDeskIconInfo[i]]),
  3702. "onclick": U.UF.C.closure(function (obj) {
  3703. //防止拖动图标即打开了桌面应用
  3704. U.MD.D.click(this, obj);
  3705. }, [_szjkyAdminDeskIconInfo[i]])
  3706. }, _frag); //
  3707. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3708. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3709. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3710. }//
  3711. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3712. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3713. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3714. continue
  3715. }
  3716. _content = $$("div", {
  3717. className: "U_MD_D_KO",
  3718. "onmousedown": U.UF.C.closure(function (obj) {
  3719. //防止拖动图标即打开了桌面应用
  3720. U.MD.D.click(this, obj);
  3721. }, [_szjkyTeacherDeskIconInfo[i]]),
  3722. "onclick": U.UF.C.closure(function (obj) {
  3723. //防止拖动图标即打开了桌面应用
  3724. U.MD.D.click(this, obj);
  3725. }, [_szjkyTeacherDeskIconInfo[i]])
  3726. }, _frag); //
  3727. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3728. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3729. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3730. }
  3731. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3732. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3733. _content = $$("div", {
  3734. className: "U_MD_D_KO",
  3735. "onmousedown": U.UF.C.closure(function (obj) {
  3736. //防止拖动图标即打开了桌面应用
  3737. U.MD.D.click(this, obj);
  3738. }, [_x020201AdminDeskIconInfo[i]]),
  3739. "onclick": U.UF.C.closure(function (obj) {
  3740. //防止拖动图标即打开了桌面应用
  3741. U.MD.D.click(this, obj);
  3742. }, [_x020201AdminDeskIconInfo[i]])
  3743. }, _frag); //
  3744. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3745. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3746. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3747. }//
  3748. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3749. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3750. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3751. continue
  3752. }
  3753. _content = $$("div", {
  3754. className: "U_MD_D_KO",
  3755. "onmousedown": U.UF.C.closure(function (obj) {
  3756. //防止拖动图标即打开了桌面应用
  3757. U.MD.D.click(this, obj);
  3758. }, [_x020201TeacherDeskIconInfo[i]]),
  3759. "onclick": U.UF.C.closure(function (obj) {
  3760. //防止拖动图标即打开了桌面应用
  3761. U.MD.D.click(this, obj);
  3762. }, [_x020201TeacherDeskIconInfo[i]])
  3763. }, _frag); //
  3764. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3765. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3766. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3767. }
  3768. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3769. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3770. _content = $$("div", {
  3771. className: "U_MD_D_KO",
  3772. "onmousedown": U.UF.C.closure(function (obj) {
  3773. //防止拖动图标即打开了桌面应用
  3774. U.MD.D.click(this, obj);
  3775. }, [_SCNUETAdminDeskIconInfo[i]]),
  3776. "onclick": U.UF.C.closure(function (obj) {
  3777. //防止拖动图标即打开了桌面应用
  3778. U.MD.D.click(this, obj);
  3779. }, [_SCNUETAdminDeskIconInfo[i]])
  3780. }, _frag); //
  3781. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3782. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3783. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3784. }//
  3785. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3786. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3787. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3788. continue
  3789. }
  3790. _content = $$("div", {
  3791. className: "U_MD_D_KO",
  3792. "onmousedown": U.UF.C.closure(function (obj) {
  3793. //防止拖动图标即打开了桌面应用
  3794. U.MD.D.click(this, obj);
  3795. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3796. "onclick": U.UF.C.closure(function (obj) {
  3797. //防止拖动图标即打开了桌面应用
  3798. U.MD.D.click(this, obj);
  3799. }, [_SCNUETTeacherDeskIconInfo[i]])
  3800. }, _frag); //
  3801. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3802. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3803. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3804. }
  3805. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3806. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3807. _content = $$("div", {
  3808. className: "U_MD_D_KO",
  3809. "onmousedown": U.UF.C.closure(function (obj) {
  3810. //防止拖动图标即打开了桌面应用
  3811. U.MD.D.click(this, obj);
  3812. }, [_futianAdminDeskIconInfo[i]]),
  3813. "onclick": U.UF.C.closure(function (obj) {
  3814. //防止拖动图标即打开了桌面应用
  3815. U.MD.D.click(this, obj);
  3816. }, [_futianAdminDeskIconInfo[i]])
  3817. }, _frag); //
  3818. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3819. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3820. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3821. }
  3822. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3823. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3824. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3825. continue
  3826. }
  3827. _content = $$("div", {
  3828. className: "U_MD_D_KO",
  3829. "onmousedown": U.UF.C.closure(function (obj) {
  3830. //防止拖动图标即打开了桌面应用
  3831. U.MD.D.click(this, obj);
  3832. }, [_futianTeacherDeskIconInfo[i]]),
  3833. "onclick": U.UF.C.closure(function (obj) {
  3834. //防止拖动图标即打开了桌面应用
  3835. U.MD.D.click(this, obj);
  3836. }, [_futianTeacherDeskIconInfo[i]])
  3837. }, _frag); //
  3838. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3839. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3840. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3841. }
  3842. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3843. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3844. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3845. continue
  3846. }
  3847. _content = $$("div", {
  3848. className: "U_MD_D_KO",
  3849. "onmousedown": U.UF.C.closure(function (obj) {
  3850. //防止拖动图标即打开了桌面应用
  3851. U.MD.D.click(this, obj);
  3852. }, [_MingdeTeacherDeskIcon[i]]),
  3853. "onclick": U.UF.C.closure(function (obj) {
  3854. //防止拖动图标即打开了桌面应用
  3855. U.MD.D.click(this, obj);
  3856. }, [_MingdeTeacherDeskIcon[i]])
  3857. }, _frag); //
  3858. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3859. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3860. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3861. }
  3862. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3863. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3864. _content = $$("div", {
  3865. className: "U_MD_D_KO",
  3866. "onmousedown": U.UF.C.closure(function (obj) {
  3867. //防止拖动图标即打开了桌面应用
  3868. U.MD.D.click(this, obj);
  3869. }, [_lhsAdminDesktopIconInfo[i]]),
  3870. "onclick": U.UF.C.closure(function (obj) {
  3871. //防止拖动图标即打开了桌面应用
  3872. U.MD.D.click(this, obj);
  3873. }, [_lhsAdminDesktopIconInfo[i]])
  3874. }, _frag); //
  3875. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3876. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3877. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3878. }
  3879. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3880. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3881. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3882. continue
  3883. }
  3884. _content = $$("div", {
  3885. className: "U_MD_D_KO",
  3886. "onmousedown": U.UF.C.closure(function (obj) {
  3887. //防止拖动图标即打开了桌面应用
  3888. U.MD.D.click(this, obj);
  3889. }, [_lhsteacherDesktopIconInfo[i]]),
  3890. "onclick": U.UF.C.closure(function (obj) {
  3891. //防止拖动图标即打开了桌面应用
  3892. U.MD.D.click(this, obj);
  3893. }, [_lhsteacherDesktopIconInfo[i]])
  3894. }, _frag); //
  3895. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3896. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3897. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3898. }
  3899. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3900. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3901. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3902. continue
  3903. }
  3904. _content = $$("div", {
  3905. className: "U_MD_D_KO",
  3906. "onmousedown": U.UF.C.closure(function (obj) {
  3907. //防止拖动图标即打开了桌面应用
  3908. U.MD.D.click(this, obj);
  3909. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3910. "onclick": U.UF.C.closure(function (obj) {
  3911. //防止拖动图标即打开了桌面应用
  3912. U.MD.D.click(this, obj);
  3913. }, [_zhoujiateacherDesktopIconInfo[i]])
  3914. }, _frag); //
  3915. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3916. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3917. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3918. }
  3919. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3920. for (i = 0; i < _hanDeskIcon.length; i++) {
  3921. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3922. continue
  3923. }
  3924. _content = $$("div", {
  3925. className: "U_MD_D_KO",
  3926. "onmousedown": U.UF.C.closure(function (obj) {
  3927. //防止拖动图标即打开了桌面应用
  3928. U.MD.D.click(this, obj);
  3929. }, [_hanDeskIcon[i]]),
  3930. "onclick": U.UF.C.closure(function (obj) {
  3931. //防止拖动图标即打开了桌面应用
  3932. U.MD.D.click(this, obj);
  3933. }, [_hanDeskIcon[i]])
  3934. }, _frag); //
  3935. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3936. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3937. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3938. }
  3939. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3940. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3941. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3942. continue
  3943. }
  3944. _content = $$("div", {
  3945. className: "U_MD_D_KO",
  3946. "onmousedown": U.UF.C.closure(function (obj) {
  3947. //防止拖动图标即打开了桌面应用
  3948. U.MD.D.click(this, obj);
  3949. }, [_orgStemDeskIcon[i]]),
  3950. "onclick": U.UF.C.closure(function (obj) {
  3951. //防止拖动图标即打开了桌面应用
  3952. U.MD.D.click(this, obj);
  3953. }, [_orgStemDeskIcon[i]])
  3954. }, _frag); //
  3955. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3956. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3957. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3958. }
  3959. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3960. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3961. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3962. continue
  3963. }
  3964. _content = $$("div", {
  3965. className: "U_MD_D_KO",
  3966. "onmousedown": U.UF.C.closure(function (obj) {
  3967. //防止拖动图标即打开了桌面应用
  3968. U.MD.D.click(this, obj);
  3969. }, [_szulsDeskIcon[i]]),
  3970. "onclick": U.UF.C.closure(function (obj) {
  3971. //防止拖动图标即打开了桌面应用
  3972. U.MD.D.click(this, obj);
  3973. }, [_szulsDeskIcon[i]])
  3974. }, _frag); //
  3975. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3976. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3977. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3978. }
  3979. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3980. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3981. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3982. continue
  3983. }
  3984. _content = $$("div", {
  3985. className: "U_MD_D_KO",
  3986. "onmousedown": U.UF.C.closure(function (obj) {
  3987. //防止拖动图标即打开了桌面应用
  3988. U.MD.D.click(this, obj);
  3989. }, [_orgDesktopIconInfo[i]]),
  3990. "onclick": U.UF.C.closure(function (obj) {
  3991. //防止拖动图标即打开了桌面应用
  3992. U.MD.D.click(this, obj);
  3993. }, [_orgDesktopIconInfo[i]])
  3994. }, _frag); //
  3995. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3996. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3997. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3998. }
  3999. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4000. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  4001. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  4002. continue
  4003. }
  4004. _content = $$("div", {
  4005. className: "U_MD_D_KO",
  4006. "onmousedown": U.UF.C.closure(function (obj) {
  4007. //防止拖动图标即打开了桌面应用
  4008. U.MD.D.click(this, obj);
  4009. }, [_schoolDesktopIconInfo[i]]),
  4010. "onclick": U.UF.C.closure(function (obj) {
  4011. //防止拖动图标即打开了桌面应用
  4012. U.MD.D.click(this, obj);
  4013. }, [_schoolDesktopIconInfo[i]])
  4014. }, _frag); //
  4015. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4016. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  4017. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  4018. }
  4019. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4020. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  4021. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4022. continue
  4023. }
  4024. _content = $$("div", {
  4025. className: "U_MD_D_KO",
  4026. "onmousedown": U.UF.C.closure(function (obj) {
  4027. //防止拖动图标即打开了桌面应用
  4028. U.MD.D.click(this, obj);
  4029. }, [_GMteacherDesktopIconInfo[i]]),
  4030. "onclick": U.UF.C.closure(function (obj) {
  4031. //防止拖动图标即打开了桌面应用
  4032. U.MD.D.click(this, obj);
  4033. }, [_GMteacherDesktopIconInfo[i]])
  4034. }, _frag); //
  4035. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4036. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  4037. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  4038. }
  4039. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  4040. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  4041. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4042. continue
  4043. }
  4044. _content = $$("div", {
  4045. className: "U_MD_D_KO",
  4046. "onmousedown": U.UF.C.closure(function (obj) {
  4047. //防止拖动图标即打开了桌面应用
  4048. U.MD.D.click(this, obj);
  4049. }, [_SONGteacherDesktopIconInfo[i]]),
  4050. "onclick": U.UF.C.closure(function (obj) {
  4051. //防止拖动图标即打开了桌面应用
  4052. U.MD.D.click(this, obj);
  4053. }, [_SONGteacherDesktopIconInfo[i]])
  4054. }, _frag); //
  4055. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4056. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  4057. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  4058. }
  4059. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4060. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  4061. _content = $$("div", {
  4062. className: "U_MD_D_KO",
  4063. "onmousedown": U.UF.C.closure(function (obj) {
  4064. //防止拖动图标即打开了桌面应用
  4065. U.MD.D.click(this, obj);
  4066. }, [_GMstudentDesktopIconInfo[i]]),
  4067. "onclick": U.UF.C.closure(function (obj) {
  4068. //防止拖动图标即打开了桌面应用
  4069. U.MD.D.click(this, obj);
  4070. }, [_GMstudentDesktopIconInfo[i]])
  4071. }, _frag); //
  4072. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4073. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  4074. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  4075. }
  4076. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  4077. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  4078. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4079. continue
  4080. }
  4081. _content = $$("div", {
  4082. className: "U_MD_D_KO",
  4083. "onmousedown": U.UF.C.closure(function (obj) {
  4084. //防止拖动图标即打开了桌面应用
  4085. U.MD.D.click(this, obj);
  4086. }, [_tcTeacherDeskIconInfo[i]]),
  4087. "onclick": U.UF.C.closure(function (obj) {
  4088. //防止拖动图标即打开了桌面应用
  4089. U.MD.D.click(this, obj);
  4090. }, [_tcTeacherDeskIconInfo[i]])
  4091. }, _frag); //
  4092. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4093. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  4094. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  4095. }
  4096. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  4097. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  4098. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4099. continue
  4100. }
  4101. _content = $$("div", {
  4102. className: "U_MD_D_KO",
  4103. "onmousedown": U.UF.C.closure(function (obj) {
  4104. //防止拖动图标即打开了桌面应用
  4105. U.MD.D.click(this, obj);
  4106. }, [_tcOrganizerDeskIconInfo[i]]),
  4107. "onclick": U.UF.C.closure(function (obj) {
  4108. //防止拖动图标即打开了桌面应用
  4109. U.MD.D.click(this, obj);
  4110. }, [_tcOrganizerDeskIconInfo[i]])
  4111. }, _frag); //
  4112. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4113. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  4114. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4115. }
  4116. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  4117. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  4118. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4119. continue
  4120. }
  4121. _content = $$("div", {
  4122. className: "U_MD_D_KO",
  4123. "onmousedown": U.UF.C.closure(function (obj) {
  4124. //防止拖动图标即打开了桌面应用
  4125. U.MD.D.click(this, obj);
  4126. }, [_szscTeacherDeskIconInfo[i]]),
  4127. "onclick": U.UF.C.closure(function (obj) {
  4128. //防止拖动图标即打开了桌面应用
  4129. U.MD.D.click(this, obj);
  4130. }, [_szscTeacherDeskIconInfo[i]])
  4131. }, _frag); //
  4132. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4133. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  4134. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  4135. }
  4136. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  4137. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  4138. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4139. continue
  4140. }
  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. }, [_szscOrganizerDeskIconInfo[i]]),
  4147. "onclick": U.UF.C.closure(function (obj) {
  4148. //防止拖动图标即打开了桌面应用
  4149. U.MD.D.click(this, obj);
  4150. }, [_szscOrganizerDeskIconInfo[i]])
  4151. }, _frag); //
  4152. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4153. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  4154. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4155. }
  4156. } else if ((_type == 1 || _type == 4) && _org == "7cc601a0-fafc-4116-a805-0adbacf7a38d") {
  4157. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  4158. if(_role === 0 && _nsfxTeacherDeskIconInfo[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. }, [_nsfxTeacherDeskIconInfo[i]]),
  4167. "onclick": U.UF.C.closure(function (obj) {
  4168. //防止拖动图标即打开了桌面应用
  4169. U.MD.D.click(this, obj);
  4170. }, [_nsfxTeacherDeskIconInfo[i]])
  4171. }, _frag); //
  4172. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4173. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4174. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4175. }
  4176. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4177. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4178. if(_role === 0 && _stiaTeacherDeskIconInfo[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. }, [_stiaTeacherDeskIconInfo[i]]),
  4187. "onclick": U.UF.C.closure(function (obj) {
  4188. //防止拖动图标即打开了桌面应用
  4189. U.MD.D.click(this, obj);
  4190. }, [_stiaTeacherDeskIconInfo[i]])
  4191. }, _frag); //
  4192. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4193. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4194. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4195. }
  4196. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4197. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4198. if(_role === 0 && _szdjgTeacherDeskIconInfo[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. }, [_szdjgTeacherDeskIconInfo[i]]),
  4207. "onclick": U.UF.C.closure(function (obj) {
  4208. //防止拖动图标即打开了桌面应用
  4209. U.MD.D.click(this, obj);
  4210. }, [_szdjgTeacherDeskIconInfo[i]])
  4211. }, _frag); //
  4212. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4213. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4214. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4215. }
  4216. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4217. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4218. if(_role === 0 && _x010607TeacherDeskIconInfo[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. }, [_x010607TeacherDeskIconInfo[i]]),
  4227. "onclick": U.UF.C.closure(function (obj) {
  4228. //防止拖动图标即打开了桌面应用
  4229. U.MD.D.click(this, obj);
  4230. }, [_x010607TeacherDeskIconInfo[i]])
  4231. }, _frag); //
  4232. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4233. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4234. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4235. }
  4236. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4237. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4238. if(_role === 0 && _xhlyTeacherDeskIconInfo[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. }, [_xhlyTeacherDeskIconInfo[i]]),
  4247. "onclick": U.UF.C.closure(function (obj) {
  4248. //防止拖动图标即打开了桌面应用
  4249. U.MD.D.click(this, obj);
  4250. }, [_xhlyTeacherDeskIconInfo[i]])
  4251. }, _frag); //
  4252. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4253. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4254. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4255. }
  4256. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4257. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4258. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[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. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4267. "onclick": U.UF.C.closure(function (obj) {
  4268. //防止拖动图标即打开了桌面应用
  4269. U.MD.D.click(this, obj);
  4270. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4271. }, _frag); //
  4272. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4273. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4274. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4275. }
  4276. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4277. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4278. if(_role === 0 && _x010503TeacherDeskIconInfo[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. }, [_x010503TeacherDeskIconInfo[i]]),
  4287. "onclick": U.UF.C.closure(function (obj) {
  4288. //防止拖动图标即打开了桌面应用
  4289. U.MD.D.click(this, obj);
  4290. }, [_x010503TeacherDeskIconInfo[i]])
  4291. }, _frag); //
  4292. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4293. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4294. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4295. }
  4296. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4297. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4298. if(_role === 0 && _x010504TeacherDeskIconInfo[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. }, [_x010504TeacherDeskIconInfo[i]]),
  4307. "onclick": U.UF.C.closure(function (obj) {
  4308. //防止拖动图标即打开了桌面应用
  4309. U.MD.D.click(this, obj);
  4310. }, [_x010504TeacherDeskIconInfo[i]])
  4311. }, _frag); //
  4312. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4313. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4314. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4315. }
  4316. } else if ((_type == 1 || _type == 4) && _oid == "8406b214-085f-11f0-b508-005056924926") {
  4317. for (i = 0; i < _x010505TeacherDeskIconInfo.length; i++) {
  4318. if(_role === 0 && _x010505TeacherDeskIconInfo[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. }, [_x010505TeacherDeskIconInfo[i]]),
  4327. "onclick": U.UF.C.closure(function (obj) {
  4328. //防止拖动图标即打开了桌面应用
  4329. U.MD.D.click(this, obj);
  4330. }, [_x010505TeacherDeskIconInfo[i]])
  4331. }, _frag); //
  4332. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4333. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505TeacherDeskIconInfo[i].style }, _iconcontent);
  4334. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505TeacherDeskIconInfo[i].Name }, _iconcontent);
  4335. }
  4336. } else if ((_type == 1 || _type == 4) && _oid == "bc239322-ffb2-11ef-b508-005056924926") {
  4337. for (i = 0; i < _x010404TeacherDeskIconInfo.length; i++) {
  4338. if(_role === 0 && _x010404TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4339. continue
  4340. }
  4341. _content = $$("div", {
  4342. className: "U_MD_D_KO",
  4343. "onmousedown": U.UF.C.closure(function (obj) {
  4344. //防止拖动图标即打开了桌面应用
  4345. U.MD.D.click(this, obj);
  4346. }, [_x010404TeacherDeskIconInfo[i]]),
  4347. "onclick": U.UF.C.closure(function (obj) {
  4348. //防止拖动图标即打开了桌面应用
  4349. U.MD.D.click(this, obj);
  4350. }, [_x010404TeacherDeskIconInfo[i]])
  4351. }, _frag); //
  4352. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4353. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404TeacherDeskIconInfo[i].style }, _iconcontent);
  4354. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404TeacherDeskIconInfo[i].Name }, _iconcontent);
  4355. }
  4356. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4357. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4358. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4359. continue
  4360. }
  4361. _content = $$("div", {
  4362. className: "U_MD_D_KO",
  4363. "onmousedown": U.UF.C.closure(function (obj) {
  4364. //防止拖动图标即打开了桌面应用
  4365. U.MD.D.click(this, obj);
  4366. }, [_x010204TeacherDeskIconInfo[i]]),
  4367. "onclick": U.UF.C.closure(function (obj) {
  4368. //防止拖动图标即打开了桌面应用
  4369. U.MD.D.click(this, obj);
  4370. }, [_x010204TeacherDeskIconInfo[i]])
  4371. }, _frag); //
  4372. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4373. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4374. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4375. }
  4376. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4377. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4378. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4379. continue
  4380. }
  4381. _content = $$("div", {
  4382. className: "U_MD_D_KO",
  4383. "onmousedown": U.UF.C.closure(function (obj) {
  4384. //防止拖动图标即打开了桌面应用
  4385. U.MD.D.click(this, obj);
  4386. }, [_x320101TeacherDeskIconInfo[i]]),
  4387. "onclick": U.UF.C.closure(function (obj) {
  4388. //防止拖动图标即打开了桌面应用
  4389. U.MD.D.click(this, obj);
  4390. }, [_x320101TeacherDeskIconInfo[i]])
  4391. }, _frag); //
  4392. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4393. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4394. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4395. }
  4396. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4397. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4398. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4399. continue
  4400. }
  4401. _content = $$("div", {
  4402. className: "U_MD_D_KO",
  4403. "onmousedown": U.UF.C.closure(function (obj) {
  4404. //防止拖动图标即打开了桌面应用
  4405. U.MD.D.click(this, obj);
  4406. }, [_trailTeacherDeskIconInfo[i]]),
  4407. "onclick": U.UF.C.closure(function (obj) {
  4408. //防止拖动图标即打开了桌面应用
  4409. U.MD.D.click(this, obj);
  4410. }, [_trailTeacherDeskIconInfo[i]])
  4411. }, _frag); //
  4412. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4413. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4414. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4415. }
  4416. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4417. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4418. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4419. continue
  4420. }
  4421. _content = $$("div", {
  4422. className: "U_MD_D_KO",
  4423. "onmousedown": U.UF.C.closure(function (obj) {
  4424. //防止拖动图标即打开了桌面应用
  4425. U.MD.D.click(this, obj);
  4426. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4427. "onclick": U.UF.C.closure(function (obj) {
  4428. //防止拖动图标即打开了桌面应用
  4429. U.MD.D.click(this, obj);
  4430. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4431. }, _frag); //
  4432. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4433. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4434. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4435. }
  4436. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4437. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4438. if(_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4439. continue
  4440. }
  4441. _content = $$("div", {
  4442. className: "U_MD_D_KO",
  4443. "onmousedown": U.UF.C.closure(function (obj) {
  4444. //防止拖动图标即打开了桌面应用
  4445. U.MD.D.click(this, obj);
  4446. }, [_szsyTeacherDeskIconInfo[i]]),
  4447. "onclick": U.UF.C.closure(function (obj) {
  4448. //防止拖动图标即打开了桌面应用
  4449. U.MD.D.click(this, obj);
  4450. }, [_szsyTeacherDeskIconInfo[i]])
  4451. }, _frag); //
  4452. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4453. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4454. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4455. }
  4456. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4457. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4458. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4459. continue
  4460. }
  4461. _content = $$("div", {
  4462. className: "U_MD_D_KO",
  4463. "onmousedown": U.UF.C.closure(function (obj) {
  4464. //防止拖动图标即打开了桌面应用
  4465. U.MD.D.click(this, obj);
  4466. }, [_x010608TeacherDeskIconInfo[i]]),
  4467. "onclick": U.UF.C.closure(function (obj) {
  4468. //防止拖动图标即打开了桌面应用
  4469. U.MD.D.click(this, obj);
  4470. }, [_x010608TeacherDeskIconInfo[i]])
  4471. }, _frag); //
  4472. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4473. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4474. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4475. }
  4476. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4477. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4478. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4479. continue
  4480. }
  4481. _content = $$("div", {
  4482. className: "U_MD_D_KO",
  4483. "onmousedown": U.UF.C.closure(function (obj) {
  4484. //防止拖动图标即打开了桌面应用
  4485. U.MD.D.click(this, obj);
  4486. }, [_x010611TeacherDeskIconInfo[i]]),
  4487. "onclick": U.UF.C.closure(function (obj) {
  4488. //防止拖动图标即打开了桌面应用
  4489. U.MD.D.click(this, obj);
  4490. }, [_x010611TeacherDeskIconInfo[i]])
  4491. }, _frag); //
  4492. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4493. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4494. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4495. }
  4496. } else if ((_type == 1 || _type == 4) && _oid == "86fa8cd7-00c2-11f0-b508-005056924926") {
  4497. for (i = 0; i < _x010612TeacherDeskIconInfo.length; i++) {
  4498. if(_role === 0 && _x010612TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4499. continue
  4500. }
  4501. _content = $$("div", {
  4502. className: "U_MD_D_KO",
  4503. "onmousedown": U.UF.C.closure(function (obj) {
  4504. //防止拖动图标即打开了桌面应用
  4505. U.MD.D.click(this, obj);
  4506. }, [_x010612TeacherDeskIconInfo[i]]),
  4507. "onclick": U.UF.C.closure(function (obj) {
  4508. //防止拖动图标即打开了桌面应用
  4509. U.MD.D.click(this, obj);
  4510. }, [_x010612TeacherDeskIconInfo[i]])
  4511. }, _frag); //
  4512. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4513. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612TeacherDeskIconInfo[i].style }, _iconcontent);
  4514. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612TeacherDeskIconInfo[i].Name }, _iconcontent);
  4515. }
  4516. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4517. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4518. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4519. continue
  4520. }
  4521. _content = $$("div", {
  4522. className: "U_MD_D_KO",
  4523. "onmousedown": U.UF.C.closure(function (obj) {
  4524. //防止拖动图标即打开了桌面应用
  4525. U.MD.D.click(this, obj);
  4526. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4527. "onclick": U.UF.C.closure(function (obj) {
  4528. //防止拖动图标即打开了桌面应用
  4529. U.MD.D.click(this, obj);
  4530. }, [_tianyuanTeacherDeskIconInfo[i]])
  4531. }, _frag); //
  4532. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4533. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4534. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4535. }
  4536. } else {
  4537. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4538. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4539. continue
  4540. }
  4541. _content = $$("div", {
  4542. className: "U_MD_D_KO",
  4543. "onmousedown": U.UF.C.closure(function (obj) {
  4544. //防止拖动图标即打开了桌面应用
  4545. U.MD.D.click(this, obj);
  4546. }, [_teacherDesktopIconInfo[i]]),
  4547. "onclick": U.UF.C.closure(function (obj) {
  4548. //防止拖动图标即打开了桌面应用
  4549. U.MD.D.click(this, obj);
  4550. }, [_teacherDesktopIconInfo[i]])
  4551. }, _frag); //
  4552. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4553. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4554. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4555. }
  4556. }
  4557. } else {
  4558. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4559. _content = $$("div", {
  4560. className: "U_MD_D_KO",
  4561. style: { 'width': '124px', 'height': '145px' },
  4562. "onmousedown": U.UF.C.closure(function (obj) {
  4563. //防止拖动图标即打开了桌面应用
  4564. U.MD.D.click(this, obj);
  4565. }, [_easyDesktopIconInfo[i]]),
  4566. "onclick": U.UF.C.closure(function (obj) {
  4567. //防止拖动图标即打开了桌面应用
  4568. U.MD.D.click(this, obj);
  4569. }, [_easyDesktopIconInfo[i]])
  4570. }, _frag); //
  4571. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4572. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4573. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4574. }
  4575. }
  4576. if (type == 1) {
  4577. //加载好后给图标定位
  4578. U.MD.D.iconPostion($(_frag).Child());
  4579. } else {
  4580. //加载好后给图标定位
  4581. U.MD.D.iconPostion2($(_frag).Child());
  4582. }
  4583. //把图标加载到页面
  4584. el.appendChild(_frag);
  4585. }
  4586. /**
  4587. * 显示任务栏
  4588. *
  4589. * @param {element} 桌面元素
  4590. */
  4591. U.MD.D.I.displayTaskbar = function (el) {
  4592. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4593. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4594. //任务栏位置变化
  4595. U.selectEl(el).css({ "bottom": "0px" });
  4596. //桌面位置变话
  4597. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4598. }
  4599. }
  4600. //#region 桌面图标拖动逻辑
  4601. /**
  4602. * 桌面排列图标
  4603. *
  4604. * @param {element} 桌面元素
  4605. * @param {object} 上下相距的距离
  4606. * @param {object} 左右相距的距离
  4607. * @return {object} 命名空间
  4608. */
  4609. U.MD.D.iconPostion = function (childs, top, left) {
  4610. var i; //用于循环处理
  4611. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4612. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4613. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4614. for (i = 0; i < childs.length; i++) {
  4615. //如果竖排top超过了范围处理
  4616. if (top + 95 > US.height - 10) {
  4617. //left超过了页面范围处理,则向上重叠打印处理
  4618. if ((left + 180) > US.width) {
  4619. top -= 110;
  4620. left -= 90;
  4621. }
  4622. //没有超过范围,那么left+90添加到下一个竖排打印
  4623. else {
  4624. left += 90;
  4625. top = 15;
  4626. };
  4627. }
  4628. //给图标的位置赋值
  4629. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4630. if (i < childs.length - 1) {
  4631. //页面图标每次向下加95
  4632. top += 95;
  4633. }
  4634. }
  4635. //返回最后调用的图标的位置
  4636. return [top, left];
  4637. }
  4638. /**
  4639. * 桌面排列图标
  4640. *
  4641. * @param {element} 桌面元素
  4642. * @param {object} 上下相距的距离
  4643. * @param {object} 左右相距的距离
  4644. * @return {object} 命名空间
  4645. */
  4646. U.MD.D.iconPostion2 = function (childs, top, left) {
  4647. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4648. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4649. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4650. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4651. for (i = 0; i < childs.length; i++) {
  4652. //如果竖排top超过了范围处理
  4653. if (left + 150 > US.width - 10) {
  4654. //left超过了页面范围处理,则向上重叠打印处理
  4655. if ((top + 180) > US.Height) {
  4656. top -= 150;
  4657. left -= 150;
  4658. }
  4659. //没有超过范围,那么left+90添加到下一个竖排打印
  4660. else {
  4661. top += 150;
  4662. left = ol;
  4663. };
  4664. }
  4665. //给图标的位置赋值
  4666. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4667. if (i < childs.length - 1) {
  4668. //页面图标每次向下加95
  4669. left += 150;
  4670. }
  4671. }
  4672. //返回最后调用的图标的位置
  4673. return [top, left];
  4674. }
  4675. /**
  4676. * 桌面点击事件逻辑
  4677. *
  4678. * @param {element} 桌面元素
  4679. * @param {object} 上下相距的距离
  4680. * @param {object} 左右相距的距离
  4681. * @return {object} 命名空间
  4682. */
  4683. U.MD.D.click = function (el, obj) {
  4684. var _buttonnumber = event.button; //点击的按钮的事件值
  4685. var _userinfo = US.userInfo;
  4686. U.UF.EV.stopBubble(); //阻止向上冒泡
  4687. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4688. if (_buttonnumber < 2) {
  4689. //如果是click事件的处理
  4690. if (event.type == "click") {
  4691. //如果元素在mousemove事件中没有移动则出发click事件
  4692. if (!U.MD.D.I.IsDrag) {
  4693. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4694. U.alert("请先登录您的账号!");
  4695. setTimeout(() => {
  4696. U.MD.U.L.login();
  4697. }, 2000);
  4698. } else {
  4699. //打开应用处理
  4700. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4701. }
  4702. }
  4703. }
  4704. //如果是mouse事件的处理
  4705. else {
  4706. if (US.Config.type == '1') {
  4707. //拖动处理,添加拖动和拖动结束事件
  4708. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4709. }
  4710. }
  4711. U.MD.D.I.IsDrag = false;
  4712. }
  4713. }
  4714. /**
  4715. * 拖动的处理
  4716. *
  4717. */
  4718. U.MD.D.iconMove = function () {
  4719. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4720. U.MD.D.I.IsDrag = true;
  4721. }
  4722. /**
  4723. * 拖动结束后,这里是定位处理,以网状的形式定位
  4724. *
  4725. * @param {element} 拖动的元素
  4726. * @return {object} 命名空间
  4727. */
  4728. U.MD.D.iconUp = function (el) {
  4729. var _top = 15,
  4730. _left = 20,
  4731. _margin,
  4732. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4733. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4734. if (_positioninfo["OT"] > 15) {
  4735. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4736. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4737. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4738. }
  4739. if (_positioninfo["OL"] > 20) {
  4740. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4741. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4742. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4743. }
  4744. //while循环判断么一个重叠的元素
  4745. do {
  4746. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4747. _top = _positioninfo[0] + 95; //得到定位后的top
  4748. _left = _positioninfo[1]; //得到定位后的left
  4749. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4750. }
  4751. /**
  4752. * 判断拖动后图标是否重叠
  4753. *
  4754. * @param {element} 拖动的元素
  4755. * @param {element} 桌面所有的元素
  4756. * @param {array} 拖动元素的位置
  4757. ----------[0] 上 top
  4758. ----------[1] 左 left
  4759. * @return {object} 命名空间
  4760. */
  4761. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4762. //循环所有的图标
  4763. for (var i = 0; i < childs.length; i++) {
  4764. //判断有没有和该图标诶子重叠的元素
  4765. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4766. return childs[i]; //如果有返回
  4767. }
  4768. }
  4769. }
  4770. //#endregion
  4771. //#endregion
  4772. //#region 桌面应用
  4773. /**
  4774. * 打开应用
  4775. *
  4776. * @param {string} 类型
  4777. -----------------Disk 网盘系统
  4778. -----------------PDisk 学习系统网盘
  4779. -----------------Poto 图片
  4780. -----------------Video 视频
  4781. -----------------Music 音乐
  4782. -----------------Word word
  4783. -----------------Excel excel
  4784. -----------------Txt 记事本
  4785. -----------------PB 学习系统
  4786. -----------------Blog 朋友圈系统
  4787. -----------------FTP ftp系统
  4788. -----------------Group 好友群
  4789. -----------------SY 首页系统
  4790. -----------------Set 个人设置
  4791. -----------------XSet 系统设置
  4792. -----------------App 我们所有的app
  4793. -----------------BC c.1473.cn 平台
  4794. -----------------CWeb d.1473.cn 变成平台
  4795. -----------------其他的外联系统 我们统一用iframe打开
  4796. * @param {array} 类型
  4797. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4798. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4799. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4800. 如果第一个参数为其他,则无第二个参数
  4801. * @returns {array}
  4802. */
  4803. window.addEventListener('message', function (e) { // 监听 message 事件
  4804. // alert(e.data.type);
  4805. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4806. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4807. //3是展示全部阶段 2学生 1老师 4专家
  4808. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4809. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4810. //3是展示全部阶段 2学生 1老师 4专家
  4811. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4812. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4813. //3是展示全部阶段 2学生 1老师 4专家
  4814. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4815. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4816. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4817. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4818. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4819. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4820. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4821. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4822. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4823. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4824. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4825. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4826. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4827. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4828. //3是展示全部阶段 2学生 1老师 4专家
  4829. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4830. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4831. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4832. U.MD.D.I.selectUser();
  4833. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4834. var _formel = document.getElementById("study");
  4835. U.UF.F.windowZooming(_formel);
  4836. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4837. var _formel = document.getElementById("studyDetail");
  4838. U.UF.F.windowZooming(_formel);
  4839. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4840. var _formel = document.getElementById("studyDetail");
  4841. U.UF.F.windowZooming(_formel);
  4842. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4843. var _formel = document.getElementById("studentStudy");
  4844. U.UF.F.windowZooming(_formel);
  4845. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4846. // var _formel = document.getElementById("study");
  4847. //如果最大化了,那么就把他缩小
  4848. // if (_formel.ismaximize) {
  4849. // return;
  4850. // }
  4851. // U.UF.F.windowZooming(_formel);
  4852. // U.UF.F.topWindow(_formel);
  4853. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4854. // var _formel = document.getElementById("studyDetail");
  4855. //如果最大化了,那么就把他缩小
  4856. // if (_formel.ismaximize) {
  4857. // return;
  4858. // }
  4859. // U.UF.F.windowZooming(_formel);
  4860. // U.UF.F.topWindow(_formel);
  4861. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4862. // var _formel = document.getElementById("studentStudy");
  4863. // if (_formel.ismaximize) {
  4864. // return;
  4865. // }
  4866. // U.UF.F.windowZooming(_formel);
  4867. // U.UF.F.topWindow(_formel);
  4868. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4869. var _formel = document.getElementById("study");
  4870. // if (_formel.ismaximize) {
  4871. // return;
  4872. // }
  4873. // U.UF.F.windowZooming(_formel);
  4874. U.UF.F.topWindow(_formel);
  4875. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4876. var _formel = document.getElementById("studentIndex");
  4877. U.UF.F.windowZooming(_formel);
  4878. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4879. var _formel = document.getElementById("studyDetailS");
  4880. U.UF.F.windowZooming(_formel);
  4881. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4882. var _formel = document.getElementById("studioIndex");
  4883. U.UF.F.windowZooming(_formel);
  4884. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4885. var _formel = document.getElementById("studyDetailStudio");
  4886. U.UF.F.windowZooming(_formel);
  4887. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4888. var _formel = document.getElementById("studyDetailStudio");
  4889. U.UF.F.windowZooming(_formel);
  4890. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4891. var _formel = document.getElementById("studyDetailNT");
  4892. U.UF.F.windowZooming(_formel);
  4893. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4894. var _formel = document.getElementById("studyDetailS");
  4895. U.UF.F.windowZooming(_formel);
  4896. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4897. var _formel = document.getElementById("studyDetailS");
  4898. U.UF.F.topWindow(_formel);
  4899. } else if (e.data.tools && e.data.tools == "1") {
  4900. // U.MD.D.I.openApplication("whiteboard")
  4901. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4902. } else if (e.data.tools && e.data.tools == "2") {
  4903. U.MD.D.I.openApplication("note")
  4904. } else if (e.data.tools && e.data.tools == "3") {
  4905. // U.MD.D.I.openApplication("mind")
  4906. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4907. } else if (e.data.tools && e.data.tools == "4") {
  4908. U.MD.D.I.openApplication("investigation")
  4909. } else if (e.data.tools && e.data.tools == "6") {
  4910. // U.MD.D.I.openApplication("doc")
  4911. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4912. } else if (e.data.tools && e.data.tools == "7") {
  4913. // U.MD.D.I.openApplication("mindNetwork")
  4914. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4915. } else if (e.data.tools && e.data.tools == "8") {
  4916. U.MD.D.I.openApplication("library")
  4917. } else if (e.data.tools && e.data.tools == "17") {
  4918. U.MD.D.I.openApplication("stuLibrary")
  4919. } else if (e.data.tools && e.data.tools == "18") {
  4920. U.MD.D.I.openApplication("train")
  4921. } else if (e.data.tools && e.data.tools == "21") {
  4922. U.MD.D.I.openApplication("program")
  4923. } else if (e.data.tools && e.data.tools == "22") {
  4924. U.MD.D.I.openApplication("AIprogram2")
  4925. } else if (e.data.tools && e.data.tools == "23") {
  4926. U.MD.D.I.openApplication("Pythonprogram")
  4927. } else if (e.data.tools && e.data.tools == "24") {
  4928. U.MD.D.I.openApplication("AIprogram")
  4929. } else if (e.data.tools && e.data.tools == "25") {
  4930. U.MD.D.I.openApplication("sys")
  4931. } else if (e.data.tools && e.data.tools == "26") {
  4932. // U.MD.D.I.openApplication("courseDesign")
  4933. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4934. } else if (e.data.tools && e.data.tools == "31") {
  4935. U.MD.D.I.openApplication("netWorkPanel")
  4936. } else if (e.data.tools && e.data.tools == "32") {
  4937. U.MD.D.I.openApplication("codeEdit")
  4938. } else if (e.data.tools && e.data.tools == "57") {
  4939. U.MD.D.I.openApplication("CocoPi")
  4940. } else if (e.data.tools && e.data.tools == "63") {
  4941. U.MD.D.I.openApplication("Wood")
  4942. } else if (e.data.tools && e.data.tools == "58") {
  4943. U.MD.D.I.openApplication("car")
  4944. } else if (e.data.tools && e.data.tools == "59") {
  4945. U.MD.D.I.openApplication("lineSearch")
  4946. } else if (e.data.tools && e.data.tools == "60") {
  4947. U.MD.D.I.openApplication("deepLearning")
  4948. } else if (e.data.tools && e.data.tools == "61") {
  4949. U.MD.D.I.openApplication("allHistory")
  4950. } else if (e.data.tools && e.data.tools == "28") {
  4951. U.MD.D.I.openApplication("translation")
  4952. } else if (e.data.tools && e.data.tools == "37") {
  4953. U.MD.D.I.openApplication("mohe")
  4954. } else if (e.data.tools && e.data.tools == "38") {
  4955. U.MD.D.I.openApplication("24game")
  4956. } else if (e.data.tools && e.data.tools == "39") {
  4957. U.MD.D.I.openApplication("GeoGebra")
  4958. } else if (e.data.tools && e.data.tools == "43") {
  4959. U.MD.D.I.openApplication("studentEvaluate")
  4960. } else if (e.data.tools && e.data.tools == "44") {
  4961. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4962. } else if (e.data.tools && e.data.tools == "46") {
  4963. U.MD.D.I.openApplication("project")
  4964. } else if (e.data.tools && e.data.tools == "71") {
  4965. U.MD.D.I.openApplication("aigptCourse")
  4966. } else if (e.data.tools && e.data.tools == "72") {
  4967. U.MD.D.I.openInApplication("gptConfig", e.data.data)
  4968. } else if (e.data.tools && e.data.tools == "1s") {
  4969. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4970. } else if (e.data.tools && e.data.tools == "3s") {
  4971. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4972. } else if (e.data.tools && e.data.tools == "6s") {
  4973. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4974. } else if (e.data.tools && e.data.tools == "1studio") {
  4975. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4976. } else if (e.data.tools && e.data.tools == "3studio") {
  4977. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4978. } else if (e.data.tools && e.data.tools == "6studio") {
  4979. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4980. } else if (e.data.tools && e.data.tools == "3y") {
  4981. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4982. } else if (e.data.tools && e.data.tools == "1y") {
  4983. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4984. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4985. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4986. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4987. U.MD.D.I.openApplication("AIAnalyse")
  4988. } else if (e.data.tools && e.data.tools == "1teacher") {
  4989. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4990. } else if (e.data.tools && e.data.tools == "3teacher") {
  4991. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4992. } else if (e.data.tools && e.data.tools == "7teacher") {
  4993. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4994. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4995. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4996. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4997. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4998. } else if (e.data.tools && e.data.tools == "1E") {
  4999. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5000. } else if (e.data.tools && e.data.tools == "3E") {
  5001. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5002. } else if (e.data.tools && e.data.tools == "57y") {
  5003. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5004. } else if (e.data.tools && e.data.tools == "57u") {
  5005. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5006. } else if (e.data.tools && e.data.tools == "57teacher") {
  5007. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5008. } else if (e.data.tools && e.data.tools == "64") {
  5009. U.MD.D.I.openApplication("AIChat")
  5010. } else if (e.data.tools && e.data.tools == "66") {
  5011. U.MD.D.I.openApplication("formulaEdi")
  5012. } else if (e.data.tools && e.data.tools == "67") {
  5013. U.MD.D.I.openApplication("molStr")
  5014. } else if (e.data.tools && e.data.tools == "68") {
  5015. U.MD.D.I.openApplication("timeAxis")
  5016. } else if (e.data.tools && e.data.tools == "openCourse") {
  5017. let _data = {
  5018. typea: e.data.typea || '',
  5019. typeb: e.data.typeb || '',
  5020. typed: e.data.typed || '',
  5021. }
  5022. U.MD.D.I.openInApplication("index", _data)
  5023. } else if (e.data.tools && e.data.tools == "openDataClass") {
  5024. let _data = {
  5025. classid: e.data.classid || '',
  5026. }
  5027. U.MD.D.I.openInApplication("dataClass", _data)
  5028. } else if (e.data.tools && e.data.tools == "opencCscl") {
  5029. let _data = {
  5030. cid: e.data.cid || '',
  5031. gid: e.data.gid || '',
  5032. }
  5033. U.MD.D.I.openInApplication("opencCscl", _data)
  5034. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  5035. U.MD.D.I.openApplication("dataBoardTest")
  5036. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  5037. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  5038. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  5039. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  5040. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  5041. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  5042. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  5043. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  5044. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  5045. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  5046. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  5047. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  5048. }else if (e.data.tools && e.data.tools == "loginSz") {
  5049. U.MD.D.I.openInApplication("loginSz")
  5050. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  5051. if($('#classroom_observation_board')[0]){
  5052. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  5053. }
  5054. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  5055. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  5056. if($('#classroom_observation_ob_comment')[0]){
  5057. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  5058. }
  5059. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  5060. }else if (e.data.tools && e.data.tools == "logout"){
  5061. U.MD.U.LO.logoutSystem()
  5062. }else if (e.data.tools && e.data.tools == "getLogin"){
  5063. let _iframe = $('#UI_Login')[0];
  5064. if (_iframe) {
  5065. var userInfo = US.userInfo;
  5066. var type = 2
  5067. if(userInfo && userInfo.userid){
  5068. type = 1
  5069. }
  5070. _contentWindow = _iframe.contentWindow;
  5071. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  5072. }
  5073. }
  5074. });
  5075. U.MD.D.I.selectUser = function () {
  5076. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  5077. if (res.value[0].length > 0) {
  5078. US.userInfo = res.value[0][0];
  5079. $(".userName")[0].innerHTML = US.userInfo.username;
  5080. }
  5081. }, [], { "type": "GET", "withCredentials": true });
  5082. }
  5083. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  5084. var _userinfo = US.userInfo, //登录用户信息
  5085. _userid = US.userInfo.userid, //登录用户id
  5086. _oid = _userinfo.organizeid,
  5087. _type = US.userInfo.type,
  5088. _org = US.userInfo.org,
  5089. _role = US.userInfo.role,
  5090. _classId = US.userInfo.classid;
  5091. if (_type == 4) {
  5092. tType = 4
  5093. }
  5094. switch (str) {
  5095. case "studyDetailNT": //无终端模式
  5096. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5097. setTimeout(() => {
  5098. U.MD.U.L.login();
  5099. }, 2000);
  5100. } else {
  5101. _formdiv = new U.UF.UI.form(
  5102. "课程详情",
  5103. $$("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 }), {
  5104. "id": "studyDetailNT",
  5105. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5106. "onresize": function () { }
  5107. }, {
  5108. closecallback: function () { }
  5109. }, { "style": { "height": "36px" } }).form; //创建窗体
  5110. _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); } }
  5111. break;
  5112. }
  5113. case "studyDetail":
  5114. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5115. setTimeout(() => {
  5116. U.MD.U.L.login();
  5117. }, 2000);
  5118. } else {
  5119. _formdiv = new U.UF.UI.form(
  5120. "课程详情",
  5121. $$("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 }), {
  5122. "id": "studyDetail",
  5123. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5124. "onresize": function () { }
  5125. }, {
  5126. closecallback: function () { }
  5127. }, { "style": { "height": "36px" } }).form; //创建窗体
  5128. _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); } }
  5129. break;
  5130. }
  5131. case "studyDetailTrain":
  5132. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5133. setTimeout(() => {
  5134. U.MD.U.L.login();
  5135. }, 2000);
  5136. } else {
  5137. _formdiv = new U.UF.UI.form(
  5138. "培训详情",
  5139. $$("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 }), {
  5140. "id": "studyDetailTrain",
  5141. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5142. "onresize": function () { }
  5143. }, {
  5144. closecallback: function () { }
  5145. }, { "style": { "height": "36px" } }).form; //创建窗体
  5146. _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); } }
  5147. break;
  5148. }
  5149. case "studyDetailS":
  5150. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5151. setTimeout(() => {
  5152. U.MD.U.L.login();
  5153. }, 2000);
  5154. } else {
  5155. _formdiv = new U.UF.UI.form(
  5156. "项目详情",
  5157. $$("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 }), {
  5158. "id": "studyDetailS",
  5159. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5160. "onresize": function () { }
  5161. }, {
  5162. closecallback: function () { }
  5163. }, { "style": { "height": "36px" } }).form; //创建窗体
  5164. _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); } }
  5165. break;
  5166. }
  5167. case "studyDetailStudio":
  5168. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5169. setTimeout(() => {
  5170. U.MD.U.L.login();
  5171. }, 2000);
  5172. } else {
  5173. _formdiv = new U.UF.UI.form(
  5174. "工作详情",
  5175. $$("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 }), {
  5176. "id": "studyDetailStudio",
  5177. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5178. "onresize": function () { }
  5179. }, {
  5180. closecallback: function () { }
  5181. }, { "style": { "height": "36px" } }).form; //创建窗体
  5182. _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); } }
  5183. break;
  5184. }
  5185. case "studyDetailS5":
  5186. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5187. setTimeout(() => {
  5188. U.MD.U.L.login();
  5189. }, 2000);
  5190. } else {
  5191. _formdiv = new U.UF.UI.form(
  5192. "项目详情",
  5193. $$("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 }), {
  5194. "id": "studyDetailS",
  5195. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5196. "onresize": function () { }
  5197. }, {
  5198. closecallback: function () { }
  5199. }, { "style": { "height": "36px" } }).form; //创建窗体
  5200. _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); } }
  5201. break;
  5202. }
  5203. case "studyDetailGM":
  5204. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5205. setTimeout(() => {
  5206. U.MD.U.L.login();
  5207. }, 2000);
  5208. } else {
  5209. _formdiv = new U.UF.UI.form(
  5210. "课程详情",
  5211. $$("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 }), {
  5212. "id": "studyDetail",
  5213. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5214. "onresize": function () { }
  5215. }, {
  5216. closecallback: function () { }
  5217. }, { "style": { "height": "36px" } }).form; //创建窗体
  5218. _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); } }
  5219. break;
  5220. }
  5221. case "hanUrl":
  5222. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5223. setTimeout(() => {
  5224. U.MD.U.L.login();
  5225. }, 2000);
  5226. } else {
  5227. _formdiv = new U.UF.UI.form(
  5228. "汉字宫",
  5229. $$("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" }), {
  5230. "id": "hanUrl",
  5231. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5232. "onresize": function () { }
  5233. }, {
  5234. closecallback: function () { }
  5235. }, { "style": { "height": "36px" } }).form; //创建窗体
  5236. _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); } }
  5237. break;
  5238. }
  5239. case "index":
  5240. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5241. setTimeout(() => {
  5242. U.MD.U.L.login();
  5243. }, 2000);
  5244. } else {
  5245. _formdiv = new U.UF.UI.form(
  5246. "课程中心",
  5247. $$("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 }), {
  5248. "id": "study",
  5249. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5250. "onresize": function () { }
  5251. }, {
  5252. closecallback: function () { }
  5253. }, { "style": { "height": "36px" } }).form; //创建窗体
  5254. _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); } }
  5255. break;
  5256. }
  5257. case "dataClass":
  5258. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5259. setTimeout(() => {
  5260. U.MD.U.L.login();
  5261. }, 2000);
  5262. } else {
  5263. _formdiv = new U.UF.UI.form(
  5264. "数据报告",
  5265. $$("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 }), {
  5266. "id": "dataClass",
  5267. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5268. "onresize": function () { }
  5269. }, {
  5270. closecallback: function () { }
  5271. }, { "style": { "height": "36px" } }).form; //创建窗体
  5272. _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); } }
  5273. break;
  5274. }
  5275. case "opencCscl":
  5276. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5277. setTimeout(() => {
  5278. U.MD.U.L.login();
  5279. }, 2000);
  5280. } else {
  5281. _formdiv = new U.UF.UI.form(
  5282. "协同建构",
  5283. $$("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 }), {
  5284. "id": "futureClass",
  5285. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5286. "onresize": function () { }
  5287. }, {
  5288. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5289. }, { "style": { "height": "36px" } }).form; //创建窗体
  5290. _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); } }
  5291. break;
  5292. }
  5293. case "openCourseUpdate":
  5294. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5295. setTimeout(() => {
  5296. U.MD.U.L.login();
  5297. }, 2000);
  5298. } else {
  5299. _formdiv = new U.UF.UI.form(
  5300. "课程管理",
  5301. $$("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 }), {
  5302. "id": "openCourseUpdate",
  5303. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5304. "onresize": function () { }
  5305. }, {
  5306. closecallback: function () { }
  5307. }, { "style": { "height": "36px" } }).form; //创建窗体
  5308. break;
  5309. }
  5310. case "openNewCourseUpdate":
  5311. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5312. setTimeout(() => {
  5313. U.MD.U.L.login();
  5314. }, 2000);
  5315. } else {
  5316. _formdiv = new U.UF.UI.form(
  5317. "课程管理",
  5318. $$("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 }), {
  5319. "id": "openCourseUpdate",
  5320. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5321. "onresize": function () { }
  5322. }, {
  5323. closecallback: function () { }
  5324. }, { "style": { "height": "36px" } }).form; //创建窗体
  5325. break;
  5326. }
  5327. case "openCourseEUpdate":
  5328. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5329. setTimeout(() => {
  5330. U.MD.U.L.login();
  5331. }, 2000);
  5332. } else {
  5333. _formdiv = new U.UF.UI.form(
  5334. "课程管理",
  5335. $$("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 }), {
  5336. "id": "openCourseUpdate",
  5337. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5338. "onresize": function () { }
  5339. }, {
  5340. closecallback: function () { }
  5341. }, { "style": { "height": "36px" } }).form; //创建窗体
  5342. break;
  5343. }
  5344. case "openCourseAiUpdate":
  5345. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5346. setTimeout(() => {
  5347. U.MD.U.L.login();
  5348. }, 2000);
  5349. } else {
  5350. _formdiv = new U.UF.UI.form(
  5351. "课程管理",
  5352. $$("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 }), {
  5353. "id": "openCourseUpdate",
  5354. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5355. "onresize": function () { }
  5356. }, {
  5357. closecallback: function () { }
  5358. }, { "style": { "height": "36px" } }).form; //创建窗体
  5359. break;
  5360. }
  5361. case "openCourseAiUpdate2":
  5362. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5363. setTimeout(() => {
  5364. U.MD.U.L.login();
  5365. }, 2000);
  5366. } else {
  5367. _formdiv = new U.UF.UI.form(
  5368. "课程管理",
  5369. $$("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 }), {
  5370. "id": "openCourseUpdate",
  5371. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5372. "onresize": function () { }
  5373. }, {
  5374. closecallback: function () { }
  5375. }, { "style": { "height": "36px" } }).form; //创建窗体
  5376. break;
  5377. }
  5378. case "openCourseNewUpdate":
  5379. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5380. setTimeout(() => {
  5381. U.MD.U.L.login();
  5382. }, 2000);
  5383. } else {
  5384. _formdiv = new U.UF.UI.form(
  5385. "课程管理",
  5386. $$("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 }), {
  5387. "id": "openCourseUpdate",
  5388. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5389. "onresize": function () { }
  5390. }, {
  5391. closecallback: function () { }
  5392. }, { "style": { "height": "36px" } }).form; //创建窗体
  5393. break;
  5394. }
  5395. case "inviteLoginSz":
  5396. _formdiv = new U.UF.UI.form(
  5397. "随机码登录",
  5398. $$("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 }), {
  5399. "id": "loginSz",
  5400. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5401. "onresize": function () { }
  5402. }, {
  5403. closecallback: function () { }
  5404. }, { "style": { "height": "36px" } }).form; //创建窗体
  5405. break;
  5406. case "loginSz":
  5407. _formdiv = new U.UF.UI.form(
  5408. "教师登录",
  5409. $$("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" }), {
  5410. "id": "loginSz",
  5411. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5412. "onresize": function () { }
  5413. }, {
  5414. closecallback: function () { }
  5415. }, { "style": { "height": "36px" } }).form; //创建窗体
  5416. break;
  5417. case "teacher":
  5418. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5419. setTimeout(() => {
  5420. U.MD.U.L.login();
  5421. }, 2000);
  5422. } else {
  5423. _formdiv = new U.UF.UI.form(
  5424. "教师管理",
  5425. $$("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 }), {
  5426. "id": "teacher",
  5427. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5428. "onresize": function () { }
  5429. }, {
  5430. closecallback: function () { }
  5431. }, { "style": { "height": "36px" } }).form; //创建窗体
  5432. break;
  5433. }
  5434. case "dataBoardSZArea":
  5435. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5436. setTimeout(() => {
  5437. U.MD.U.L.login();
  5438. }, 2000);
  5439. } else {
  5440. _formdiv = new U.UF.UI.form(
  5441. "综合数据看板",
  5442. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/sz/dataBoardArea?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5443. "id": "dataBoardSZArea",
  5444. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5445. "onresize": function () { }
  5446. }, {
  5447. closecallback: function () { }
  5448. }, { "style": { "height": "36px" } }).form; //创建窗体
  5449. break;
  5450. }
  5451. case "dataBoardSZCity":
  5452. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5453. setTimeout(() => {
  5454. U.MD.U.L.login();
  5455. }, 2000);
  5456. } else {
  5457. _formdiv = new U.UF.UI.form(
  5458. "综合数据看板",
  5459. $$("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 }), {
  5460. "id": "dataBoardSZCity",
  5461. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5462. "onresize": function () { }
  5463. }, {
  5464. closecallback: function () { }
  5465. }, { "style": { "height": "36px" } }).form; //创建窗体
  5466. break;
  5467. }
  5468. case "classroom_observation_board":
  5469. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5470. setTimeout(() => {
  5471. U.MD.U.L.login();
  5472. }, 2000);
  5473. } else {
  5474. _formdiv = new U.UF.UI.form(
  5475. "课堂观察",
  5476. $$("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 }), {
  5477. "id": "classroom_observation_board",
  5478. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5479. "onresize": function () { }
  5480. }, {
  5481. closecallback: function () { }
  5482. }, { "style": { "height": "36px" } }).form; //创建窗体
  5483. break;
  5484. }
  5485. case "classroom_observation_ob_comment":
  5486. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5487. setTimeout(() => {
  5488. U.MD.U.L.login();
  5489. }, 2000);
  5490. } else {
  5491. _formdiv = new U.UF.UI.form(
  5492. "课堂审核",
  5493. $$("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 }), {
  5494. "id": "classroom_observation_ob_comment",
  5495. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5496. "onresize": function () { }
  5497. }, {
  5498. closecallback: function () { }
  5499. }, { "style": { "height": "36px" } }).form; //创建窗体
  5500. break;
  5501. }
  5502. case "gptConfig":
  5503. _formdiv = new U.UF.UI.form(
  5504. data.name ? data.name : "应用中心",
  5505. $$("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 }), {
  5506. "id": "gptConfig" + data.id,
  5507. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5508. "onresize": function () { }
  5509. }, {
  5510. closecallback: function () { }
  5511. }, { "style": { "height": "36px" } }).form; //创建窗体
  5512. break;
  5513. }
  5514. }
  5515. U.MD.D.I.openApplication = function (str, obj, info) {
  5516. obj = obj || {};
  5517. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5518. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5519. _userinfo = US.userInfo, //登录用户信息
  5520. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5521. _oid = obj.organizeid || _userinfo.organizeid,
  5522. _type = US.userInfo.type,
  5523. _org = US.userInfo.org,
  5524. _role = US.userInfo.role,
  5525. _classId = US.userInfo.classid,
  5526. _TscreenType = 1
  5527. _screenType = 2,
  5528. _SscreenType = 3;
  5529. let iframeBool = true
  5530. if(U.UF.UI.form.allForm[str]){
  5531. iframeBool = false
  5532. }
  5533. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5534. return;
  5535. }
  5536. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5537. switch (str) {
  5538. case "studnetProject": //好友打开
  5539. _formdiv = new U.UF.UI.form(
  5540. "我的项目",
  5541. $$("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 }), {
  5542. "id": "studnetProject",
  5543. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5544. "onresize": function () { }
  5545. }, {
  5546. closecallback: function () { }
  5547. }, { "style": { "height": "36px" } }).form; //创建窗体
  5548. _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); } }
  5549. break;
  5550. case "studentEvaluate": //好友打开
  5551. _formdiv = new U.UF.UI.form(
  5552. "我的评价",
  5553. $$("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 }), {
  5554. "id": "studentEvaluate",
  5555. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5556. "onresize": function () { }
  5557. }, {
  5558. closecallback: function () { }
  5559. }, { "style": { "height": "36px" } }).form; //创建窗体
  5560. _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); } }
  5561. break;
  5562. case "my":
  5563. _formdiv = new U.UF.UI.form(
  5564. "我的资料",
  5565. $$("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 }), {
  5566. "id": "my",
  5567. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5568. "onresize": function () { }
  5569. }, {
  5570. closecallback: function () { }
  5571. }, { "style": { "height": "36px" } }).form; //创建窗体
  5572. _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); } }
  5573. break;
  5574. case "program":
  5575. _formdiv = new U.UF.UI.form(
  5576. "编程平台",
  5577. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5578. "id": "program",
  5579. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5580. "onresize": function () { }
  5581. }, {
  5582. closecallback: function () { }
  5583. }, { "style": { "height": "36px" } }).form; //创建窗体
  5584. _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); } }
  5585. break;
  5586. case "library":
  5587. _formdiv = new U.UF.UI.form(
  5588. "素材库",
  5589. $$("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 }), {
  5590. "id": "library",
  5591. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5592. "onresize": function () { }
  5593. }, {
  5594. closecallback: function () { }
  5595. }, { "style": { "height": "36px" } }).form; //创建窗体
  5596. _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); } }
  5597. break;
  5598. case "whiteboard":
  5599. _formdiv = new U.UF.UI.form(
  5600. "电子白板",
  5601. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5602. "id": "whiteboard",
  5603. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5604. "onresize": function () { }
  5605. }, {
  5606. closecallback: function () { }
  5607. }, { "style": { "height": "36px" } }).form; //创建窗体
  5608. _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); } }
  5609. break;
  5610. case "investigation":
  5611. _formdiv = new U.UF.UI.form(
  5612. "问卷调查",
  5613. $$("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 }), {
  5614. "id": "investigation",
  5615. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5616. "onresize": function () { }
  5617. }, {
  5618. closecallback: function () { }
  5619. }, { "style": { "height": "36px" } }).form; //创建窗体
  5620. _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); } }
  5621. break;
  5622. case "note":
  5623. _formdiv = new U.UF.UI.form(
  5624. "便签分类",
  5625. $$("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 }), {
  5626. "id": "note",
  5627. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5628. "onresize": function () { }
  5629. }, {
  5630. closecallback: function () { }
  5631. }, { "style": { "height": "36px" } }).form; //创建窗体
  5632. _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); } }
  5633. break;
  5634. // case "score":
  5635. // _formdiv = new U.UF.UI.form(
  5636. // "量规评分",
  5637. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5638. // "id": "score",
  5639. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5640. // "onresize": function() {}
  5641. // }, {
  5642. // closecallback: function() {}
  5643. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5644. // _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); } }
  5645. // break;
  5646. case "mind":
  5647. _formdiv = new U.UF.UI.form(
  5648. "思维导图",
  5649. $$("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"
  5650. "id": "mind",
  5651. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5652. "onresize": function () { }
  5653. }, {
  5654. closecallback: function () { }
  5655. }, { "style": { "height": "36px" } }).form; //创建窗体
  5656. _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); } }
  5657. break;
  5658. case "doc":
  5659. // U.MD.D.I.isRoom();
  5660. _formdiv = new U.UF.UI.form(
  5661. "协同文档",
  5662. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5663. "id": "doc",
  5664. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5665. "onresize": function () { }
  5666. }, {
  5667. closecallback: function () { }
  5668. }, { "style": { "height": "36px" } }).form; //创建窗体
  5669. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5670. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5671. // })
  5672. _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); } }
  5673. break;
  5674. case "studentStudy":
  5675. _formdiv = new U.UF.UI.form(
  5676. "课程中心",
  5677. $$("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
  5678. "id": "studentStudy",
  5679. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5680. "onresize": function () { }
  5681. }, {
  5682. closecallback: function () { }
  5683. }, { "style": { "height": "36px" } }).form; //创建窗体
  5684. _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); } }
  5685. break;
  5686. case "train": //好友打开
  5687. _formdiv = new U.UF.UI.form(
  5688. "训练平台",
  5689. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5690. "id": "train",
  5691. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5692. "onresize": function () { }
  5693. }, {
  5694. closecallback: function () { }
  5695. }, { "style": { "height": "36px" } }).form; //创建窗体
  5696. _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); } }
  5697. break;
  5698. case "mindNetwork": //好友打开
  5699. _formdiv = new U.UF.UI.form(
  5700. "思维网格",
  5701. $$("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 }), {
  5702. "id": "mindNetwork",
  5703. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5704. "onresize": function () { }
  5705. }, {
  5706. closecallback: function () { }
  5707. }, { "style": { "height": "36px" } }).form; //创建窗体
  5708. _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); } }
  5709. break;
  5710. case "studentClassRoom": //好友打开
  5711. _formdiv = new U.UF.UI.form(
  5712. "实时课堂",
  5713. $$("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 }), {
  5714. "id": "studentClassRoom",
  5715. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5716. "onresize": function () { }
  5717. }, {
  5718. closecallback: function () { }
  5719. }, { "style": { "height": "36px" } }).form; //创建窗体
  5720. _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); } }
  5721. setTimeout(() => {
  5722. U.UF.F.windowZooming(_formdiv)
  5723. }, 0);
  5724. break;
  5725. }
  5726. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5727. switch (str) {
  5728. case "studnetProject": //好友打开
  5729. _formdiv = new U.UF.UI.form(
  5730. "我的项目",
  5731. $$("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 }), {
  5732. "id": "studnetProject",
  5733. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5734. "onresize": function () { }
  5735. }, {
  5736. closecallback: function () { }
  5737. }, { "style": { "height": "36px" } }).form; //创建窗体
  5738. _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); } }
  5739. break;
  5740. case "studentEvaluate": //好友打开
  5741. _formdiv = new U.UF.UI.form(
  5742. "我的评价",
  5743. $$("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 }), {
  5744. "id": "studentEvaluate",
  5745. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5746. "onresize": function () { }
  5747. }, {
  5748. closecallback: function () { }
  5749. }, { "style": { "height": "36px" } }).form; //创建窗体
  5750. _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); } }
  5751. break;
  5752. case "my":
  5753. _formdiv = new U.UF.UI.form(
  5754. "我的资料",
  5755. $$("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 }), {
  5756. "id": "my",
  5757. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5758. "onresize": function () { }
  5759. }, {
  5760. closecallback: function () { }
  5761. }, { "style": { "height": "36px" } }).form; //创建窗体
  5762. _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); } }
  5763. break;
  5764. case "program":
  5765. _formdiv = new U.UF.UI.form(
  5766. "编程平台",
  5767. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5768. "id": "program",
  5769. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5770. "onresize": function () { }
  5771. }, {
  5772. closecallback: function () { }
  5773. }, { "style": { "height": "36px" } }).form; //创建窗体
  5774. _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); } }
  5775. break;
  5776. case "library":
  5777. _formdiv = new U.UF.UI.form(
  5778. "素材库",
  5779. $$("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 }), {
  5780. "id": "library",
  5781. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5782. "onresize": function () { }
  5783. }, {
  5784. closecallback: function () { }
  5785. }, { "style": { "height": "36px" } }).form; //创建窗体
  5786. _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); } }
  5787. break;
  5788. case "whiteboard":
  5789. _formdiv = new U.UF.UI.form(
  5790. "电子白板",
  5791. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5792. "id": "whiteboard",
  5793. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5794. "onresize": function () { }
  5795. }, {
  5796. closecallback: function () { }
  5797. }, { "style": { "height": "36px" } }).form; //创建窗体
  5798. _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); } }
  5799. break;
  5800. case "investigation":
  5801. _formdiv = new U.UF.UI.form(
  5802. "问卷调查",
  5803. $$("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 }), {
  5804. "id": "investigation",
  5805. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5806. "onresize": function () { }
  5807. }, {
  5808. closecallback: function () { }
  5809. }, { "style": { "height": "36px" } }).form; //创建窗体
  5810. _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); } }
  5811. break;
  5812. case "note":
  5813. _formdiv = new U.UF.UI.form(
  5814. "便签分类",
  5815. $$("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 }), {
  5816. "id": "note",
  5817. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5818. "onresize": function () { }
  5819. }, {
  5820. closecallback: function () { }
  5821. }, { "style": { "height": "36px" } }).form; //创建窗体
  5822. _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); } }
  5823. break;
  5824. // case "score":
  5825. // _formdiv = new U.UF.UI.form(
  5826. // "量规评分",
  5827. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5828. // "id": "score",
  5829. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5830. // "onresize": function() {}
  5831. // }, {
  5832. // closecallback: function() {}
  5833. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5834. // _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); } }
  5835. // break;
  5836. case "mind":
  5837. _formdiv = new U.UF.UI.form(
  5838. "思维导图",
  5839. $$("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"
  5840. "id": "mind",
  5841. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5842. "onresize": function () { }
  5843. }, {
  5844. closecallback: function () { }
  5845. }, { "style": { "height": "36px" } }).form; //创建窗体
  5846. _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); } }
  5847. break;
  5848. case "doc":
  5849. // U.MD.D.I.isRoom();
  5850. _formdiv = new U.UF.UI.form(
  5851. "协同文档",
  5852. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5853. "id": "doc",
  5854. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5855. "onresize": function () { }
  5856. }, {
  5857. closecallback: function () { }
  5858. }, { "style": { "height": "36px" } }).form; //创建窗体
  5859. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5860. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5861. })
  5862. _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); } }
  5863. break;
  5864. case "train": //好友打开
  5865. _formdiv = new U.UF.UI.form(
  5866. "训练平台",
  5867. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5868. "id": "train",
  5869. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5870. "onresize": function () { }
  5871. }, {
  5872. closecallback: function () { }
  5873. }, { "style": { "height": "36px" } }).form; //创建窗体
  5874. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5875. break;
  5876. case "studentStudy":
  5877. _formdiv = new U.UF.UI.form(
  5878. "课程中心",
  5879. $$("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
  5880. "id": "studentStudy",
  5881. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5882. "onresize": function () { }
  5883. }, {
  5884. closecallback: function () { }
  5885. }, { "style": { "height": "36px" } }).form; //创建窗体
  5886. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5887. break;
  5888. case "mindNetwork": //好友打开
  5889. _formdiv = new U.UF.UI.form(
  5890. "思维网格",
  5891. $$("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 }), {
  5892. "id": "mindNetwork",
  5893. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5894. "onresize": function () { }
  5895. }, {
  5896. closecallback: function () { }
  5897. }, { "style": { "height": "36px" } }).form; //创建窗体
  5898. _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); } }
  5899. break;
  5900. case "studentClassRoom": //好友打开
  5901. _formdiv = new U.UF.UI.form(
  5902. "实时课堂",
  5903. $$("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 }), {
  5904. "id": "studentClassRoom",
  5905. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5906. "onresize": function () { }
  5907. }, {
  5908. closecallback: function () { }
  5909. }, { "style": { "height": "36px" } }).form; //创建窗体
  5910. _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); } }
  5911. setTimeout(() => {
  5912. U.UF.F.windowZooming(_formdiv)
  5913. }, 0);
  5914. break;
  5915. }
  5916. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5917. //选择应用处理
  5918. switch (str) {
  5919. case "project": //好友打开
  5920. _formdiv = new U.UF.UI.form(
  5921. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5922. $$("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 }), {
  5923. "id": "project",
  5924. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5925. "onresize": function () { }
  5926. }, {
  5927. closecallback: function () { }
  5928. }, { "style": { "height": "36px" } }).form; //创建窗体
  5929. _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); } }
  5930. break;
  5931. case "student":
  5932. _formdiv = new U.UF.UI.form(
  5933. "学生管理",
  5934. $$("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 }), {
  5935. "id": "student",
  5936. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5937. "onresize": function () { }
  5938. }, {
  5939. closecallback: function () { }
  5940. }, { "style": { "height": "36px" } }).form; //创建窗体
  5941. _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); } }
  5942. break;
  5943. case "evaluate":
  5944. _formdiv = new U.UF.UI.form(
  5945. "学生评价",
  5946. $$("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 }), {
  5947. "id": "evaluate",
  5948. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5949. "onresize": function () { }
  5950. }, {
  5951. closecallback: function () { }
  5952. }, { "style": { "height": "36px" } }).form; //创建窗体
  5953. _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); } }
  5954. break;
  5955. case "sys":
  5956. _formdiv = new U.UF.UI.form(
  5957. "目标管理",
  5958. $$("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 }), {
  5959. "id": "sys",
  5960. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5961. "onresize": function () { }
  5962. }, {
  5963. closecallback: function () { }
  5964. }, { "style": { "height": "36px" } }).form; //创建窗体
  5965. _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); } }
  5966. break;
  5967. case "courseDesign":
  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": "/course-design-vue" }), {
  5971. "id": "courseDesign",
  5972. "style": { "width": "90%", "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/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5978. break;
  5979. case "program":
  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": "https://x.cocorobo.cn" }), {
  5983. "id": "program",
  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/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5990. break;
  5991. case "class":
  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/#/class?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5995. "id": "class",
  5996. "style": { "width": "90%", "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/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6002. break;
  6003. case "Grade":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/grade?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6007. "id": "Grade",
  6008. "style": { "width": "90%", "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/Grade.png)" }, "name": "年级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6014. break;
  6015. case "teacherOffice":
  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/#/teacherOffice?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6019. "id": "teacherOffice",
  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/teacherOffice.png)" }, "name": "教研室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6026. break;
  6027. case "my":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  6031. "id": "my",
  6032. "style": { "width": "42%", "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/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6038. break;
  6039. case "notice":
  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/#/notice?userid=" + _userid + "&org=" + _org }), {
  6043. "id": "notice",
  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/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6050. break;
  6051. case "library":
  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/#/library?userid=" + _userid + "&org=" + _org }), {
  6055. "id": "library",
  6056. "style": { "width": "90%", "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/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6062. break;
  6063. case "whiteboard":
  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": "https://beta.iwb.cocorobo.cn/" }), {
  6067. "id": "whiteboard",
  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/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6074. break;
  6075. case "investigation":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  6079. "id": "investigation",
  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/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6086. break;
  6087. case "note":
  6088. _formdiv = new U.UF.UI.form(
  6089. "便签分类",
  6090. $$("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 }), {
  6091. "id": "note",
  6092. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6093. "onresize": function () { }
  6094. }, {
  6095. closecallback: function () { }
  6096. }, { "style": { "height": "36px" } }).form; //创建窗体
  6097. _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); } }
  6098. break;
  6099. // case "score":
  6100. // _formdiv = new U.UF.UI.form(
  6101. // "量规评分",
  6102. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6103. // "id": "score",
  6104. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6105. // "onresize": function() {}
  6106. // }, {
  6107. // closecallback: function() {}
  6108. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6109. // _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); } }
  6110. // break;
  6111. case "mind":
  6112. _formdiv = new U.UF.UI.form(
  6113. "思维导图",
  6114. $$("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"
  6115. "id": "mind",
  6116. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6117. "onresize": function () { }
  6118. }, {
  6119. closecallback: function () { }
  6120. }, { "style": { "height": "36px" } }).form; //创建窗体
  6121. _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); } }
  6122. break;
  6123. case "doc":
  6124. // U.MD.D.I.isRoom();
  6125. _formdiv = new U.UF.UI.form(
  6126. "协同文档",
  6127. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6128. "id": "doc",
  6129. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6130. "onresize": function () { }
  6131. }, {
  6132. closecallback: function () { }
  6133. }, { "style": { "height": "36px" } }).form; //创建窗体
  6134. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6135. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6136. })
  6137. _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); } }
  6138. break;
  6139. case "study":
  6140. _formdiv = new U.UF.UI.form(
  6141. "课程中心",
  6142. $$("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
  6143. "id": "study",
  6144. "style": { "width": "100%", "height": "100%", "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/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6150. break;
  6151. case "mindNetwork": //好友打开
  6152. _formdiv = new U.UF.UI.form(
  6153. "思维网格",
  6154. $$("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 }), {
  6155. "id": "mindNetwork",
  6156. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6157. "onresize": function () { }
  6158. }, {
  6159. closecallback: function () { }
  6160. }, { "style": { "height": "36px" } }).form; //创建窗体
  6161. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6162. break;
  6163. case "train": //好友打开
  6164. _formdiv = new U.UF.UI.form(
  6165. "训练平台",
  6166. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6167. "id": "mindNetwork",
  6168. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6169. "onresize": function () { }
  6170. }, {
  6171. closecallback: function () { }
  6172. }, { "style": { "height": "36px" } }).form; //创建窗体
  6173. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6174. break;
  6175. case "teacherClassRoom": //好友打开
  6176. _formdiv = new U.UF.UI.form(
  6177. "实时课堂",
  6178. $$("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 }), {
  6179. "id": "teacherClassRoom",
  6180. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6181. "onresize": function () { }
  6182. }, {
  6183. closecallback: function () { }
  6184. }, { "style": { "height": "36px" } }).form; //创建窗体
  6185. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6186. setTimeout(() => {
  6187. U.UF.F.windowZooming(_formdiv)
  6188. }, 0);
  6189. break;
  6190. }
  6191. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6192. switch (str) {
  6193. case "project": //好友打开
  6194. _formdiv = new U.UF.UI.form(
  6195. "课程管理",
  6196. $$("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 }), {
  6197. "id": "project",
  6198. "style": { "width": "90%", "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/project.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6204. break;
  6205. case "evaluate":
  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/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6209. "id": "evaluate",
  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/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6216. break;
  6217. case "notice":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/notice?userid=" + _userid + "&org=" + _org }), {
  6221. "id": "notice",
  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/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6228. break;
  6229. case "stuLibrary":
  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/#/studyLibrary?userid=" + _userid + "&org=" + _org }), {
  6233. "id": "stuLibrary",
  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/stuLibrary.png)" }, "name": "学习资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6240. break;
  6241. case "program":
  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": "https://x.cocorobo.cn" }), {
  6245. "id": "program",
  6246. "style": { "width": "70%", "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/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6252. break;
  6253. case "whiteboard":
  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": "https://beta.iwb.cocorobo.cn/" }), {
  6257. "id": "whiteboard",
  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/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6264. break;
  6265. case "investigation":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  6269. "id": "investigation",
  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/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6276. break;
  6277. case "mind":
  6278. _formdiv = new U.UF.UI.form(
  6279. "思维导图",
  6280. $$("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"
  6281. "id": "mind",
  6282. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6283. "onresize": function () { }
  6284. }, {
  6285. closecallback: function () { }
  6286. }, { "style": { "height": "36px" } }).form; //创建窗体
  6287. _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); } }
  6288. break;
  6289. case "doc":
  6290. // U.MD.D.I.isRoom();
  6291. _formdiv = new U.UF.UI.form(
  6292. "协同文档",
  6293. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6294. "id": "doc",
  6295. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6296. "onresize": function () { }
  6297. }, {
  6298. closecallback: function () { }
  6299. }, { "style": { "height": "36px" } }).form; //创建窗体
  6300. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6301. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6302. })
  6303. _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); } }
  6304. break;
  6305. case "study":
  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=" + _TscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  6309. "id": "study",
  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 "train": //好友打开
  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": "https://xunlian.cocorobo.cn/" }), {
  6333. "id": "train",
  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/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6340. break;
  6341. case "sys":
  6342. _formdiv = new U.UF.UI.form(
  6343. "目标管理",
  6344. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/evaluation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6345. "id": "sys",
  6346. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6347. "onresize": function () { }
  6348. }, {
  6349. closecallback: function () { }
  6350. }, { "style": { "height": "36px" } }).form; //创建窗体
  6351. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6352. break;
  6353. case "courseDesign":
  6354. _formdiv = new U.UF.UI.form(
  6355. "项目设计",
  6356. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6357. "id": "courseDesign",
  6358. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6359. "onresize": function () { }
  6360. }, {
  6361. closecallback: function () { }
  6362. }, { "style": { "height": "36px" } }).form; //创建窗体
  6363. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6364. break;
  6365. }
  6366. } else if (!_type) {
  6367. switch (str) {
  6368. case "my":
  6369. _formdiv = new U.UF.UI.form(
  6370. "我的资料",
  6371. $$("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 }), {
  6372. "id": "my",
  6373. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6374. "onresize": function () { }
  6375. }, {
  6376. closecallback: function () { }
  6377. }, { "style": { "height": "36px" } }).form; //创建窗体
  6378. _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); } }
  6379. break;
  6380. }
  6381. }
  6382. switch (str) {
  6383. // AIprogram2 AI体验 aihub.cocorobo.cn
  6384. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6385. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6386. case "formulaEdi": //公式编辑
  6387. _formdiv = new U.UF.UI.form(
  6388. "公式编辑",
  6389. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6390. "id": "formulaEdi",
  6391. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6392. "onresize": function () { }
  6393. }, {
  6394. closecallback: function () { }
  6395. }, { "style": { "height": "36px" } }).form; //创建窗体
  6396. _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); } }
  6397. break;
  6398. case "molStr": //分子结构
  6399. _formdiv = new U.UF.UI.form(
  6400. "分子结构",
  6401. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6402. "id": "molStr",
  6403. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6404. "onresize": function () { }
  6405. }, {
  6406. closecallback: function () { }
  6407. }, { "style": { "height": "36px" } }).form; //创建窗体
  6408. _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); } }
  6409. break;
  6410. case "timeAxis": //时间轴
  6411. _formdiv = new U.UF.UI.form(
  6412. "时间轴",
  6413. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6414. "id": "timeAxis",
  6415. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6416. "onresize": function () { }
  6417. }, {
  6418. closecallback: function () { }
  6419. }, { "style": { "height": "36px" } }).form; //创建窗体
  6420. _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); } }
  6421. break;
  6422. case "AIprogram2": //AI体验
  6423. _formdiv = new U.UF.UI.form(
  6424. "AI体验",
  6425. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6426. "id": "AIprogram2",
  6427. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6428. "onresize": function () { }
  6429. }, {
  6430. closecallback: function () { }
  6431. }, { "style": { "height": "36px" } }).form; //创建窗体
  6432. _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); } }
  6433. break;
  6434. case "Pythonprogram": //python编程
  6435. _formdiv = new U.UF.UI.form(
  6436. "Python编程",
  6437. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6438. "id": "Pythonprogram",
  6439. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6440. "onresize": function () { }
  6441. }, {
  6442. closecallback: function () { }
  6443. }, { "style": { "height": "36px" } }).form; //创建窗体
  6444. _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); } }
  6445. break;
  6446. case "AIprogram": //ai编程
  6447. _formdiv = new U.UF.UI.form(
  6448. "AI编程平台",
  6449. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6450. "id": "AIprogram",
  6451. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6452. "onresize": function () { }
  6453. }, {
  6454. closecallback: function () { }
  6455. }, { "style": { "height": "36px" } }).form; //创建窗体
  6456. _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); } }
  6457. break;
  6458. case "CocoPi": //CocoPi
  6459. _formdiv = new U.UF.UI.form(
  6460. "CocoPi",
  6461. $$("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" }), {
  6462. "id": "CocoPi",
  6463. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6464. "onresize": function () { }
  6465. }, {
  6466. closecallback: function () { }
  6467. }, { "style": { "height": "36px" } }).form; //创建窗体
  6468. _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); } }
  6469. break;
  6470. case "Wood": //Wood
  6471. _formdiv = new U.UF.UI.form(
  6472. "海龟编程",
  6473. $$("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/" }), {
  6474. "id": "Wood",
  6475. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6476. "onresize": function () { }
  6477. }, {
  6478. closecallback: function () { }
  6479. }, { "style": { "height": "36px" } }).form; //创建窗体
  6480. _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); } }
  6481. break;
  6482. case "car": //模拟驾驶
  6483. _formdiv = new U.UF.UI.form(
  6484. "模拟驾驶",
  6485. $$("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/" }), {
  6486. "id": "car",
  6487. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6488. "onresize": function () { }
  6489. }, {
  6490. closecallback: function () { }
  6491. }, { "style": { "height": "36px" } }).form; //创建窗体
  6492. _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); } }
  6493. break;
  6494. case "lineSearch": //路径搜索
  6495. _formdiv = new U.UF.UI.form(
  6496. "路径搜索",
  6497. $$("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/" }), {
  6498. "id": "lineSearch",
  6499. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6500. "onresize": function () { }
  6501. }, {
  6502. closecallback: function () { }
  6503. }, { "style": { "height": "36px" } }).form; //创建窗体
  6504. _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); } }
  6505. break;
  6506. case "deepLearning": //深度学习
  6507. _formdiv = new U.UF.UI.form(
  6508. "深度学习",
  6509. $$("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/#" }), {
  6510. "id": "deepLearning",
  6511. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6512. "onresize": function () { }
  6513. }, {
  6514. closecallback: function () { }
  6515. }, { "style": { "height": "36px" } }).form; //创建窗体
  6516. _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); } }
  6517. break;
  6518. case "allHistory": //深度学习
  6519. _formdiv = new U.UF.UI.form(
  6520. "全历史",
  6521. $$("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/" }), {
  6522. "id": "allHistory",
  6523. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6524. "onresize": function () { }
  6525. }, {
  6526. closecallback: function () { }
  6527. }, { "style": { "height": "36px" } }).form; //创建窗体
  6528. _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); } }
  6529. break;
  6530. case "chatPDF": //ai编程
  6531. _formdiv = new U.UF.UI.form(
  6532. "chatPDF",
  6533. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6534. "id": "chatPDF",
  6535. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6536. "onresize": function () { }
  6537. }, {
  6538. closecallback: function () { }
  6539. }, { "style": { "height": "36px" } }).form; //创建窗体
  6540. _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); } }
  6541. break;
  6542. case "resources": //国家教育
  6543. _formdiv = new U.UF.UI.form(
  6544. "国家教育",
  6545. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6546. "id": "resources",
  6547. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6548. "onresize": function () { }
  6549. }, {
  6550. closecallback: function () { }
  6551. }, { "style": { "height": "36px" } }).form; //创建窗体
  6552. _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); } }
  6553. break;
  6554. case "codeEdit": //源码编辑
  6555. _formdiv = new U.UF.UI.form(
  6556. "源码编辑",
  6557. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6558. "id": "codeEdit",
  6559. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6560. "onresize": function () { }
  6561. }, {
  6562. closecallback: function () { }
  6563. }, { "style": { "height": "36px" } }).form; //创建窗体
  6564. _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); } }
  6565. break; //
  6566. case "MindMap": //MindMap
  6567. _formdiv = new U.UF.UI.form(
  6568. "MindMap",
  6569. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6570. "id": "MindMap",
  6571. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6572. "onresize": function () { }
  6573. }, {
  6574. closecallback: function () { }
  6575. }, { "style": { "height": "36px" } }).form; //创建窗体
  6576. _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); } }
  6577. break;
  6578. case "netWorkPanel": //netWorkPanel
  6579. _formdiv = new U.UF.UI.form(
  6580. "netWorkPanel",
  6581. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6582. "id": "netWorkPanel",
  6583. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6584. "onresize": function () { }
  6585. }, {
  6586. closecallback: function () { }
  6587. }, { "style": { "height": "36px" } }).form; //创建窗体
  6588. _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); } }
  6589. break;
  6590. case "GeoGebra": //GeoGebra
  6591. _formdiv = new U.UF.UI.form(
  6592. "GeoGebra",
  6593. $$("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" }), {
  6594. "id": "GeoGebra",
  6595. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6596. "onresize": function () { }
  6597. }, {
  6598. closecallback: function () { }
  6599. }, { "style": { "height": "36px" } }).form; //创建窗体
  6600. _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); } }
  6601. break;
  6602. case "translation": //翻译
  6603. _formdiv = new U.UF.UI.form(
  6604. "翻译",
  6605. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6606. "id": "translation",
  6607. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6608. "onresize": function () { }
  6609. }, {
  6610. closecallback: function () { }
  6611. }, { "style": { "height": "36px" } }).form; //创建窗体
  6612. _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); } }
  6613. break;
  6614. case "mohe": //魔盒
  6615. _formdiv = new U.UF.UI.form(
  6616. "魔盒识字",
  6617. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6618. "id": "mohe",
  6619. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6620. "onresize": function () { }
  6621. }, {
  6622. closecallback: function () { }
  6623. }, { "style": { "height": "36px" } }).form; //创建窗体
  6624. _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); } }
  6625. break;
  6626. case "24game": //24点
  6627. _formdiv = new U.UF.UI.form(
  6628. "24点",
  6629. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6630. "id": "24game",
  6631. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6632. "onresize": function () { }
  6633. }, {
  6634. closecallback: function () { }
  6635. }, { "style": { "height": "36px" } }).form; //创建窗体
  6636. _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); } }
  6637. break;
  6638. case "case":
  6639. _formdiv = new U.UF.UI.form(
  6640. "课程进展",
  6641. $$("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 }), {
  6642. "id": "case",
  6643. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6644. "onresize": function () { }
  6645. }, {
  6646. closecallback: function () { }
  6647. }, { "style": { "height": "36px" } }).form; //创建窗体
  6648. _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); } }
  6649. break;
  6650. case "snf":
  6651. _formdiv = new U.UF.UI.form(
  6652. "赛诺梵",
  6653. $$("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" }), {
  6654. "id": "snf",
  6655. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6656. "onresize": function () { }
  6657. }, {
  6658. closecallback: function () { }
  6659. }, { "style": { "height": "36px" } }).form; //创建窗体
  6660. _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); } }
  6661. break;
  6662. case "hanFamily":
  6663. _formdiv = new U.UF.UI.form(
  6664. "汉字家族",
  6665. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6666. "id": "hanFamily",
  6667. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6668. "onresize": function () { }
  6669. }, {
  6670. closecallback: function () { }
  6671. }, { "style": { "height": "36px" } }).form; //创建窗体
  6672. _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); } }
  6673. break;
  6674. case "hanClassics":
  6675. _formdiv = new U.UF.UI.form(
  6676. "国学经典",
  6677. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6678. "id": "hanClassics",
  6679. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6680. "onresize": function () { }
  6681. }, {
  6682. closecallback: function () { }
  6683. }, { "style": { "height": "36px" } }).form; //创建窗体
  6684. _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); } }
  6685. break;
  6686. case "hanTraining":
  6687. _formdiv = new U.UF.UI.form(
  6688. "笔画训练",
  6689. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6690. "id": "hanTraining",
  6691. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6692. "onresize": function () { }
  6693. }, {
  6694. closecallback: function () { }
  6695. }, { "style": { "height": "36px" } }).form; //创建窗体
  6696. _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); } }
  6697. break;
  6698. case "hanClass":
  6699. _formdiv = new U.UF.UI.form(
  6700. "书法课堂",
  6701. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6702. "id": "hanClass",
  6703. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6704. "onresize": function () { }
  6705. }, {
  6706. closecallback: function () { }
  6707. }, { "style": { "height": "36px" } }).form; //创建窗体
  6708. _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); } }
  6709. break;
  6710. case "han":
  6711. _formdiv = new U.UF.UI.form(
  6712. "汉字宫",
  6713. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6714. "id": "han",
  6715. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6716. "onresize": function () { }
  6717. }, {
  6718. closecallback: function () { }
  6719. }, { "style": { "height": "36px" } }).form; //创建窗体
  6720. _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); } }
  6721. break;
  6722. case "projectGM": //课程管理
  6723. _formdiv = new U.UF.UI.form(
  6724. "课程管理",
  6725. $$("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 }), {
  6726. "id": "projectGM",
  6727. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6728. "onresize": function () { }
  6729. }, {
  6730. closecallback: function () { }
  6731. }, { "style": { "height": "36px" } }).form; //创建窗体
  6732. _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); } }
  6733. break;
  6734. case "studyGM": //课程中心
  6735. _formdiv = new U.UF.UI.form(
  6736. "课程中心",
  6737. $$("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
  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/gm/learning.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6745. break;
  6746. // studentGM
  6747. case "studentGM": //学生管理
  6748. _formdiv = new U.UF.UI.form(
  6749. "学生管理",
  6750. $$("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 }), {
  6751. "id": "studentGM",
  6752. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6753. "onresize": function () { }
  6754. }, {
  6755. closecallback: function () { }
  6756. }, { "style": { "height": "36px" } }).form; //创建窗体
  6757. _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); } }
  6758. break;
  6759. case "evaluateGM": //学生评价
  6760. _formdiv = new U.UF.UI.form(
  6761. "学生评价",
  6762. $$("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 }), {
  6763. "id": "evaluateGM",
  6764. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6765. "onresize": function () { }
  6766. }, {
  6767. closecallback: function () { }
  6768. }, { "style": { "height": "36px" } }).form; //创建窗体
  6769. _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); } }
  6770. break;
  6771. // classGM
  6772. case "classGM": //班级管理
  6773. _formdiv = new U.UF.UI.form(
  6774. "班级管理",
  6775. $$("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 }), {
  6776. "id": "classGM",
  6777. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6778. "onresize": function () { }
  6779. }, {
  6780. closecallback: function () { }
  6781. }, { "style": { "height": "36px" } }).form; //创建窗体
  6782. _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); } }
  6783. break;
  6784. // dataGM
  6785. case "dataGM":
  6786. _formdiv = new U.UF.UI.form(
  6787. "我的资料",
  6788. $$("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 }), {
  6789. "id": "dataGM",
  6790. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6791. "onresize": function () { }
  6792. }, {
  6793. closecallback: function () { }
  6794. }, { "style": { "height": "36px" } }).form; //创建窗体
  6795. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/data.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6796. break;
  6797. // caseGM
  6798. case "caseGM": //课程进展
  6799. _formdiv = new U.UF.UI.form(
  6800. "课程进展",
  6801. $$("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 }), {
  6802. "id": "caseGM",
  6803. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6804. "onresize": function () { }
  6805. }, {
  6806. closecallback: function () { }
  6807. }, { "style": { "height": "36px" } }).form; //创建窗体
  6808. _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); } }
  6809. break;
  6810. // meterialGM
  6811. case "meterialGM": //素材库
  6812. _formdiv = new U.UF.UI.form(
  6813. "素材库",
  6814. $$("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 }), {
  6815. "id": "meterialGM",
  6816. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6817. "onresize": function () { }
  6818. }, {
  6819. closecallback: function () { }
  6820. }, { "style": { "height": "36px" } }).form; //创建窗体
  6821. _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); } }
  6822. break;
  6823. // evaluateSGM
  6824. case "evaluateSGM": //我的评价
  6825. _formdiv = new U.UF.UI.form(
  6826. "我的评价",
  6827. $$("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 }), {
  6828. "id": "evaluateSGM",
  6829. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6830. "onresize": function () { }
  6831. }, {
  6832. closecallback: function () { }
  6833. }, { "style": { "height": "36px" } }).form; //创建窗体
  6834. _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); } }
  6835. break;
  6836. case "jupyter": //jupyter
  6837. _formdiv = new U.UF.UI.form(
  6838. "jupyter",
  6839. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6840. "id": "jupyter",
  6841. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6842. "onresize": function () { }
  6843. }, {
  6844. closecallback: function () { }
  6845. }, { "style": { "height": "36px" } }).form; //创建窗体
  6846. _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); } }
  6847. break;
  6848. case "number": //数字实验室
  6849. _formdiv = new U.UF.UI.form(
  6850. "数字实验室",
  6851. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6852. "id": "number",
  6853. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6854. "onresize": function () { }
  6855. }, {
  6856. closecallback: function () { }
  6857. }, { "style": { "height": "36px" } }).form; //创建窗体
  6858. _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); } }
  6859. break;
  6860. case "studentCourse": //项目管理 学生
  6861. _formdiv = new U.UF.UI.form(
  6862. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6863. $$("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 }), {
  6864. "id": "studentCourse",
  6865. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6866. "onresize": function () { }
  6867. }, {
  6868. closecallback: function () { }
  6869. }, { "style": { "height": "36px" } }).form; //创建窗体
  6870. _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); } }
  6871. break;
  6872. case "studentCourseS": //项目管理 老师
  6873. _formdiv = new U.UF.UI.form(
  6874. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6875. $$("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 }), {
  6876. "id": "studentCourseS",
  6877. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6878. "onresize": function () { }
  6879. }, {
  6880. closecallback: function () { }
  6881. }, { "style": { "height": "36px" } }).form; //创建窗体
  6882. _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); } }
  6883. break;
  6884. case "studentIndex": //项目中心
  6885. _formdiv = new U.UF.UI.form(
  6886. "项目中心",
  6887. $$("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 }), {
  6888. "id": "studentIndex",
  6889. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6890. "onresize": function () { }
  6891. }, {
  6892. closecallback: function () { }
  6893. }, { "style": { "height": "36px" } }).form; //创建窗体
  6894. _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); } }
  6895. break;
  6896. case "CaseDesignS":
  6897. _formdiv = new U.UF.UI.form(
  6898. "项目进展",
  6899. $$("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 }), {
  6900. "id": "case",
  6901. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6902. "onresize": function () { }
  6903. }, {
  6904. closecallback: function () { }
  6905. }, { "style": { "height": "36px" } }).form; //创建窗体
  6906. _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); } }
  6907. break;
  6908. case "tcStudent": //腾讯学生管理
  6909. _formdiv = new U.UF.UI.form(
  6910. "学生管理",
  6911. $$("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 }), {
  6912. "id": "tcStudent",
  6913. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6914. "onresize": function () { }
  6915. }, {
  6916. closecallback: function () { }
  6917. }, { "style": { "height": "36px" } }).form; //创建窗体
  6918. _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); } }
  6919. break;
  6920. case "tcSchool": //腾讯学校管理
  6921. _formdiv = new U.UF.UI.form(
  6922. "学校管理",
  6923. $$("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 }), {
  6924. "id": "tcSchool",
  6925. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6926. "onresize": function () { }
  6927. }, {
  6928. closecallback: function () { }
  6929. }, { "style": { "height": "36px" } }).form; //创建窗体
  6930. _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); } }
  6931. break;
  6932. case "tcTeacher": //腾讯学校管理
  6933. _formdiv = new U.UF.UI.form(
  6934. "教师管理",
  6935. $$("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 }), {
  6936. "id": "tcTeacher",
  6937. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6938. "onresize": function () { }
  6939. }, {
  6940. closecallback: function () { }
  6941. }, { "style": { "height": "36px" } }).form; //创建窗体
  6942. _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); } }
  6943. break;
  6944. case "teacher":
  6945. _formdiv = new U.UF.UI.form(
  6946. "教师管理",
  6947. $$("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 }), {
  6948. "id": "teacher",
  6949. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6950. "onresize": function () { }
  6951. }, {
  6952. closecallback: function () { }
  6953. }, { "style": { "height": "36px" } }).form; //创建窗体
  6954. _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); } }
  6955. break;
  6956. case "tcData": //腾讯我的资料
  6957. _formdiv = new U.UF.UI.form(
  6958. "我的资料",
  6959. $$("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 }), {
  6960. "id": "tcData",
  6961. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6962. "onresize": function () { }
  6963. }, {
  6964. closecallback: function () { }
  6965. }, { "style": { "height": "36px" } }).form; //创建窗体
  6966. _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); } }
  6967. break;
  6968. case "tcNotice": //腾讯消息通知
  6969. _formdiv = new U.UF.UI.form(
  6970. "消息通知",
  6971. $$("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 }), {
  6972. "id": "tcNotice",
  6973. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6974. "onresize": function () { }
  6975. }, {
  6976. closecallback: function () { }
  6977. }, { "style": { "height": "36px" } }).form; //创建窗体
  6978. _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); } }
  6979. break;
  6980. case "myReport": //好友打开
  6981. _formdiv = new U.UF.UI.form(
  6982. "我的评价",
  6983. $$("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 }), {
  6984. "id": "myReport",
  6985. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6986. "onresize": function () { }
  6987. }, {
  6988. closecallback: function () { }
  6989. }, { "style": { "height": "36px" } }).form; //创建窗体
  6990. _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); } }
  6991. break;
  6992. case "learnAna": //好友打开
  6993. _formdiv = new U.UF.UI.form(
  6994. "学习分析",
  6995. $$("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 }), {
  6996. "id": "learnAna",
  6997. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6998. "onresize": function () { }
  6999. }, {
  7000. closecallback: function () { }
  7001. }, { "style": { "height": "36px" } }).form; //创建窗体
  7002. _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); } }
  7003. break;
  7004. case "AIChat": //AI共创
  7005. _formdiv = new U.UF.UI.form(
  7006. "AI共创",
  7007. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  7008. "id": "AIChat",
  7009. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  7010. "onresize": function () { }
  7011. }, {
  7012. istop: true,
  7013. closecallback: function () { $("#aichat_icon").remove(); },
  7014. narrowcallback: function () {
  7015. if (!$("#aichat_icon")[0]) {
  7016. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  7017. }
  7018. },
  7019. }, { "style": { "height": "36px" } }).form; //创建窗体
  7020. _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); } }
  7021. break;
  7022. case "ainew": //AI共创
  7023. _formdiv = new U.UF.UI.form(
  7024. "AI协同",
  7025. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  7026. "id": "ainew",
  7027. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7028. "onresize": function () { }
  7029. }, {
  7030. closecallback: function () { }
  7031. }, { "style": { "height": "36px" } }).form; //创建窗体
  7032. _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); } }
  7033. break;
  7034. case "gpt4": //gpt4
  7035. _formdiv = new U.UF.UI.form(
  7036. "AI助手",
  7037. $$("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 }), {
  7038. "id": "gpt4",
  7039. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7040. "onresize": function () { }
  7041. }, {
  7042. closecallback: function () { }
  7043. }, { "style": { "height": "36px" } }).form; //创建窗体
  7044. _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); } }
  7045. break;
  7046. case "aigpt": //gpt4
  7047. _formdiv = new U.UF.UI.form(
  7048. "AI助手+",
  7049. $$("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 }), {
  7050. "id": "aigpt",
  7051. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7052. "onresize": function () { }
  7053. }, {
  7054. closecallback: function () {
  7055. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  7056. }
  7057. }, { "style": { "height": "36px" } }).form; //创建窗体
  7058. _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); } }
  7059. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7060. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  7061. })
  7062. break;
  7063. case "aiKnowledge": //aiKnowledge
  7064. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7065. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  7066. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7067. }
  7068. _formdiv = new U.UF.UI.form(
  7069. "知识建构",
  7070. $$("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 }), {
  7071. "id": "aiKnowledge",
  7072. "style": { "width": "100%", "height": "100%", "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/aiKnowledge.png)" }, "name": "知识建构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7078. break;
  7079. case "futureClass": //AI共创
  7080. _formdiv = new U.UF.UI.form(
  7081. "协同建构",
  7082. $$("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
  7083. "id": "synergyCourse",
  7084. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7085. "onresize": function () { }
  7086. }, {
  7087. closecallback: function () {
  7088. $("iframe", _formdiv)[0].contentWindow.loginout();
  7089. }
  7090. }, { "style": { "height": "36px" } }).form; //创建窗体
  7091. _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); } }
  7092. break;
  7093. case "aiagent": //ai agent
  7094. _formdiv = new U.UF.UI.form(
  7095. "AI Agent",
  7096. $$("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" }), {
  7097. "id": "AIAgent",
  7098. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7099. "onresize": function () { }
  7100. }, {
  7101. closecallback: function () { }
  7102. }, { "style": { "height": "36px" } }).form; //创建窗体
  7103. _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); } }
  7104. break;
  7105. case "dataBoard": //数据看板
  7106. _formdiv = new U.UF.UI.form(
  7107. "数据看板",
  7108. $$("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 }), {
  7109. "id": "dataBoard",
  7110. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7111. "onresize": function () { }
  7112. }, {
  7113. closecallback: function () { }
  7114. }, { "style": { "height": "36px" } }).form; //创建窗体
  7115. _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); } }
  7116. break;
  7117. case "dataBoardSies": //数据融合
  7118. _formdiv = new U.UF.UI.form(
  7119. "数据融合",
  7120. $$("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 }), {
  7121. "id": "dataBoardSies",
  7122. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7123. "onresize": function () { }
  7124. }, {
  7125. closecallback: function () { }
  7126. }, { "style": { "height": "36px" } }).form; //创建窗体
  7127. _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); } }
  7128. break;
  7129. case "dataBoardNew": //数据看板
  7130. _formdiv = new U.UF.UI.form(
  7131. "综合看板",
  7132. $$("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 }), {
  7133. "id": "dataBoardNew",
  7134. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7135. "onresize": function () { }
  7136. }, {
  7137. closecallback: function () { }
  7138. }, { "style": { "height": "36px" } }).form; //创建窗体
  7139. _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); } }
  7140. break;
  7141. case "dataBoardTest": //数据看板
  7142. _formdiv = new U.UF.UI.form(
  7143. "评测看板",
  7144. $$("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 }), {
  7145. "id": "dataBoardTest",
  7146. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7147. "onresize": function () { }
  7148. }, {
  7149. closecallback: function () { }
  7150. }, { "style": { "height": "36px" } }).form; //创建窗体
  7151. _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); } }
  7152. break;
  7153. case "AIAnalyse": //AI共创
  7154. _formdiv = new U.UF.UI.form(
  7155. "AI分析",
  7156. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  7157. "id": "AIAnalyse",
  7158. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7159. "onresize": function () { }
  7160. }, {
  7161. closecallback: function () { }
  7162. }, { "style": { "height": "36px" } }).form; //创建窗体
  7163. _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); } }
  7164. break;
  7165. case "studioCourse": //AI共创
  7166. _formdiv = new U.UF.UI.form(
  7167. "工作管理",
  7168. $$("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 }), {
  7169. "id": "studioCourse",
  7170. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7171. "onresize": function () { }
  7172. }, {
  7173. closecallback: function () { }
  7174. }, { "style": { "height": "36px" } }).form; //创建窗体
  7175. _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); } }
  7176. break;
  7177. case "studioIndex": //AI共创
  7178. _formdiv = new U.UF.UI.form(
  7179. "工作中心",
  7180. $$("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 }), {
  7181. "id": "studioIndex",
  7182. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7183. "onresize": function () { }
  7184. }, {
  7185. closecallback: function () { }
  7186. }, { "style": { "height": "36px" } }).form; //创建窗体
  7187. _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); } }
  7188. break;
  7189. case "source":
  7190. _formdiv = new U.UF.UI.form(
  7191. "教学资源",
  7192. $$("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 }), {
  7193. "id": "source",
  7194. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7195. "onresize": function () { }
  7196. }, {
  7197. closecallback: function () { }
  7198. }, { "style": { "height": "36px" } }).form; //创建窗体
  7199. _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); } }
  7200. break;
  7201. case "testTeacher":
  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/#/test?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7205. "id": "testTeacher",
  7206. "style": { "width": "80%", "height": "80%", "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/testTeacher.png)" }, "name": "智能表单", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7212. break;
  7213. case "testStudent":
  7214. _formdiv = new U.UF.UI.form(
  7215. "教师中心",
  7216. $$("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 }), {
  7217. "id": "testStudent",
  7218. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7219. "onresize": function () { }
  7220. }, {
  7221. closecallback: function () { }
  7222. }, { "style": { "height": "36px" } }).form; //创建窗体
  7223. _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); } }
  7224. break;
  7225. case "testTeacherSies":
  7226. _formdiv = new U.UF.UI.form(
  7227. "教师管理",
  7228. $$("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 }), {
  7229. "id": "testTeacherSies",
  7230. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7231. "onresize": function () { }
  7232. }, {
  7233. closecallback: function () { }
  7234. }, { "style": { "height": "36px" } }).form; //创建窗体
  7235. _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); } }
  7236. break;
  7237. case "testStudentSies":
  7238. _formdiv = new U.UF.UI.form(
  7239. "教师中心",
  7240. $$("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 }), {
  7241. "id": "testStudentSies",
  7242. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7243. "onresize": function () { }
  7244. }, {
  7245. closecallback: function () { }
  7246. }, { "style": { "height": "36px" } }).form; //创建窗体
  7247. _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); } }
  7248. break;
  7249. case "ytpbl": //消息通知
  7250. _formdiv = new U.UF.UI.form(
  7251. "案例征集",
  7252. $$("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 }), {
  7253. "id": "ytpbl",
  7254. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7255. "onresize": function () { }
  7256. }, {
  7257. closecallback: function () { }
  7258. }, { "style": { "height": "36px" } }).form; //创建窗体
  7259. _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); } }
  7260. // 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");
  7261. break;
  7262. case "aiCourseResource": //人工智能窗体
  7263. _formdiv = new U.UF.UI.form(
  7264. false,
  7265. $$("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 }), {
  7266. "id": "aiCourseResource",
  7267. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7268. "onresize": function () { },
  7269. "isdrag": false,
  7270. }, {
  7271. closecallback: function () { }
  7272. }, { "style": { "height": "36px" } }).form; //创建窗体
  7273. _taskbar = ''
  7274. break;
  7275. case "szdjgCocooroboX": //图形化编程
  7276. _formdiv = new U.UF.UI.form(
  7277. "图形化编程",
  7278. $$("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" }), {
  7279. "id": "szdjgCocooroboX",
  7280. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7281. "onresize": function () { }
  7282. }, {
  7283. closecallback: function () { }
  7284. }, { "style": { "height": "36px" } }).form; //创建窗体
  7285. _taskbar = ''
  7286. break;
  7287. case "szdjgPython": //python编程
  7288. _formdiv = new U.UF.UI.form(
  7289. "Python编程",
  7290. $$("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" }), {
  7291. "id": "szdjgPython",
  7292. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7293. "onresize": function () { }
  7294. }, {
  7295. closecallback: function () { }
  7296. }, { "style": { "height": "36px" } }).form; //创建窗体
  7297. _taskbar = ''
  7298. break;
  7299. case "Record":
  7300. _formdiv = new U.UF.UI.form(
  7301. "观察记录",
  7302. $$("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 }), {
  7303. "id": "Record",
  7304. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7305. "onresize": function () { }
  7306. }, {
  7307. closecallback: function () { }
  7308. }, { "style": { "height": "36px" } }).form; //创建窗体
  7309. _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); } }
  7310. break;
  7311. case "aigptCourse":
  7312. _formdiv = new U.UF.UI.form(
  7313. "AI智能体",
  7314. $$("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' }), {
  7315. "id": "aigptCourse",
  7316. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7317. "onresize": function () { }
  7318. }, {
  7319. closecallback: function () { }
  7320. }, { "style": { "height": "36px" } }).form; //创建窗体
  7321. _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); } }
  7322. break;
  7323. case "classroomObservation":
  7324. _formdiv = new U.UF.UI.form(
  7325. "课堂观察",
  7326. $$("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 }), {
  7327. "id": "classroomObservation",
  7328. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7329. "onresize": function () { }
  7330. }, {
  7331. closecallback: function () { }
  7332. }, { "style": { "height": "36px" } }).form; //创建窗体
  7333. _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); } }
  7334. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7335. break;
  7336. case "pblCourse":
  7337. _formdiv = new U.UF.UI.form(
  7338. "学生PBL",
  7339. $$("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 }), {
  7340. "id": "pblCourse",
  7341. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7342. "onresize": function () { }
  7343. }, {
  7344. closecallback: function () { }
  7345. }, { "style": { "height": "36px" } }).form; //创建窗体
  7346. _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); } }
  7347. break;
  7348. case "appStore":
  7349. U.MD.D.addOp('','cocoflowOpen','')
  7350. _formdiv = new U.UF.UI.form(
  7351. "CocoFlow",
  7352. $$("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 }), {
  7353. "id": "appStore",
  7354. "style": { "width": "100%", "height": "100%", "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/appStore.png)" }, "name": "CocoFlow", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7360. break;
  7361. case "sassPlatform":
  7362. _formdiv = new U.UF.UI.form(
  7363. "Sass通用后台管理",
  7364. $$("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 }), {
  7365. "id": "sassPlatform",
  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/sassPlatForm.png)" }, "name": "sassPlatform", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7372. break;
  7373. case "EDU":
  7374. _formdiv = new U.UF.UI.form(
  7375. "EDU",
  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": "//edu.cocorobo.cn" }), {
  7377. "id": "EDU",
  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/EDU.png)" }, "name": "EDU", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7384. break;
  7385. case "knowledge":
  7386. _formdiv = new U.UF.UI.form(
  7387. "知识库",
  7388. $$("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 }), {
  7389. "id": "knowledge",
  7390. "style": { "width": "90%", "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/knowledge.png)" }, "name": "knowledge", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7396. break;
  7397. case "userExamine":
  7398. _formdiv = new U.UF.UI.form(
  7399. "账号申请",
  7400. $$("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" }), {
  7401. "id": "userExamine",
  7402. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7403. "onresize": function () { }
  7404. }, {
  7405. closecallback: function () { }
  7406. }, { "style": { "height": "36px" } }).form; //创建窗体
  7407. break;
  7408. case "cocoflowDeskTop": //cocoflowDeskTop
  7409. _formdiv = new U.UF.UI.form(
  7410. false,
  7411. $$("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 }), {
  7412. "id": "cocoflowDeskTop",
  7413. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7414. "onresize": function () { },
  7415. }, {
  7416. closecallback: function () { },
  7417. "isdrag": false,
  7418. }, { "style": { "height": "36px" } }).form; //创建窗体
  7419. _taskbar = ''
  7420. break;
  7421. case "liyuanLogin": //liyuanLogin
  7422. _formdiv = new U.UF.UI.form(
  7423. false,
  7424. $$("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" }), {
  7425. "id": "liyuanLogin",
  7426. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7427. "onresize": function () { },
  7428. }, {
  7429. closecallback: function () { },
  7430. isdrag: false,
  7431. isstretching: false,
  7432. isenlarge: false,
  7433. isnarrow: false
  7434. }, { "style": { "height": "36px" } }).form; //创建窗体
  7435. _taskbar = ''
  7436. break;
  7437. case "updatePaDialog":
  7438. _formdiv = new U.UF.UI.form(
  7439. "密码修改",
  7440. $$("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 }), {
  7441. "id": "updatePaDialog",
  7442. "style": { "width": "450px", "height": "610px", "overflow": 'hidden' },
  7443. "onresize": function () { },
  7444. }, {
  7445. closecallback: function () { },
  7446. isclose: false,
  7447. isdrag: false,
  7448. isstretching: false,
  7449. isenlarge: false,
  7450. isnarrow: false
  7451. }, { "style": { "height": "36px" } }).form; //创建窗体
  7452. break;
  7453. }
  7454. //U.MD.D.I.openClick(str);
  7455. //如果有任务栏信息
  7456. if (_taskbar) {
  7457. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7458. }
  7459. if(iframeBool){
  7460. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7461. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7462. // console.log("iframe进入");
  7463. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7464. // };
  7465. setTimeout(() => {
  7466. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7467. }, 2000);
  7468. }
  7469. }
  7470. U.MD.D.I.openApplicationWai = function (id, url, dom, array) {
  7471. var _formdiv, //创建任务栏时同时弹出的窗体元素。
  7472. _userinfo = US.userInfo, //登录用户信息
  7473. { userid: _userid, organizeid: _oid, type: _type, org: _org, role: _role, classid: _classId } = _userinfo; // 解构赋值获取用户信息
  7474. const _TscreenType = 1, _screenType = 2, _SscreenType = 3; // 常量定义
  7475. let iframeBool = true;
  7476. let queryString = ''
  7477. if(array && array.length){
  7478. const paramsMap = {
  7479. userid: _userid,
  7480. org: _org,
  7481. oid: _oid,
  7482. type: _type,
  7483. role: _role,
  7484. classId: _classId,
  7485. TscreenType: _TscreenType,
  7486. SscreenType: _SscreenType
  7487. };
  7488. const canshu = array
  7489. .filter(param => paramsMap[param] !== undefined)
  7490. .map(param => `${param}=${paramsMap[param]}`);
  7491. queryString = canshu.length ? (url.includes('?') ? '&' : '?') + canshu.join('&') : ''; // 生成查询字符串
  7492. }
  7493. let _url = url + queryString
  7494. if(U.UF.UI.form.allForm[id]){
  7495. iframeBool = false
  7496. }
  7497. _formdiv = new U.UF.UI.form(
  7498. false,
  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. {
  7501. "id": id,
  7502. "style": { "width": "100%", "height": "100%", "overflow": 'hidden',"position": 'unset',"boxShadow": "unset" },
  7503. "onresize": function () { },
  7504. },
  7505. {
  7506. closecallback: function () { },
  7507. isdrag: false,
  7508. isstretching: false,
  7509. isenlarge: false,
  7510. isnarrow: false
  7511. },
  7512. { "style": { "height": "36px" } },
  7513. undefined,
  7514. undefined,
  7515. dom
  7516. ).form
  7517. }
  7518. // U.MD.D.I.openClick = function(str){
  7519. // var click = '';
  7520. // switch(str){
  7521. // case 'friend':
  7522. // click = '我的好友';
  7523. // break;
  7524. // case 'domain':
  7525. // click = '域名管理';
  7526. // break;
  7527. // case 'disk':
  7528. // click = '我的云盘';
  7529. // break;
  7530. // case 'word':
  7531. // click = 'Word';
  7532. // break;
  7533. // case 'excel':
  7534. // click = 'Execl';
  7535. // break;
  7536. // case 'txt':
  7537. // click = '文本文件';
  7538. // break;
  7539. // case 'lookupFriend':
  7540. // click = '查找好友';
  7541. // break;
  7542. // case 'ftp':
  7543. // click = 'FTP';
  7544. // break;
  7545. // case 'group':
  7546. // click = '群组';
  7547. // break;
  7548. // case 'set':
  7549. // click = '我的设置';
  7550. // break;
  7551. // case 'systemSet':
  7552. // click = '系统设置';
  7553. // break;
  7554. // case 'boomYun':
  7555. // click = '互联办公';
  7556. // break;
  7557. // case 'xz':
  7558. // click = '云端下载';
  7559. // break;
  7560. // case 'client':
  7561. // click = '有思浏览器';
  7562. // break;
  7563. // case 'backEndProgramming':
  7564. // click = '在线后台编程';
  7565. // break;
  7566. // case 'frontEndProgramming':
  7567. // click = '在线前端编程';
  7568. // break;
  7569. // default: break;
  7570. // }
  7571. // if(U.MD.D.I.Ip && click){
  7572. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7573. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7574. // })
  7575. // }
  7576. // }
  7577. /**
  7578. *函数作用:ajax简易函数,使用post格式
  7579. *@param url {data} 后台地址
  7580. *@param data {data} 参数json
  7581. *@param fn {data} 回调函数
  7582. *
  7583. */
  7584. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7585. // var xhr = new XMLHttpRequest();
  7586. // xhr.open("GET",url,true);
  7587. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7588. // xhr.onreadystatechange = function(){
  7589. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7590. // fn.call(this,xhr.responseText);
  7591. // }
  7592. // };
  7593. // xhr.send();
  7594. // }
  7595. /*判断是否是内网IP*/
  7596. // U.MD.D.I.isInnerIPFn = function(str){
  7597. // var curPageUrl = str;
  7598. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7599. // curPageUrl =curPageUrl.replace(reg1,'');
  7600. // // console.log('curPageUrl-1 '+curPageUrl);
  7601. // var reg2 = /\:+/g;//替换冒号为一点
  7602. // curPageUrl =curPageUrl.replace(reg2,'.');
  7603. // // console.log('curPageUrl-2 '+curPageUrl);
  7604. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7605. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7606. // if(curPageUrl[2] != '16'){
  7607. // return ipAddress;
  7608. // }else{
  7609. // return false;
  7610. // }
  7611. // }
  7612. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7613. // //compatibility for firefox and chrome
  7614. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7615. // var pc = new myPeerConnection({
  7616. // iceServers: []
  7617. // }),
  7618. // noop = function() {},
  7619. // localIPs = {},
  7620. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7621. // key;
  7622. // function iterateIP(ip) {
  7623. // if (!localIPs[ip]) onNewIP(ip);
  7624. // localIPs[ip] = true;
  7625. // }
  7626. // //create a bogus data channel
  7627. // pc.createDataChannel("");
  7628. // // create offer and set local description
  7629. // pc.createOffer().then(function(sdp) {
  7630. // sdp.sdp.split('\n').forEach(function(line) {
  7631. // if (line.indexOf('candidate') < 0) return;
  7632. // line.match(ipRegex).forEach(iterateIP);
  7633. // });
  7634. // pc.setLocalDescription(sdp, noop, noop);
  7635. // }).catch(function(reason) {
  7636. // // An error occurred, so handle the failure to connect
  7637. // });
  7638. // //sten for candidate events
  7639. // pc.onicecandidate = function(ice) {
  7640. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7641. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7642. // };
  7643. // }
  7644. // U.MD.D.I.getUserIpBool = function(callback){
  7645. // U.MD.D.I.getUserIP(function(ip){
  7646. // alert("Got IP! :" + ip);
  7647. // });
  7648. //}
  7649. //#endregion
  7650. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7651. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7652. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7653. _userinfo = US.userInfo, //登录用户信息
  7654. _userid = US.userInfo.userid //登录用户id
  7655. let _iframe;
  7656. let _cid = cid,
  7657. _stage = stage,
  7658. _task = task,
  7659. _tool = tool;
  7660. var _jie = $$("div", {
  7661. "style": {
  7662. "position": "absolute",
  7663. "bottom": "50px",
  7664. "right": "50px",
  7665. "zIndex": "9999",
  7666. "backgroundColor": "#2268bc",
  7667. "color": "#fff",
  7668. "padding": "12px 20px",
  7669. "cursor": "pointer",
  7670. "borderRadius": "4px",
  7671. },
  7672. "innerHTML": "提交作业"
  7673. })
  7674. let aTool = ''
  7675. let _loading = document.createElement('div')
  7676. _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;"
  7677. // _loading.id = "";
  7678. let _lchild = document.createElement('div')
  7679. let _limg = document.createElement('img')
  7680. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7681. _limg.style = "width: 26px;margin-right: 10px;"
  7682. _lchild.appendChild(_limg)
  7683. let _lspan = document.createElement('span')
  7684. _lspan.innerHTML = "上传中..."
  7685. _lchild.appendChild(_lspan)
  7686. _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%);"
  7687. _loading.appendChild(_lchild)
  7688. var _box = $$('div', {
  7689. "style": {
  7690. "position": "relative",
  7691. "width": "100%",
  7692. "height": "100%",
  7693. },
  7694. })
  7695. _box.appendChild(_loading)
  7696. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7697. switch (str) {
  7698. case "whiteboard":
  7699. aTool = 1;
  7700. _iframe = $$("iframe", {
  7701. "frameborder": "no",
  7702. "border": "0",
  7703. "scrolling ": "no",
  7704. "style": {
  7705. "cssText": "border:0;width:100%;height:100%"
  7706. },
  7707. "src": "https://beta.iwb.cocorobo.cn/"
  7708. })
  7709. _box.appendChild(_iframe);
  7710. _box.appendChild(_jie);
  7711. _formdiv = new U.UF.UI.form(
  7712. "电子白板",
  7713. _box, {
  7714. "id": "whiteboard" + cid + stage + task + tool,
  7715. "style": {
  7716. "width": "90%",
  7717. "height": "90%",
  7718. "overflow": 'hidden'
  7719. },
  7720. "onresize": function () { }
  7721. }, {
  7722. closecallback: function () { }
  7723. }, {
  7724. "style": {
  7725. "height": "36px"
  7726. }
  7727. }).form; //创建窗体
  7728. _taskbar = {
  7729. "id": str + _formdiv.id,
  7730. "style": {
  7731. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7732. },
  7733. "name": "电子白板",
  7734. "forms": _formdiv,
  7735. "click": function () {
  7736. U.MD.D.I.openApplication(str, obj, info);
  7737. }
  7738. }
  7739. break;
  7740. case "mind":
  7741. aTool = 3;
  7742. _iframe = $$("iframe", {
  7743. "frameborder": "no",
  7744. "border": "0",
  7745. "scrolling ": "no",
  7746. "style": {
  7747. "cssText": "border:0;width:100%;height:100%"
  7748. },
  7749. "src": "/kityminder-editor/dist/index.html"
  7750. })
  7751. _box.appendChild(_iframe);
  7752. _box.appendChild(_jie);
  7753. _formdiv = new U.UF.UI.form(
  7754. "思维导图",
  7755. _box, { //"/jsmind/example/demo.html"
  7756. "id": "mind" + cid + stage + task + tool,
  7757. "style": {
  7758. "width": "90%",
  7759. "height": "90%",
  7760. "overflow": 'hidden'
  7761. },
  7762. "onresize": function () { }
  7763. }, {
  7764. closecallback: function () { }
  7765. }, {
  7766. "style": {
  7767. "height": "36px"
  7768. }
  7769. }).form; //创建窗体
  7770. _taskbar = {
  7771. "id": str + _formdiv.id,
  7772. "style": {
  7773. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7774. },
  7775. "name": "思维导图",
  7776. "forms": _formdiv,
  7777. "click": function () {
  7778. U.MD.D.I.openApplication(str, obj, info);
  7779. }
  7780. }
  7781. break;
  7782. case "MindMap":
  7783. aTool = 3;
  7784. _iframe = $$("iframe", {
  7785. "frameborder": "no",
  7786. "border": "0",
  7787. "scrolling ": "no",
  7788. "style": {
  7789. "cssText": "border:0;width:100%;height:100%"
  7790. },
  7791. "src": "//cloud.cocorobo.cn/mind/"
  7792. })
  7793. _box.appendChild(_iframe);
  7794. _box.appendChild(_jie);
  7795. _formdiv = new U.UF.UI.form(
  7796. "思维导图",
  7797. _box, { //"/jsmind/example/demo.html"
  7798. "id": "mind" + cid + stage + task + tool,
  7799. "style": {
  7800. "width": "90%",
  7801. "height": "90%",
  7802. "overflow": 'hidden'
  7803. },
  7804. "onresize": function () { }
  7805. }, {
  7806. closecallback: function () { }
  7807. }, {
  7808. "style": {
  7809. "height": "36px"
  7810. }
  7811. }).form; //创建窗体
  7812. _taskbar = {
  7813. "id": str + _formdiv.id,
  7814. "style": {
  7815. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7816. },
  7817. "name": "思维导图",
  7818. "forms": _formdiv,
  7819. "click": function () {
  7820. U.MD.D.I.openApplication(str, obj, info);
  7821. }
  7822. }
  7823. break;
  7824. case "doc":
  7825. aTool = 6;
  7826. _iframe = $$("iframe", {
  7827. "frameborder": "no",
  7828. "border": "0",
  7829. "scrolling ": "no",
  7830. "style": {
  7831. "cssText": "border:0;width:100%;height:100%"
  7832. },
  7833. "src": "/Office/Word/WordEditArea.htm"
  7834. })
  7835. _box.appendChild(_iframe);
  7836. _box.appendChild(_jie);
  7837. _formdiv = new U.UF.UI.form(
  7838. "协同文档",
  7839. _box, {
  7840. "id": "doc" + cid + stage + task + tool,
  7841. "style": {
  7842. "width": "90%",
  7843. "height": "90%",
  7844. "overflow": 'hidden'
  7845. },
  7846. "onresize": function () { }
  7847. }, {
  7848. closecallback: function () { }
  7849. }, {
  7850. "style": {
  7851. "height": "36px"
  7852. }
  7853. }).form; //创建窗体
  7854. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7855. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7856. })
  7857. _taskbar = {
  7858. "id": str + _formdiv.id,
  7859. "style": {
  7860. "backgroundImage": "url(/img/icon/doc.png)"
  7861. },
  7862. "name": "协同文档",
  7863. "forms": _formdiv,
  7864. "click": function () {
  7865. U.MD.D.I.openApplication(str, obj, info);
  7866. }
  7867. }
  7868. break;
  7869. case "mindNetwork": //好友打开
  7870. aTool = 7;
  7871. _iframe = $$("iframe", {
  7872. "webkitallowfullscreen": "",
  7873. "mozallowfullscreen": "",
  7874. "allowfullscreen": "",
  7875. "frameborder": "no",
  7876. "border": "0",
  7877. "scrolling ": "no",
  7878. "style": {
  7879. "cssText": "border:0; width:100%; height:100%;"
  7880. },
  7881. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7882. })
  7883. _box.appendChild(_iframe);
  7884. _box.appendChild(_jie);
  7885. _formdiv = new U.UF.UI.form(
  7886. "思维网格",
  7887. _box, {
  7888. "id": "mindNetwork" + cid + stage + task + tool,
  7889. "style": {
  7890. "width": "90%",
  7891. "height": "90%",
  7892. "overflow": 'hidden'
  7893. },
  7894. "onresize": function () { }
  7895. }, {
  7896. closecallback: function () { }
  7897. }, {
  7898. "style": {
  7899. "height": "36px"
  7900. }
  7901. }).form; //创建窗体
  7902. _taskbar = {
  7903. "id": str + _formdiv.id,
  7904. "style": {
  7905. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7906. },
  7907. "name": "思维网格",
  7908. "forms": _formdiv,
  7909. "click": function () {
  7910. U.MD.D.I.openApplication(str, obj, info);
  7911. }
  7912. }
  7913. break;
  7914. case "courseDesign":
  7915. _iframe = $$("iframe", {
  7916. "webkitallowfullscreen": "",
  7917. "mozallowfullscreen": "",
  7918. "allowfullscreen": "",
  7919. "frameborder": "no",
  7920. "border": "0",
  7921. "scrolling ": "no",
  7922. "style": {
  7923. "cssText": "border:0; width:100%; height:100%;"
  7924. },
  7925. "src": "/course-design-vue"
  7926. })
  7927. _box.appendChild(_iframe);
  7928. _box.appendChild(_jie);
  7929. _formdiv = new U.UF.UI.form(
  7930. "项目设计",
  7931. _box, {
  7932. "id": "courseDesign" + cid + stage + task + tool,
  7933. "style": {
  7934. "width": "90%",
  7935. "height": "90%",
  7936. "overflow": 'hidden'
  7937. },
  7938. "onresize": function () { }
  7939. }, {
  7940. closecallback: function () { }
  7941. }, {
  7942. "style": {
  7943. "height": "36px"
  7944. }
  7945. }).form; //创建窗体
  7946. _taskbar = {
  7947. "id": str + _formdiv.id,
  7948. "style": {
  7949. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7950. },
  7951. "name": "项目设计",
  7952. "forms": _formdiv,
  7953. "click": function () {
  7954. U.MD.D.I.openApplication(str, obj, info);
  7955. }
  7956. }
  7957. break;
  7958. }
  7959. const script1 = document.createElement("script");
  7960. script1.type = "text/javascript";
  7961. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7962. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7963. const script2 = document.createElement("script");
  7964. script2.type = "text/javascript";
  7965. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7966. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7967. const script3 = document.createElement("script");
  7968. script3.type = "text/javascript";
  7969. script3.charset = "UTF-8";
  7970. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7971. const script4 = document.createElement("script");
  7972. script4.type = "text/javascript";
  7973. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7974. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7975. if (_iframe) {
  7976. if (str == 'doc') {
  7977. _iframe = _formdiv.querySelector('iframe')
  7978. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7979. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7980. _iframe.contentWindow.document.body.appendChild(script1);
  7981. _iframe.contentWindow.document.body.appendChild(script2);
  7982. // _iframe.contentWindow.document.body.appendChild(script3);
  7983. _iframe.contentWindow.document.body.appendChild(script4);
  7984. })
  7985. if (onloadListener) {
  7986. _iframe.contentDocument.location.reload()
  7987. } else {
  7988. _iframe.contentDocument.location.reload()
  7989. }
  7990. } else if (str == 'courseDesign') {
  7991. U.UF.DL.iframeLoad(_iframe, function () {
  7992. // _iframe.contentWindow.U.MD.O.W.load();
  7993. // _iframe.contentWindow.document.body.appendChild(script1);
  7994. _iframe.contentWindow.document.body.appendChild(script2);
  7995. _iframe.contentWindow.document.body.appendChild(script4);
  7996. })
  7997. } else if (str == 'mind') {
  7998. _iframe = _formdiv.querySelector('iframe')
  7999. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8000. //
  8001. _iframe.contentWindow.document.body.appendChild(script1);
  8002. _iframe.contentWindow.document.body.appendChild(script2);
  8003. _iframe.contentWindow.document.body.appendChild(script4);
  8004. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8005. })
  8006. if (onloadListener) {
  8007. _iframe.contentDocument.location.reload()
  8008. } else {
  8009. _iframe.contentDocument.location.reload()
  8010. }
  8011. } else if (str == 'whiteboard') {
  8012. _iframe = _formdiv.querySelector('iframe')
  8013. let onloadListener = _iframe.onload = () => {
  8014. _iframe.contentWindow.document.body.appendChild(script1);
  8015. _iframe.contentWindow.document.body.appendChild(script2);
  8016. _iframe.contentWindow.document.body.appendChild(script4);
  8017. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8018. };
  8019. // if (onloadListener) {
  8020. // try {
  8021. // _iframe.src += "?cocorobo="+new Date().getTime()
  8022. // _iframe.contentWindow.document.location.reload()
  8023. // } catch (error) {
  8024. // }
  8025. // } else {
  8026. // _iframe.contentDocument.location.reload()
  8027. // }
  8028. } else {
  8029. _iframe.onload = () => {
  8030. _iframe.contentWindow.document.body.appendChild(script1);
  8031. _iframe.contentWindow.document.body.appendChild(script2);
  8032. // _iframe.contentWindow.document.body.appendChild(script3);
  8033. _iframe.contentWindow.document.body.appendChild(script4);
  8034. };
  8035. }
  8036. _jie.onclick = async () => {
  8037. let text = ''
  8038. if (aTool == 1) {
  8039. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8040. } else if (aTool == 6) {
  8041. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8042. } else if (aTool == 3) {
  8043. text = await U.MD.D.I.getEditorContent(_iframe);
  8044. }
  8045. _loading.style.display = 'flex'
  8046. console.log(_loading);
  8047. var _ajs = _iframe.contentWindow.document.createElement("script");
  8048. _ajs.type = "text/javascript";
  8049. _ajs.innerHTML =
  8050. // 'console.log(' + _loading + ');\n' +
  8051. 'var _js = document.createElement("script");\n' +
  8052. '_js.type="text/javascript";\n' +
  8053. '_js.charset="UTF-8";\n' +
  8054. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8055. "_js.onload = function(){\n" +
  8056. ' var a = document.getElementsByTagName("img")\n' +
  8057. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8058. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8059. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8060. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8061. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8062. "beforeUpload_shishi(file," +
  8063. "'" +
  8064. _userid +
  8065. "'" +
  8066. ", " +
  8067. "'" +
  8068. _cid +
  8069. "'" +
  8070. ", " +
  8071. "'" +
  8072. _stage +
  8073. "'" +
  8074. ", " +
  8075. "'" +
  8076. _task +
  8077. "'" +
  8078. ", " +
  8079. "'" +
  8080. _tool +
  8081. "'" +
  8082. ", " +
  8083. "'" +
  8084. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  8085. "'" +
  8086. ", " +
  8087. "'" +
  8088. aTool +
  8089. "'" +
  8090. ", " +
  8091. "`" +
  8092. text +
  8093. "`" +
  8094. ")\n" +
  8095. " });\n" +
  8096. "}\n" +
  8097. "document.head.appendChild(_js);\n";
  8098. _iframe.contentWindow.document.head.appendChild(_ajs);
  8099. }
  8100. }
  8101. //U.MD.D.I.openClick(str);
  8102. //如果有任务栏信息
  8103. // if (_taskbar) {
  8104. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8105. // }
  8106. }
  8107. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  8108. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8109. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8110. _userinfo = US.userInfo, //登录用户信息
  8111. _userid = US.userInfo.userid //登录用户id
  8112. let _iframe;
  8113. let _cid = cid,
  8114. _stage = stage,
  8115. _task = task,
  8116. _tool = tool;
  8117. var _jie = $$("div", {
  8118. "style": {
  8119. "position": "absolute",
  8120. "bottom": "50px",
  8121. "right": "50px",
  8122. "zIndex": "9999",
  8123. "backgroundColor": "#2268bc",
  8124. "color": "#fff",
  8125. "padding": "12px 20px",
  8126. "cursor": "pointer",
  8127. "borderRadius": "4px",
  8128. },
  8129. "innerHTML": "提交作业"
  8130. })
  8131. let aTool = ''
  8132. let _loading = document.createElement('div')
  8133. _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;"
  8134. // _loading.id = "";
  8135. let _lchild = document.createElement('div')
  8136. let _limg = document.createElement('img')
  8137. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8138. _limg.style = "width: 26px;margin-right: 10px;"
  8139. _lchild.appendChild(_limg)
  8140. let _lspan = document.createElement('span')
  8141. _lspan.innerHTML = "上传中..."
  8142. _lchild.appendChild(_lspan)
  8143. _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%);"
  8144. _loading.appendChild(_lchild)
  8145. let _box = $$('div', {
  8146. "style": {
  8147. "position": "relative",
  8148. "width": "100%",
  8149. "height": "100%",
  8150. },
  8151. })
  8152. _box.appendChild(_loading)
  8153. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  8154. switch (str) {
  8155. case "whiteboard":
  8156. aTool = 1;
  8157. _iframe = $$("iframe", {
  8158. "frameborder": "no",
  8159. "border": "0",
  8160. "scrolling ": "no",
  8161. "style": {
  8162. "cssText": "border:0;width:100%;height:100%"
  8163. },
  8164. "src": "https://beta.iwb.cocorobo.cn/"
  8165. })
  8166. _box.appendChild(_iframe);
  8167. _box.appendChild(_jie);
  8168. _formdiv = new U.UF.UI.form(
  8169. "电子白板",
  8170. _box, {
  8171. "id": "whiteboard" + cid + stage + task + tool,
  8172. "style": {
  8173. "width": "90%",
  8174. "height": "90%",
  8175. "overflow": 'hidden'
  8176. },
  8177. "onresize": function () { }
  8178. }, {
  8179. closecallback: function () { }
  8180. }, {
  8181. "style": {
  8182. "height": "36px"
  8183. }
  8184. }).form; //创建窗体
  8185. _taskbar = {
  8186. "id": str + _formdiv.id,
  8187. "style": {
  8188. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8189. },
  8190. "name": "电子白板",
  8191. "forms": _formdiv,
  8192. "click": function () {
  8193. U.MD.D.I.openApplication(str, obj, info);
  8194. }
  8195. }
  8196. break;
  8197. case "mind":
  8198. aTool = 3;
  8199. _iframe = $$("iframe", {
  8200. "frameborder": "no",
  8201. "border": "0",
  8202. "scrolling ": "no",
  8203. "style": {
  8204. "cssText": "border:0;width:100%;height:100%"
  8205. },
  8206. "src": "/kityminder-editor/dist/index.html"
  8207. })
  8208. _box.appendChild(_iframe);
  8209. _box.appendChild(_jie);
  8210. _formdiv = new U.UF.UI.form(
  8211. "思维导图",
  8212. _box, { //"/jsmind/example/demo.html"
  8213. "id": "mind" + cid + stage + task + tool,
  8214. "style": {
  8215. "width": "90%",
  8216. "height": "90%",
  8217. "overflow": 'hidden'
  8218. },
  8219. "onresize": function () { }
  8220. }, {
  8221. closecallback: function () { }
  8222. }, {
  8223. "style": {
  8224. "height": "36px"
  8225. }
  8226. }).form; //创建窗体
  8227. _taskbar = {
  8228. "id": str + _formdiv.id,
  8229. "style": {
  8230. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8231. },
  8232. "name": "思维导图",
  8233. "forms": _formdiv,
  8234. "click": function () {
  8235. U.MD.D.I.openApplication(str, obj, info);
  8236. }
  8237. }
  8238. break;
  8239. case "MindMap":
  8240. aTool = 3;
  8241. _iframe = $$("iframe", {
  8242. "frameborder": "no",
  8243. "border": "0",
  8244. "scrolling ": "no",
  8245. "style": {
  8246. "cssText": "border:0;width:100%;height:100%"
  8247. },
  8248. "src": "//cloud.cocorobo.cn/mind/"
  8249. })
  8250. _box.appendChild(_iframe);
  8251. _box.appendChild(_jie);
  8252. _formdiv = new U.UF.UI.form(
  8253. "思维导图",
  8254. _box, { //"/jsmind/example/demo.html"
  8255. "id": "mind" + cid + stage + task + tool,
  8256. "style": {
  8257. "width": "90%",
  8258. "height": "90%",
  8259. "overflow": 'hidden'
  8260. },
  8261. "onresize": function () { }
  8262. }, {
  8263. closecallback: function () { }
  8264. }, {
  8265. "style": {
  8266. "height": "36px"
  8267. }
  8268. }).form; //创建窗体
  8269. _taskbar = {
  8270. "id": str + _formdiv.id,
  8271. "style": {
  8272. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8273. },
  8274. "name": "思维导图",
  8275. "forms": _formdiv,
  8276. "click": function () {
  8277. U.MD.D.I.openApplication(str, obj, info);
  8278. }
  8279. }
  8280. break;
  8281. case "doc":
  8282. aTool = 6;
  8283. _iframe = $$("iframe", {
  8284. "frameborder": "no",
  8285. "border": "0",
  8286. "scrolling ": "no",
  8287. "style": {
  8288. "cssText": "border:0;width:100%;height:100%"
  8289. },
  8290. "src": "/Office/Word/WordEditArea.htm"
  8291. })
  8292. _box.appendChild(_iframe);
  8293. _box.appendChild(_jie);
  8294. _formdiv = new U.UF.UI.form(
  8295. "协同文档",
  8296. _box, {
  8297. "id": "doc" + cid + stage + task + tool,
  8298. "style": {
  8299. "width": "90%",
  8300. "height": "90%",
  8301. "overflow": 'hidden'
  8302. },
  8303. "onresize": function () { }
  8304. }, {
  8305. closecallback: function () { }
  8306. }, {
  8307. "style": {
  8308. "height": "36px"
  8309. }
  8310. }).form; //创建窗体
  8311. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8312. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8313. })
  8314. _taskbar = {
  8315. "id": str + _formdiv.id,
  8316. "style": {
  8317. "backgroundImage": "url(/img/icon/doc.png)"
  8318. },
  8319. "name": "协同文档",
  8320. "forms": _formdiv,
  8321. "click": function () {
  8322. U.MD.D.I.openApplication(str, obj, info);
  8323. }
  8324. }
  8325. break;
  8326. case "mindNetwork": //好友打开
  8327. aTool = 7;
  8328. _iframe = $$("iframe", {
  8329. "webkitallowfullscreen": "",
  8330. "mozallowfullscreen": "",
  8331. "allowfullscreen": "",
  8332. "frameborder": "no",
  8333. "border": "0",
  8334. "scrolling ": "no",
  8335. "style": {
  8336. "cssText": "border:0; width:100%; height:100%;"
  8337. },
  8338. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8339. })
  8340. _box.appendChild(_iframe);
  8341. _box.appendChild(_jie);
  8342. _formdiv = new U.UF.UI.form(
  8343. "思维网格",
  8344. _box, {
  8345. "id": "mindNetwork" + cid + stage + task + tool,
  8346. "style": {
  8347. "width": "90%",
  8348. "height": "90%",
  8349. "overflow": 'hidden'
  8350. },
  8351. "onresize": function () { }
  8352. }, {
  8353. closecallback: function () { }
  8354. }, {
  8355. "style": {
  8356. "height": "36px"
  8357. }
  8358. }).form; //创建窗体
  8359. _taskbar = {
  8360. "id": str + _formdiv.id,
  8361. "style": {
  8362. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8363. },
  8364. "name": "思维网格",
  8365. "forms": _formdiv,
  8366. "click": function () {
  8367. U.MD.D.I.openApplication(str, obj, info);
  8368. }
  8369. }
  8370. break;
  8371. case "courseDesign":
  8372. _iframe = $$("iframe", {
  8373. "webkitallowfullscreen": "",
  8374. "mozallowfullscreen": "",
  8375. "allowfullscreen": "",
  8376. "frameborder": "no",
  8377. "border": "0",
  8378. "scrolling ": "no",
  8379. "style": {
  8380. "cssText": "border:0; width:100%; height:100%;"
  8381. },
  8382. "src": "/course-design-vue"
  8383. })
  8384. _box.appendChild(_iframe);
  8385. _box.appendChild(_jie);
  8386. _formdiv = new U.UF.UI.form(
  8387. "项目设计",
  8388. _box, {
  8389. "id": "courseDesign" + cid + stage + task + tool,
  8390. "style": {
  8391. "width": "90%",
  8392. "height": "90%",
  8393. "overflow": 'hidden'
  8394. },
  8395. "onresize": function () { }
  8396. }, {
  8397. closecallback: function () { }
  8398. }, {
  8399. "style": {
  8400. "height": "36px"
  8401. }
  8402. }).form; //创建窗体
  8403. _taskbar = {
  8404. "id": str + _formdiv.id,
  8405. "style": {
  8406. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8407. },
  8408. "name": "项目设计",
  8409. "forms": _formdiv,
  8410. "click": function () {
  8411. U.MD.D.I.openApplication(str, obj, info);
  8412. }
  8413. }
  8414. break;
  8415. }
  8416. const script1 = document.createElement("script");
  8417. script1.type = "text/javascript";
  8418. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8419. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8420. const script2 = document.createElement("script");
  8421. script2.type = "text/javascript";
  8422. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8423. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8424. const script3 = document.createElement("script");
  8425. script3.type = "text/javascript";
  8426. script3.charset = "UTF-8";
  8427. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8428. const script4 = document.createElement("script");
  8429. script4.type = "text/javascript";
  8430. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8431. script4.src = window.origin + "/js/Common/jietu2E.js";
  8432. if (_iframe) {
  8433. if (str == 'doc') {
  8434. _iframe = _formdiv.querySelector('iframe')
  8435. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8436. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8437. _iframe.contentWindow.document.body.appendChild(script1);
  8438. _iframe.contentWindow.document.body.appendChild(script2);
  8439. // _iframe.contentWindow.document.body.appendChild(script3);
  8440. _iframe.contentWindow.document.body.appendChild(script4);
  8441. })
  8442. if (onloadListener) {
  8443. _iframe.contentDocument.location.reload()
  8444. } else {
  8445. _iframe.contentDocument.location.reload()
  8446. }
  8447. } else if (str == 'courseDesign') {
  8448. U.UF.DL.iframeLoad(_iframe, function () {
  8449. // _iframe.contentWindow.U.MD.O.W.load();
  8450. // _iframe.contentWindow.document.body.appendChild(script1);
  8451. _iframe.contentWindow.document.body.appendChild(script2);
  8452. _iframe.contentWindow.document.body.appendChild(script4);
  8453. })
  8454. } else if (str == 'mind') {
  8455. _iframe = _formdiv.querySelector('iframe')
  8456. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8457. //
  8458. _iframe.contentWindow.document.body.appendChild(script1);
  8459. _iframe.contentWindow.document.body.appendChild(script2);
  8460. _iframe.contentWindow.document.body.appendChild(script4);
  8461. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8462. })
  8463. if (onloadListener) {
  8464. _iframe.contentDocument.location.reload()
  8465. } else {
  8466. _iframe.contentDocument.location.reload()
  8467. }
  8468. } else if (str == 'whiteboard') {
  8469. _iframe = _formdiv.querySelector('iframe')
  8470. let onloadListener = _iframe.onload = () => {
  8471. _iframe.contentWindow.document.body.appendChild(script1);
  8472. _iframe.contentWindow.document.body.appendChild(script2);
  8473. _iframe.contentWindow.document.body.appendChild(script4);
  8474. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8475. };
  8476. // if (onloadListener) {
  8477. // try {
  8478. // _iframe.src += "?cocorobo="+new Date().getTime()
  8479. // _iframe.contentWindow.document.location.reload()
  8480. // } catch (error) {
  8481. // }
  8482. // } else {
  8483. // _iframe.contentDocument.location.reload()
  8484. // }
  8485. } else {
  8486. _iframe.onload = () => {
  8487. _iframe.contentWindow.document.body.appendChild(script1);
  8488. _iframe.contentWindow.document.body.appendChild(script2);
  8489. // _iframe.contentWindow.document.body.appendChild(script3);
  8490. _iframe.contentWindow.document.body.appendChild(script4);
  8491. };
  8492. }
  8493. _jie.onclick = async () => {
  8494. let text = ''
  8495. if (aTool == 1) {
  8496. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8497. } else if (aTool == 6) {
  8498. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8499. } else if (aTool == 3) {
  8500. text = await U.MD.D.I.getEditorContent(_iframe);
  8501. }
  8502. _loading.style.display = 'flex'
  8503. console.log(_loading);
  8504. var _ajs = _iframe.contentWindow.document.createElement("script");
  8505. _ajs.type = "text/javascript";
  8506. _ajs.innerHTML =
  8507. // 'console.log(' + _loading + ');\n' +
  8508. 'var _js = document.createElement("script");\n' +
  8509. '_js.type="text/javascript";\n' +
  8510. '_js.charset="UTF-8";\n' +
  8511. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8512. "_js.onload = function(){\n" +
  8513. ' var a = document.getElementsByTagName("img")\n' +
  8514. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8515. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8516. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8517. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8518. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8519. "beforeUpload_shishi(file," +
  8520. "'" +
  8521. _userid +
  8522. "'" +
  8523. ", " +
  8524. "'" +
  8525. _cid +
  8526. "'" +
  8527. ", " +
  8528. "'" +
  8529. _stage +
  8530. "'" +
  8531. ", " +
  8532. "'" +
  8533. _task +
  8534. "'" +
  8535. ", " +
  8536. "'" +
  8537. _tool +
  8538. "'" +
  8539. ", " +
  8540. "'" +
  8541. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8542. "'" +
  8543. ", " +
  8544. "'" +
  8545. aTool +
  8546. "'" +
  8547. ", " +
  8548. "`" +
  8549. text +
  8550. "`" +
  8551. ")\n" +
  8552. " });\n" +
  8553. "}\n" +
  8554. "document.head.appendChild(_js);\n";
  8555. _iframe.contentWindow.document.head.appendChild(_ajs);
  8556. }
  8557. }
  8558. //U.MD.D.I.openClick(str);
  8559. //如果有任务栏信息
  8560. // if (_taskbar) {
  8561. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8562. // }
  8563. }
  8564. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8565. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8566. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8567. _userid = student.userid, //登录用户id
  8568. _username = student.student //用户名字
  8569. let _iframe;
  8570. let _cid = cid,
  8571. _stage = stage,
  8572. _task = task,
  8573. _tool = tool;
  8574. var _jie = $$("div", {
  8575. "style": {
  8576. "position": "absolute",
  8577. "bottom": "50px",
  8578. "right": "50px",
  8579. "zIndex": "9999",
  8580. "backgroundColor": "#2268bc",
  8581. "color": "#fff",
  8582. "padding": "12px 20px",
  8583. "cursor": "pointer",
  8584. "borderRadius": "4px",
  8585. },
  8586. "innerHTML": "提交作业"
  8587. })
  8588. let aTool = ''
  8589. let _loading = document.createElement('div')
  8590. _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;"
  8591. // _loading.id = "";
  8592. let _lchild = document.createElement('div')
  8593. let _limg = document.createElement('img')
  8594. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8595. _limg.style = "width: 26px;margin-right: 10px;"
  8596. _lchild.appendChild(_limg)
  8597. let _lspan = document.createElement('span')
  8598. _lspan.innerHTML = "上传中..."
  8599. _lchild.appendChild(_lspan)
  8600. _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%);"
  8601. _loading.appendChild(_lchild)
  8602. var _box = $$('div', {
  8603. "style": {
  8604. "position": "relative",
  8605. "width": "100%",
  8606. "height": "100%",
  8607. },
  8608. })
  8609. _box.appendChild(_loading)
  8610. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8611. switch (str) {
  8612. case "whiteboard":
  8613. aTool = 1;
  8614. _iframe = $$("iframe", {
  8615. "frameborder": "no",
  8616. "border": "0",
  8617. "scrolling ": "no",
  8618. "style": {
  8619. "cssText": "border:0;width:100%;height:100%"
  8620. },
  8621. "src": "https://beta.iwb.cocorobo.cn/"
  8622. })
  8623. _box.appendChild(_iframe);
  8624. _box.appendChild(_jie);
  8625. _formdiv = new U.UF.UI.form(
  8626. "电子白板-" + _username,
  8627. _box, {
  8628. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8629. "style": {
  8630. "width": "90%",
  8631. "height": "90%",
  8632. "overflow": 'hidden'
  8633. },
  8634. "onresize": function () { }
  8635. }, {
  8636. closecallback: function () { }
  8637. }, {
  8638. "style": {
  8639. "height": "36px"
  8640. }
  8641. }).form; //创建窗体
  8642. _taskbar = {
  8643. "id": str + _formdiv.id,
  8644. "style": {
  8645. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8646. },
  8647. "name": "电子白板",
  8648. "forms": _formdiv,
  8649. "click": function () {
  8650. U.MD.D.I.openApplication(str, obj, info);
  8651. }
  8652. }
  8653. break;
  8654. case "mind":
  8655. aTool = 3;
  8656. _iframe = $$("iframe", {
  8657. "frameborder": "no",
  8658. "border": "0",
  8659. "scrolling ": "no",
  8660. "style": {
  8661. "cssText": "border:0;width:100%;height:100%"
  8662. },
  8663. "src": "/kityminder-editor/dist/index.html"
  8664. })
  8665. _box.appendChild(_iframe);
  8666. _box.appendChild(_jie);
  8667. _formdiv = new U.UF.UI.form(
  8668. "思维导图-" + _username,
  8669. _box, { //"/jsmind/example/demo.html"
  8670. "id": "mind" + cid + stage + task + tool + _userid,
  8671. "style": {
  8672. "width": "90%",
  8673. "height": "90%",
  8674. "overflow": 'hidden'
  8675. },
  8676. "onresize": function () { }
  8677. }, {
  8678. closecallback: function () { }
  8679. }, {
  8680. "style": {
  8681. "height": "36px"
  8682. }
  8683. }).form; //创建窗体
  8684. _taskbar = {
  8685. "id": str + _formdiv.id,
  8686. "style": {
  8687. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8688. },
  8689. "name": "思维导图",
  8690. "forms": _formdiv,
  8691. "click": function () {
  8692. U.MD.D.I.openApplication(str, obj, info);
  8693. }
  8694. }
  8695. break;
  8696. case "MindMap":
  8697. aTool = 3;
  8698. _iframe = $$("iframe", {
  8699. "frameborder": "no",
  8700. "border": "0",
  8701. "scrolling ": "no",
  8702. "style": {
  8703. "cssText": "border:0;width:100%;height:100%"
  8704. },
  8705. "src": "//cloud.cocorobo.cn/mind/"
  8706. })
  8707. _box.appendChild(_iframe);
  8708. _box.appendChild(_jie);
  8709. _formdiv = new U.UF.UI.form(
  8710. "思维导图-" + _username,
  8711. _box, { //"/jsmind/example/demo.html"
  8712. "id": "mind" + cid + stage + task + tool + _userid,
  8713. "style": {
  8714. "width": "90%",
  8715. "height": "90%",
  8716. "overflow": 'hidden'
  8717. },
  8718. "onresize": function () { }
  8719. }, {
  8720. closecallback: function () { }
  8721. }, {
  8722. "style": {
  8723. "height": "36px"
  8724. }
  8725. }).form; //创建窗体
  8726. _taskbar = {
  8727. "id": str + _formdiv.id,
  8728. "style": {
  8729. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8730. },
  8731. "name": "思维导图",
  8732. "forms": _formdiv,
  8733. "click": function () {
  8734. U.MD.D.I.openApplication(str, obj, info);
  8735. }
  8736. }
  8737. break;
  8738. case "doc":
  8739. aTool = 6;
  8740. _iframe = $$("iframe", {
  8741. "frameborder": "no",
  8742. "border": "0",
  8743. "scrolling ": "no",
  8744. "style": {
  8745. "cssText": "border:0;width:100%;height:100%"
  8746. },
  8747. "src": "/Office/Word/WordEditArea.htm"
  8748. })
  8749. _box.appendChild(_iframe);
  8750. _box.appendChild(_jie);
  8751. _formdiv = new U.UF.UI.form(
  8752. "协同文档-" + _username,
  8753. _box, {
  8754. "id": "doc" + cid + stage + task + tool + _userid,
  8755. "style": {
  8756. "width": "90%",
  8757. "height": "90%",
  8758. "overflow": 'hidden'
  8759. },
  8760. "onresize": function () { }
  8761. }, {
  8762. closecallback: function () { }
  8763. }, {
  8764. "style": {
  8765. "height": "36px"
  8766. }
  8767. }).form; //创建窗体
  8768. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8769. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8770. })
  8771. _taskbar = {
  8772. "id": str + _formdiv.id,
  8773. "style": {
  8774. "backgroundImage": "url(/img/icon/doc.png)"
  8775. },
  8776. "name": "协同文档",
  8777. "forms": _formdiv,
  8778. "click": function () {
  8779. U.MD.D.I.openApplication(str, obj, info);
  8780. }
  8781. }
  8782. break;
  8783. case "mindNetwork": //好友打开
  8784. aTool = 7;
  8785. _iframe = $$("iframe", {
  8786. "webkitallowfullscreen": "",
  8787. "mozallowfullscreen": "",
  8788. "allowfullscreen": "",
  8789. "frameborder": "no",
  8790. "border": "0",
  8791. "scrolling ": "no",
  8792. "style": {
  8793. "cssText": "border:0; width:100%; height:100%;"
  8794. },
  8795. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8796. })
  8797. _box.appendChild(_iframe);
  8798. _box.appendChild(_jie);
  8799. _formdiv = new U.UF.UI.form(
  8800. "思维网格-" + _username,
  8801. _box, {
  8802. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8803. "style": {
  8804. "width": "90%",
  8805. "height": "90%",
  8806. "overflow": 'hidden'
  8807. },
  8808. "onresize": function () { }
  8809. }, {
  8810. closecallback: function () { }
  8811. }, {
  8812. "style": {
  8813. "height": "36px"
  8814. }
  8815. }).form; //创建窗体
  8816. _taskbar = {
  8817. "id": str + _formdiv.id,
  8818. "style": {
  8819. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8820. },
  8821. "name": "思维网格",
  8822. "forms": _formdiv,
  8823. "click": function () {
  8824. U.MD.D.I.openApplication(str, obj, info);
  8825. }
  8826. }
  8827. break;
  8828. case "courseDesign":
  8829. _iframe = $$("iframe", {
  8830. "webkitallowfullscreen": "",
  8831. "mozallowfullscreen": "",
  8832. "allowfullscreen": "",
  8833. "frameborder": "no",
  8834. "border": "0",
  8835. "scrolling ": "no",
  8836. "style": {
  8837. "cssText": "border:0; width:100%; height:100%;"
  8838. },
  8839. "src": "/course-design-vue"
  8840. })
  8841. _box.appendChild(_iframe);
  8842. _box.appendChild(_jie);
  8843. _formdiv = new U.UF.UI.form(
  8844. "项目设计-" + _username,
  8845. _box, {
  8846. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8847. "style": {
  8848. "width": "90%",
  8849. "height": "90%",
  8850. "overflow": 'hidden'
  8851. },
  8852. "onresize": function () { }
  8853. }, {
  8854. closecallback: function () { }
  8855. }, {
  8856. "style": {
  8857. "height": "36px"
  8858. }
  8859. }).form; //创建窗体
  8860. _taskbar = {
  8861. "id": str + _formdiv.id,
  8862. "style": {
  8863. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8864. },
  8865. "name": "项目设计",
  8866. "forms": _formdiv,
  8867. "click": function () {
  8868. U.MD.D.I.openApplication(str, obj, info);
  8869. }
  8870. }
  8871. break;
  8872. }
  8873. const script1 = document.createElement("script");
  8874. script1.type = "text/javascript";
  8875. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8876. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8877. const script2 = document.createElement("script");
  8878. script2.type = "text/javascript";
  8879. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8880. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8881. const script3 = document.createElement("script");
  8882. script3.type = "text/javascript";
  8883. script3.charset = "UTF-8";
  8884. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8885. const script4 = document.createElement("script");
  8886. script4.type = "text/javascript";
  8887. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8888. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8889. if (_iframe) {
  8890. if (str == 'doc') {
  8891. _iframe = _formdiv.querySelector('iframe')
  8892. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8893. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8894. _iframe.contentWindow.document.body.appendChild(script1);
  8895. _iframe.contentWindow.document.body.appendChild(script2);
  8896. // _iframe.contentWindow.document.body.appendChild(script3);
  8897. _iframe.contentWindow.document.body.appendChild(script4);
  8898. })
  8899. if (onloadListener) {
  8900. _iframe.contentDocument.location.reload()
  8901. } else {
  8902. _iframe.contentDocument.location.reload()
  8903. }
  8904. } else if (str == 'courseDesign') {
  8905. U.UF.DL.iframeLoad(_iframe, function () {
  8906. // _iframe.contentWindow.U.MD.O.W.load();
  8907. // _iframe.contentWindow.document.body.appendChild(script1);
  8908. _iframe.contentWindow.document.body.appendChild(script2);
  8909. _iframe.contentWindow.document.body.appendChild(script4);
  8910. })
  8911. } else if (str == 'mind') {
  8912. _iframe = _formdiv.querySelector('iframe')
  8913. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8914. //
  8915. _iframe.contentWindow.document.body.appendChild(script1);
  8916. _iframe.contentWindow.document.body.appendChild(script2);
  8917. _iframe.contentWindow.document.body.appendChild(script4);
  8918. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8919. })
  8920. if (onloadListener) {
  8921. _iframe.contentDocument.location.reload()
  8922. } else {
  8923. _iframe.contentDocument.location.reload()
  8924. }
  8925. } else if (str == 'whiteboard') {
  8926. _iframe = _formdiv.querySelector('iframe')
  8927. let onloadListener = _iframe.onload = () => {
  8928. _iframe.contentWindow.document.body.appendChild(script1);
  8929. _iframe.contentWindow.document.body.appendChild(script2);
  8930. _iframe.contentWindow.document.body.appendChild(script4);
  8931. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8932. };
  8933. // if (onloadListener) {
  8934. // try {
  8935. // _iframe.src += "?cocorobo="+new Date().getTime()
  8936. // _iframe.contentWindow.document.location.reload()
  8937. // } catch (error) {
  8938. // }
  8939. // } else {
  8940. // _iframe.contentDocument.location.reload()
  8941. // }
  8942. } else {
  8943. _iframe.onload = () => {
  8944. _iframe.contentWindow.document.body.appendChild(script1);
  8945. _iframe.contentWindow.document.body.appendChild(script2);
  8946. // _iframe.contentWindow.document.body.appendChild(script3);
  8947. _iframe.contentWindow.document.body.appendChild(script4);
  8948. };
  8949. }
  8950. _jie.onclick = async () => {
  8951. let text = ''
  8952. if (aTool == 1) {
  8953. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8954. } else if (aTool == 6) {
  8955. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8956. } else if (aTool == 3) {
  8957. text = await U.MD.D.I.getEditorContent(_iframe);
  8958. }
  8959. _loading.style.display = 'flex'
  8960. console.log(_loading);
  8961. var _ajs = _iframe.contentWindow.document.createElement("script");
  8962. _ajs.type = "text/javascript";
  8963. _ajs.innerHTML =
  8964. // 'console.log(' + _loading + ');\n' +
  8965. 'var _js = document.createElement("script");\n' +
  8966. '_js.type="text/javascript";\n' +
  8967. '_js.charset="UTF-8";\n' +
  8968. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8969. "_js.onload = function(){\n" +
  8970. ' var a = document.getElementsByTagName("img")\n' +
  8971. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8972. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8973. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8974. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8975. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8976. "beforeUpload_shishi(file," +
  8977. "'" +
  8978. _userid +
  8979. "'" +
  8980. ", " +
  8981. "'" +
  8982. _cid +
  8983. "'" +
  8984. ", " +
  8985. "'" +
  8986. _stage +
  8987. "'" +
  8988. ", " +
  8989. "'" +
  8990. _task +
  8991. "'" +
  8992. ", " +
  8993. "'" +
  8994. _tool +
  8995. "'" +
  8996. ", " +
  8997. "'" +
  8998. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8999. "'" +
  9000. ", " +
  9001. "'" +
  9002. aTool +
  9003. "'" +
  9004. ", " +
  9005. "`" +
  9006. text +
  9007. "`" +
  9008. ")\n" +
  9009. " });\n" +
  9010. "}\n" +
  9011. "document.head.appendChild(_js);\n";
  9012. _iframe.contentWindow.document.head.appendChild(_ajs);
  9013. }
  9014. }
  9015. }
  9016. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  9017. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9018. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9019. _userid = student.userid, //登录用户id
  9020. _username = student.student //用户名字
  9021. let _iframe;
  9022. let _cid = cid,
  9023. _stage = stage,
  9024. _task = task,
  9025. _tool = tool;
  9026. var _jie = $$("div", {
  9027. "style": {
  9028. "position": "absolute",
  9029. "bottom": "50px",
  9030. "right": "50px",
  9031. "zIndex": "9999",
  9032. "backgroundColor": "#2268bc",
  9033. "color": "#fff",
  9034. "padding": "12px 20px",
  9035. "cursor": "pointer",
  9036. "borderRadius": "4px",
  9037. },
  9038. "innerHTML": "提交作业"
  9039. })
  9040. let aTool = ''
  9041. let _loading = document.createElement('div')
  9042. _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;"
  9043. // _loading.id = "";
  9044. let _lchild = document.createElement('div')
  9045. let _limg = document.createElement('img')
  9046. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9047. _limg.style = "width: 26px;margin-right: 10px;"
  9048. _lchild.appendChild(_limg)
  9049. let _lspan = document.createElement('span')
  9050. _lspan.innerHTML = "上传中..."
  9051. _lchild.appendChild(_lspan)
  9052. _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%);"
  9053. _loading.appendChild(_lchild)
  9054. var _box = $$('div', {
  9055. "style": {
  9056. "position": "relative",
  9057. "width": "100%",
  9058. "height": "100%",
  9059. },
  9060. })
  9061. _box.appendChild(_loading)
  9062. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  9063. switch (str) {
  9064. case "whiteboard":
  9065. aTool = 1;
  9066. _iframe = $$("iframe", {
  9067. "frameborder": "no",
  9068. "border": "0",
  9069. "scrolling ": "no",
  9070. "style": {
  9071. "cssText": "border:0;width:100%;height:100%"
  9072. },
  9073. "src": "https://beta.iwb.cocorobo.cn/"
  9074. })
  9075. _box.appendChild(_iframe);
  9076. _box.appendChild(_jie);
  9077. _formdiv = new U.UF.UI.form(
  9078. "电子白板-" + _username,
  9079. _box, {
  9080. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9081. "style": {
  9082. "width": "90%",
  9083. "height": "90%",
  9084. "overflow": 'hidden'
  9085. },
  9086. "onresize": function () { }
  9087. }, {
  9088. closecallback: function () { }
  9089. }, {
  9090. "style": {
  9091. "height": "36px"
  9092. }
  9093. }).form; //创建窗体
  9094. _taskbar = {
  9095. "id": str + _formdiv.id,
  9096. "style": {
  9097. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9098. },
  9099. "name": "电子白板",
  9100. "forms": _formdiv,
  9101. "click": function () {
  9102. U.MD.D.I.openApplication(str, obj, info);
  9103. }
  9104. }
  9105. break;
  9106. case "mind":
  9107. aTool = 3;
  9108. _iframe = $$("iframe", {
  9109. "frameborder": "no",
  9110. "border": "0",
  9111. "scrolling ": "no",
  9112. "style": {
  9113. "cssText": "border:0;width:100%;height:100%"
  9114. },
  9115. "src": "/kityminder-editor/dist/index.html"
  9116. })
  9117. _box.appendChild(_iframe);
  9118. _box.appendChild(_jie);
  9119. _formdiv = new U.UF.UI.form(
  9120. "思维导图-" + _username,
  9121. _box, { //"/jsmind/example/demo.html"
  9122. "id": "mind" + cid + stage + task + tool + _userid,
  9123. "style": {
  9124. "width": "90%",
  9125. "height": "90%",
  9126. "overflow": 'hidden'
  9127. },
  9128. "onresize": function () { }
  9129. }, {
  9130. closecallback: function () { }
  9131. }, {
  9132. "style": {
  9133. "height": "36px"
  9134. }
  9135. }).form; //创建窗体
  9136. _taskbar = {
  9137. "id": str + _formdiv.id,
  9138. "style": {
  9139. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9140. },
  9141. "name": "思维导图",
  9142. "forms": _formdiv,
  9143. "click": function () {
  9144. U.MD.D.I.openApplication(str, obj, info);
  9145. }
  9146. }
  9147. break;
  9148. case "MindMap":
  9149. aTool = 3;
  9150. _iframe = $$("iframe", {
  9151. "frameborder": "no",
  9152. "border": "0",
  9153. "scrolling ": "no",
  9154. "style": {
  9155. "cssText": "border:0;width:100%;height:100%"
  9156. },
  9157. "src": "//cloud.cocorobo.cn/mind/"
  9158. })
  9159. _box.appendChild(_iframe);
  9160. _box.appendChild(_jie);
  9161. _formdiv = new U.UF.UI.form(
  9162. "思维导图-" + _username,
  9163. _box, { //"/jsmind/example/demo.html"
  9164. "id": "mind" + cid + stage + task + tool + _userid,
  9165. "style": {
  9166. "width": "90%",
  9167. "height": "90%",
  9168. "overflow": 'hidden'
  9169. },
  9170. "onresize": function () { }
  9171. }, {
  9172. closecallback: function () { }
  9173. }, {
  9174. "style": {
  9175. "height": "36px"
  9176. }
  9177. }).form; //创建窗体
  9178. _taskbar = {
  9179. "id": str + _formdiv.id,
  9180. "style": {
  9181. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9182. },
  9183. "name": "思维导图",
  9184. "forms": _formdiv,
  9185. "click": function () {
  9186. U.MD.D.I.openApplication(str, obj, info);
  9187. }
  9188. }
  9189. break;
  9190. case "doc":
  9191. aTool = 6;
  9192. _iframe = $$("iframe", {
  9193. "frameborder": "no",
  9194. "border": "0",
  9195. "scrolling ": "no",
  9196. "style": {
  9197. "cssText": "border:0;width:100%;height:100%"
  9198. },
  9199. "src": "/Office/Word/WordEditArea.htm"
  9200. })
  9201. _box.appendChild(_iframe);
  9202. _box.appendChild(_jie);
  9203. _formdiv = new U.UF.UI.form(
  9204. "协同文档-" + _username,
  9205. _box, {
  9206. "id": "doc" + cid + stage + task + tool + _userid,
  9207. "style": {
  9208. "width": "90%",
  9209. "height": "90%",
  9210. "overflow": 'hidden'
  9211. },
  9212. "onresize": function () { }
  9213. }, {
  9214. closecallback: function () { }
  9215. }, {
  9216. "style": {
  9217. "height": "36px"
  9218. }
  9219. }).form; //创建窗体
  9220. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9221. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9222. })
  9223. _taskbar = {
  9224. "id": str + _formdiv.id,
  9225. "style": {
  9226. "backgroundImage": "url(/img/icon/doc.png)"
  9227. },
  9228. "name": "协同文档",
  9229. "forms": _formdiv,
  9230. "click": function () {
  9231. U.MD.D.I.openApplication(str, obj, info);
  9232. }
  9233. }
  9234. break;
  9235. case "mindNetwork": //好友打开
  9236. aTool = 7;
  9237. _iframe = $$("iframe", {
  9238. "webkitallowfullscreen": "",
  9239. "mozallowfullscreen": "",
  9240. "allowfullscreen": "",
  9241. "frameborder": "no",
  9242. "border": "0",
  9243. "scrolling ": "no",
  9244. "style": {
  9245. "cssText": "border:0; width:100%; height:100%;"
  9246. },
  9247. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9248. })
  9249. _box.appendChild(_iframe);
  9250. _box.appendChild(_jie);
  9251. _formdiv = new U.UF.UI.form(
  9252. "思维网格-" + _username,
  9253. _box, {
  9254. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9255. "style": {
  9256. "width": "90%",
  9257. "height": "90%",
  9258. "overflow": 'hidden'
  9259. },
  9260. "onresize": function () { }
  9261. }, {
  9262. closecallback: function () { }
  9263. }, {
  9264. "style": {
  9265. "height": "36px"
  9266. }
  9267. }).form; //创建窗体
  9268. _taskbar = {
  9269. "id": str + _formdiv.id,
  9270. "style": {
  9271. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9272. },
  9273. "name": "思维网格",
  9274. "forms": _formdiv,
  9275. "click": function () {
  9276. U.MD.D.I.openApplication(str, obj, info);
  9277. }
  9278. }
  9279. break;
  9280. case "courseDesign":
  9281. _iframe = $$("iframe", {
  9282. "webkitallowfullscreen": "",
  9283. "mozallowfullscreen": "",
  9284. "allowfullscreen": "",
  9285. "frameborder": "no",
  9286. "border": "0",
  9287. "scrolling ": "no",
  9288. "style": {
  9289. "cssText": "border:0; width:100%; height:100%;"
  9290. },
  9291. "src": "/course-design-vue"
  9292. })
  9293. _box.appendChild(_iframe);
  9294. _box.appendChild(_jie);
  9295. _formdiv = new U.UF.UI.form(
  9296. "项目设计-" + _username,
  9297. _box, {
  9298. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9299. "style": {
  9300. "width": "90%",
  9301. "height": "90%",
  9302. "overflow": 'hidden'
  9303. },
  9304. "onresize": function () { }
  9305. }, {
  9306. closecallback: function () { }
  9307. }, {
  9308. "style": {
  9309. "height": "36px"
  9310. }
  9311. }).form; //创建窗体
  9312. _taskbar = {
  9313. "id": str + _formdiv.id,
  9314. "style": {
  9315. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9316. },
  9317. "name": "项目设计",
  9318. "forms": _formdiv,
  9319. "click": function () {
  9320. U.MD.D.I.openApplication(str, obj, info);
  9321. }
  9322. }
  9323. break;
  9324. }
  9325. const script1 = document.createElement("script");
  9326. script1.type = "text/javascript";
  9327. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9328. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9329. const script2 = document.createElement("script");
  9330. script2.type = "text/javascript";
  9331. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9332. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9333. const script3 = document.createElement("script");
  9334. script3.type = "text/javascript";
  9335. script3.charset = "UTF-8";
  9336. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9337. const script4 = document.createElement("script");
  9338. script4.type = "text/javascript";
  9339. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9340. script4.src = window.origin + "/js/Common/jietu2E.js";
  9341. if (_iframe) {
  9342. if (str == 'doc') {
  9343. _iframe = _formdiv.querySelector('iframe')
  9344. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9345. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9346. _iframe.contentWindow.document.body.appendChild(script1);
  9347. _iframe.contentWindow.document.body.appendChild(script2);
  9348. // _iframe.contentWindow.document.body.appendChild(script3);
  9349. _iframe.contentWindow.document.body.appendChild(script4);
  9350. })
  9351. if (onloadListener) {
  9352. _iframe.contentDocument.location.reload()
  9353. } else {
  9354. _iframe.contentDocument.location.reload()
  9355. }
  9356. } else if (str == 'courseDesign') {
  9357. U.UF.DL.iframeLoad(_iframe, function () {
  9358. // _iframe.contentWindow.U.MD.O.W.load();
  9359. // _iframe.contentWindow.document.body.appendChild(script1);
  9360. _iframe.contentWindow.document.body.appendChild(script2);
  9361. _iframe.contentWindow.document.body.appendChild(script4);
  9362. })
  9363. } else if (str == 'mind') {
  9364. _iframe = _formdiv.querySelector('iframe')
  9365. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9366. //
  9367. _iframe.contentWindow.document.body.appendChild(script1);
  9368. _iframe.contentWindow.document.body.appendChild(script2);
  9369. _iframe.contentWindow.document.body.appendChild(script4);
  9370. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9371. })
  9372. if (onloadListener) {
  9373. _iframe.contentDocument.location.reload()
  9374. } else {
  9375. _iframe.contentDocument.location.reload()
  9376. }
  9377. } else if (str == 'whiteboard') {
  9378. _iframe = _formdiv.querySelector('iframe')
  9379. let onloadListener = _iframe.onload = () => {
  9380. _iframe.contentWindow.document.body.appendChild(script1);
  9381. _iframe.contentWindow.document.body.appendChild(script2);
  9382. _iframe.contentWindow.document.body.appendChild(script4);
  9383. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9384. };
  9385. // if (onloadListener) {
  9386. // try {
  9387. // _iframe.src += "?cocorobo="+new Date().getTime()
  9388. // _iframe.contentWindow.document.location.reload()
  9389. // } catch (error) {
  9390. // }
  9391. // } else {
  9392. // _iframe.contentDocument.location.reload()
  9393. // }
  9394. } else {
  9395. _iframe.onload = () => {
  9396. _iframe.contentWindow.document.body.appendChild(script1);
  9397. _iframe.contentWindow.document.body.appendChild(script2);
  9398. // _iframe.contentWindow.document.body.appendChild(script3);
  9399. _iframe.contentWindow.document.body.appendChild(script4);
  9400. };
  9401. }
  9402. _jie.onclick = async () => {
  9403. let text = ''
  9404. if (aTool == 1) {
  9405. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9406. } else if (aTool == 6) {
  9407. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9408. } else if (aTool == 3) {
  9409. text = await U.MD.D.I.getEditorContent(_iframe);
  9410. }
  9411. _loading.style.display = 'flex'
  9412. console.log(_loading);
  9413. var _ajs = _iframe.contentWindow.document.createElement("script");
  9414. _ajs.type = "text/javascript";
  9415. _ajs.innerHTML =
  9416. // 'console.log(' + _loading + ');\n' +
  9417. 'var _js = document.createElement("script");\n' +
  9418. '_js.type="text/javascript";\n' +
  9419. '_js.charset="UTF-8";\n' +
  9420. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9421. "_js.onload = function(){\n" +
  9422. ' var a = document.getElementsByTagName("img")\n' +
  9423. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9424. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9425. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9426. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9427. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9428. "beforeUpload_shishi(file," +
  9429. "'" +
  9430. _userid +
  9431. "'" +
  9432. ", " +
  9433. "'" +
  9434. _cid +
  9435. "'" +
  9436. ", " +
  9437. "'" +
  9438. _stage +
  9439. "'" +
  9440. ", " +
  9441. "'" +
  9442. _task +
  9443. "'" +
  9444. ", " +
  9445. "'" +
  9446. _tool +
  9447. "'" +
  9448. ", " +
  9449. "'" +
  9450. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9451. "'" +
  9452. ", " +
  9453. "'" +
  9454. aTool +
  9455. "'" +
  9456. ", " +
  9457. "`" +
  9458. text +
  9459. "`" +
  9460. ")\n" +
  9461. " });\n" +
  9462. "}\n" +
  9463. "document.head.appendChild(_js);\n";
  9464. _iframe.contentWindow.document.head.appendChild(_ajs);
  9465. }
  9466. }
  9467. }
  9468. U.MD.D.I.getEditorContent = function (iframe) {
  9469. return new Promise((resolve, reject) => {
  9470. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9471. console.log(content);
  9472. resolve(content)
  9473. });
  9474. });
  9475. }
  9476. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9477. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9478. // if (res.value[0].length > 0) {
  9479. // // resolve(res.value[0][0].text);
  9480. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9481. // $(fileInput).val('');
  9482. // });
  9483. // }
  9484. // }, [], { "type": "GET", "withCredentials": true });
  9485. var xmlhttp;
  9486. var Mac, Sn, DeviceId
  9487. if (window.XMLHttpRequest) {
  9488. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9489. xmlhttp = new XMLHttpRequest();
  9490. } else {
  9491. // IE6, IE5 浏览器执行代码
  9492. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9493. }
  9494. xmlhttp.onreadystatechange = function () {
  9495. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9496. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9497. // resolve(res.value[0][0].text);
  9498. if (type == '2') {
  9499. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9500. } else if (type == '3') {
  9501. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9502. }
  9503. } else {
  9504. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9505. }
  9506. }
  9507. }
  9508. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9509. xmlhttp.send();
  9510. }
  9511. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9512. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9513. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9514. _userinfo = US.userInfo, //登录用户信息
  9515. _userid = US.userInfo.userid //登录用户id
  9516. let _iframe;
  9517. let _cid = cid,
  9518. _stage = stage,
  9519. _task = task,
  9520. _tool = tool;
  9521. var _jie = $$("div", {
  9522. "style": {
  9523. "position": "absolute",
  9524. "bottom": "50px",
  9525. "right": "50px",
  9526. "zIndex": "9999",
  9527. "backgroundColor": "#2268bc",
  9528. "color": "#fff",
  9529. "padding": "12px 20px",
  9530. "cursor": "pointer",
  9531. "borderRadius": "4px",
  9532. },
  9533. "innerHTML": "确认并提交"
  9534. })
  9535. let aTool = ''
  9536. let _loading = document.createElement('div')
  9537. _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;"
  9538. // _loading.id = "";
  9539. let _lchild = document.createElement('div')
  9540. let _limg = document.createElement('img')
  9541. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9542. _limg.style = "width: 26px;margin-right: 10px;"
  9543. _lchild.appendChild(_limg)
  9544. let _lspan = document.createElement('span')
  9545. _lspan.innerHTML = "上传中..."
  9546. _lchild.appendChild(_lspan)
  9547. _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%);"
  9548. _loading.appendChild(_lchild)
  9549. var _box = $$('div', {
  9550. "style": {
  9551. "position": "relative",
  9552. "width": "100%",
  9553. "height": "100%",
  9554. },
  9555. })
  9556. _box.appendChild(_loading)
  9557. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9558. switch (str) {
  9559. case "whiteboard":
  9560. aTool = 1;
  9561. _iframe = $$("iframe", {
  9562. "frameborder": "no",
  9563. "border": "0",
  9564. "scrolling ": "no",
  9565. "style": {
  9566. "cssText": "border:0;width:100%;height:100%"
  9567. },
  9568. "src": "https://beta.iwb.cocorobo.cn/"
  9569. })
  9570. _box.appendChild(_iframe);
  9571. _box.appendChild(_jie);
  9572. _formdiv = new U.UF.UI.form(
  9573. "电子白板",
  9574. _box, {
  9575. "id": "whiteboards" + cid + stage + task + tool,
  9576. "style": {
  9577. "width": "90%",
  9578. "height": "90%",
  9579. "overflow": 'hidden'
  9580. },
  9581. "onresize": function () { }
  9582. }, {
  9583. closecallback: function () { }
  9584. }, {
  9585. "style": {
  9586. "height": "36px"
  9587. }
  9588. }).form; //创建窗体
  9589. _taskbar = {
  9590. "id": str + _formdiv.id,
  9591. "style": {
  9592. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9593. },
  9594. "name": "电子白板",
  9595. "forms": _formdiv,
  9596. "click": function () {
  9597. U.MD.D.I.openApplication(str, obj, info);
  9598. }
  9599. }
  9600. break;
  9601. case "mind":
  9602. aTool = 3;
  9603. _iframe = $$("iframe", {
  9604. "frameborder": "no",
  9605. "border": "0",
  9606. "scrolling ": "no",
  9607. "style": {
  9608. "cssText": "border:0;width:100%;height:100%"
  9609. },
  9610. "src": "/kityminder-editor/dist/index.html"
  9611. });
  9612. _box.appendChild(_iframe);
  9613. _box.appendChild(_jie);
  9614. _formdiv = new U.UF.UI.form(
  9615. "思维导图",
  9616. _box, { //"/jsmind/example/demo.html"
  9617. "id": "minds" + cid + stage + task + tool,
  9618. "style": {
  9619. "width": "90%",
  9620. "height": "90%",
  9621. "overflow": 'hidden'
  9622. },
  9623. "onresize": function () { }
  9624. }, {
  9625. closecallback: function () { }
  9626. }, {
  9627. "style": {
  9628. "height": "36px"
  9629. }
  9630. }).form; //创建窗体
  9631. _taskbar = {
  9632. "id": str + _formdiv.id,
  9633. "style": {
  9634. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9635. },
  9636. "name": "思维导图",
  9637. "forms": _formdiv,
  9638. "click": function () {
  9639. U.MD.D.I.openApplication(str, obj, info);
  9640. }
  9641. }
  9642. break;
  9643. case "doc":
  9644. aTool = 6;
  9645. _iframe = $$("iframe", {
  9646. "frameborder": "no",
  9647. "border": "0",
  9648. "scrolling ": "no",
  9649. "style": {
  9650. "cssText": "border:0;width:100%;height:100%"
  9651. },
  9652. "src": "/Office/Word/WordEditArea.htm"
  9653. })
  9654. _box.appendChild(_iframe);
  9655. _box.appendChild(_jie);
  9656. _formdiv = new U.UF.UI.form(
  9657. "协同文档",
  9658. _box, {
  9659. "id": "docs" + cid + stage + task + tool,
  9660. "style": {
  9661. "width": "90%",
  9662. "height": "90%",
  9663. "overflow": 'hidden'
  9664. },
  9665. "onresize": function () { }
  9666. }, {
  9667. closecallback: function () { }
  9668. }, {
  9669. "style": {
  9670. "height": "36px"
  9671. }
  9672. }).form; //创建窗体
  9673. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9674. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9675. })
  9676. _taskbar = {
  9677. "id": str + _formdiv.id,
  9678. "style": {
  9679. "backgroundImage": "url(/img/icon/doc.png)"
  9680. },
  9681. "name": "协同文档",
  9682. "forms": _formdiv,
  9683. "click": function () {
  9684. U.MD.D.I.openApplication(str, obj, info);
  9685. }
  9686. }
  9687. break;
  9688. }
  9689. const script1 = document.createElement("script");
  9690. script1.type = "text/javascript";
  9691. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9692. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9693. const script2 = document.createElement("script");
  9694. script2.type = "text/javascript";
  9695. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9696. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9697. const script3 = document.createElement("script");
  9698. script3.type = "text/javascript";
  9699. script3.charset = "UTF-8";
  9700. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9701. const script4 = document.createElement("script");
  9702. script4.type = "text/javascript";
  9703. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9704. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9705. if (_iframe) {
  9706. if (str == 'doc') {
  9707. _iframe = _formdiv.querySelector('iframe')
  9708. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9709. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9710. _iframe.contentWindow.document.body.appendChild(script1);
  9711. _iframe.contentWindow.document.body.appendChild(script2);
  9712. // _iframe.contentWindow.document.body.appendChild(script3);
  9713. _iframe.contentWindow.document.body.appendChild(script4);
  9714. })
  9715. if (onloadListener) {
  9716. _iframe.contentDocument.location.reload()
  9717. } else {
  9718. _iframe.contentDocument.location.reload()
  9719. }
  9720. } else if (str == 'mind') {
  9721. _iframe = _formdiv.querySelector('iframe')
  9722. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9723. _iframe.contentWindow.document.body.appendChild(script1);
  9724. _iframe.contentWindow.document.body.appendChild(script2);
  9725. _iframe.contentWindow.document.body.appendChild(script4);
  9726. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9727. })
  9728. if (onloadListener) {
  9729. _iframe.contentDocument.location.reload()
  9730. } else {
  9731. _iframe.contentDocument.location.reload()
  9732. }
  9733. } else {
  9734. _iframe.onload = () => {
  9735. _iframe.contentWindow.document.body.appendChild(script1);
  9736. _iframe.contentWindow.document.body.appendChild(script2);
  9737. // _iframe.contentWindow.document.body.appendChild(script3);
  9738. _iframe.contentWindow.document.body.appendChild(script4);
  9739. };
  9740. }
  9741. _jie.onclick = async () => {
  9742. let text = ''
  9743. if (aTool == 6) {
  9744. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9745. } else if (aTool == 3) {
  9746. text = await U.MD.D.I.getEditorContent(_iframe);
  9747. }
  9748. _loading.style.display = 'flex'
  9749. console.log(_loading);
  9750. var _ajs = _iframe.contentWindow.document.createElement("script");
  9751. _ajs.type = "text/javascript";
  9752. _ajs.innerHTML =
  9753. // 'console.log(' + _loading + ');\n' +
  9754. 'var _js = document.createElement("script");\n' +
  9755. '_js.type="text/javascript";\n' +
  9756. '_js.charset="UTF-8";\n' +
  9757. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9758. "_js.onload = function(){\n" +
  9759. ' var a = document.getElementsByTagName("img")\n' +
  9760. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9761. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9762. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9763. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9764. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9765. "beforeUpload_shishi(file," +
  9766. "'" +
  9767. _userid +
  9768. "'" +
  9769. ", " +
  9770. "'" +
  9771. _cid +
  9772. "'" +
  9773. ", " +
  9774. "'" +
  9775. _stage +
  9776. "'" +
  9777. ", " +
  9778. "'" +
  9779. _task +
  9780. "'" +
  9781. ", " +
  9782. "'" +
  9783. _tool +
  9784. "'" +
  9785. ", " +
  9786. "'" +
  9787. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9788. "'" +
  9789. ", " +
  9790. "'" +
  9791. aTool +
  9792. "'" +
  9793. ", " +
  9794. "`" +
  9795. text +
  9796. "`" +
  9797. ")\n" +
  9798. " });\n" +
  9799. "}\n" +
  9800. "document.head.appendChild(_js);\n";
  9801. _iframe.contentWindow.document.head.appendChild(_ajs);
  9802. }
  9803. }
  9804. //U.MD.D.I.openClick(str);
  9805. //如果有任务栏信息
  9806. // if (_taskbar) {
  9807. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9808. // }
  9809. }
  9810. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9811. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9812. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9813. _userinfo = US.userInfo, //登录用户信息
  9814. _userid = US.userInfo.userid //登录用户id
  9815. let _iframe;
  9816. let _cid = cid,
  9817. _stage = stage,
  9818. _task = task,
  9819. _tool = tool;
  9820. var _jie = $$("div", {
  9821. "style": {
  9822. "position": "absolute",
  9823. "bottom": "50px",
  9824. "right": "50px",
  9825. "zIndex": "9999",
  9826. "backgroundColor": "#2268bc",
  9827. "color": "#fff",
  9828. "padding": "12px 20px",
  9829. "cursor": "pointer",
  9830. "borderRadius": "4px",
  9831. },
  9832. "innerHTML": "确认并提交"
  9833. })
  9834. let aTool = ''
  9835. let _loading = document.createElement('div')
  9836. _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;"
  9837. // _loading.id = "";
  9838. let _lchild = document.createElement('div')
  9839. let _limg = document.createElement('img')
  9840. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9841. _limg.style = "width: 26px;margin-right: 10px;"
  9842. _lchild.appendChild(_limg)
  9843. let _lspan = document.createElement('span')
  9844. _lspan.innerHTML = "上传中..."
  9845. _lchild.appendChild(_lspan)
  9846. _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%);"
  9847. _loading.appendChild(_lchild)
  9848. var _box = $$('div', {
  9849. "style": {
  9850. "position": "relative",
  9851. "width": "100%",
  9852. "height": "100%",
  9853. },
  9854. })
  9855. _box.appendChild(_loading)
  9856. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9857. switch (str) {
  9858. case "whiteboard":
  9859. aTool = 1;
  9860. _iframe = $$("iframe", {
  9861. "frameborder": "no",
  9862. "border": "0",
  9863. "scrolling ": "no",
  9864. "style": {
  9865. "cssText": "border:0;width:100%;height:100%"
  9866. },
  9867. "src": "https://beta.iwb.cocorobo.cn/"
  9868. })
  9869. _box.appendChild(_iframe);
  9870. _box.appendChild(_jie);
  9871. _formdiv = new U.UF.UI.form(
  9872. "电子白板",
  9873. _box, {
  9874. "id": "whiteboards" + cid + stage + task + tool,
  9875. "style": {
  9876. "width": "90%",
  9877. "height": "90%",
  9878. "overflow": 'hidden'
  9879. },
  9880. "onresize": function () { }
  9881. }, {
  9882. closecallback: function () { }
  9883. }, {
  9884. "style": {
  9885. "height": "36px"
  9886. }
  9887. }).form; //创建窗体
  9888. _taskbar = {
  9889. "id": str + _formdiv.id,
  9890. "style": {
  9891. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9892. },
  9893. "name": "电子白板",
  9894. "forms": _formdiv,
  9895. "click": function () {
  9896. U.MD.D.I.openApplication(str, obj, info);
  9897. }
  9898. }
  9899. break;
  9900. case "mind":
  9901. aTool = 3;
  9902. _iframe = $$("iframe", {
  9903. "frameborder": "no",
  9904. "border": "0",
  9905. "scrolling ": "no",
  9906. "style": {
  9907. "cssText": "border:0;width:100%;height:100%"
  9908. },
  9909. "src": "/kityminder-editor/dist/index.html"
  9910. });
  9911. _box.appendChild(_iframe);
  9912. _box.appendChild(_jie);
  9913. _formdiv = new U.UF.UI.form(
  9914. "思维导图",
  9915. _box, { //"/jsmind/example/demo.html"
  9916. "id": "minds" + cid + stage + task + tool,
  9917. "style": {
  9918. "width": "90%",
  9919. "height": "90%",
  9920. "overflow": 'hidden'
  9921. },
  9922. "onresize": function () { }
  9923. }, {
  9924. closecallback: function () { }
  9925. }, {
  9926. "style": {
  9927. "height": "36px"
  9928. }
  9929. }).form; //创建窗体
  9930. _taskbar = {
  9931. "id": str + _formdiv.id,
  9932. "style": {
  9933. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9934. },
  9935. "name": "思维导图",
  9936. "forms": _formdiv,
  9937. "click": function () {
  9938. U.MD.D.I.openApplication(str, obj, info);
  9939. }
  9940. }
  9941. break;
  9942. case "doc":
  9943. aTool = 6;
  9944. _iframe = $$("iframe", {
  9945. "frameborder": "no",
  9946. "border": "0",
  9947. "scrolling ": "no",
  9948. "style": {
  9949. "cssText": "border:0;width:100%;height:100%"
  9950. },
  9951. "src": "/Office/Word/WordEditArea.htm"
  9952. })
  9953. _box.appendChild(_iframe);
  9954. _box.appendChild(_jie);
  9955. _formdiv = new U.UF.UI.form(
  9956. "协同文档",
  9957. _box, {
  9958. "id": "docs" + cid + stage + task + tool,
  9959. "style": {
  9960. "width": "90%",
  9961. "height": "90%",
  9962. "overflow": 'hidden'
  9963. },
  9964. "onresize": function () { }
  9965. }, {
  9966. closecallback: function () { }
  9967. }, {
  9968. "style": {
  9969. "height": "36px"
  9970. }
  9971. }).form; //创建窗体
  9972. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9973. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9974. })
  9975. _taskbar = {
  9976. "id": str + _formdiv.id,
  9977. "style": {
  9978. "backgroundImage": "url(/img/icon/doc.png)"
  9979. },
  9980. "name": "协同文档",
  9981. "forms": _formdiv,
  9982. "click": function () {
  9983. U.MD.D.I.openApplication(str, obj, info);
  9984. }
  9985. }
  9986. break;
  9987. }
  9988. const script1 = document.createElement("script");
  9989. script1.type = "text/javascript";
  9990. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9991. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9992. const script2 = document.createElement("script");
  9993. script2.type = "text/javascript";
  9994. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9995. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9996. const script3 = document.createElement("script");
  9997. script3.type = "text/javascript";
  9998. script3.charset = "UTF-8";
  9999. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  10000. const script4 = document.createElement("script");
  10001. script4.type = "text/javascript";
  10002. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10003. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  10004. if (_iframe) {
  10005. if (str == 'doc') {
  10006. _iframe = _formdiv.querySelector('iframe')
  10007. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10008. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10009. _iframe.contentWindow.document.body.appendChild(script1);
  10010. _iframe.contentWindow.document.body.appendChild(script2);
  10011. // _iframe.contentWindow.document.body.appendChild(script3);
  10012. _iframe.contentWindow.document.body.appendChild(script4);
  10013. })
  10014. if (onloadListener) {
  10015. _iframe.contentDocument.location.reload()
  10016. } else {
  10017. _iframe.contentDocument.location.reload()
  10018. }
  10019. } else if (str == 'mind') {
  10020. _iframe = _formdiv.querySelector('iframe')
  10021. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10022. _iframe.contentWindow.document.body.appendChild(script1);
  10023. _iframe.contentWindow.document.body.appendChild(script2);
  10024. _iframe.contentWindow.document.body.appendChild(script4);
  10025. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10026. })
  10027. if (onloadListener) {
  10028. _iframe.contentDocument.location.reload()
  10029. } else {
  10030. _iframe.contentDocument.location.reload()
  10031. }
  10032. } else {
  10033. _iframe.onload = () => {
  10034. _iframe.contentWindow.document.body.appendChild(script1);
  10035. _iframe.contentWindow.document.body.appendChild(script2);
  10036. // _iframe.contentWindow.document.body.appendChild(script3);
  10037. _iframe.contentWindow.document.body.appendChild(script4);
  10038. };
  10039. }
  10040. _jie.onclick = async () => {
  10041. let text = ''
  10042. if (aTool == 6) {
  10043. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10044. } else if (aTool == 3) {
  10045. text = await U.MD.D.I.getEditorContent(_iframe);
  10046. }
  10047. _loading.style.display = 'flex'
  10048. console.log(_loading);
  10049. var _ajs = _iframe.contentWindow.document.createElement("script");
  10050. _ajs.type = "text/javascript";
  10051. _ajs.innerHTML =
  10052. // 'console.log(' + _loading + ');\n' +
  10053. 'var _js = document.createElement("script");\n' +
  10054. '_js.type="text/javascript";\n' +
  10055. '_js.charset="UTF-8";\n' +
  10056. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10057. "_js.onload = function(){\n" +
  10058. ' var a = document.getElementsByTagName("img")\n' +
  10059. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10060. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10061. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10062. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10063. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10064. "beforeUpload_shishi(file," +
  10065. "'" +
  10066. _userid +
  10067. "'" +
  10068. ", " +
  10069. "'" +
  10070. _cid +
  10071. "'" +
  10072. ", " +
  10073. "'" +
  10074. _stage +
  10075. "'" +
  10076. ", " +
  10077. "'" +
  10078. _task +
  10079. "'" +
  10080. ", " +
  10081. "'" +
  10082. _tool +
  10083. "'" +
  10084. ", " +
  10085. "'" +
  10086. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  10087. "'" +
  10088. ", " +
  10089. "'" +
  10090. aTool +
  10091. "'" +
  10092. ", " +
  10093. "`" +
  10094. text +
  10095. "`" +
  10096. ")\n" +
  10097. " });\n" +
  10098. "}\n" +
  10099. "document.head.appendChild(_js);\n";
  10100. _iframe.contentWindow.document.head.appendChild(_ajs);
  10101. }
  10102. }
  10103. //U.MD.D.I.openClick(str);
  10104. //如果有任务栏信息
  10105. // if (_taskbar) {
  10106. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10107. // }
  10108. }
  10109. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  10110. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10111. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10112. _userinfo = US.userInfo, //登录用户信息
  10113. _userid = US.userInfo.userid //登录用户id
  10114. let _iframe;
  10115. let _cid = cid,
  10116. _stage = stage,
  10117. _task = task,
  10118. _tool = tool;
  10119. var _jie = $$("div", {
  10120. "style": {
  10121. "position": "absolute",
  10122. "bottom": "50px",
  10123. "right": "50px",
  10124. "zIndex": "9999",
  10125. "backgroundColor": "#2268bc",
  10126. "color": "#fff",
  10127. "padding": "12px 20px",
  10128. "cursor": "pointer",
  10129. "borderRadius": "4px",
  10130. },
  10131. "innerHTML": "上传模板"
  10132. })
  10133. let aTool = ''
  10134. let _loading = document.createElement('div')
  10135. _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;"
  10136. // _loading.id = "";
  10137. let _lchild = document.createElement('div')
  10138. let _limg = document.createElement('img')
  10139. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10140. _limg.style = "width: 26px;margin-right: 10px;"
  10141. _lchild.appendChild(_limg)
  10142. let _lspan = document.createElement('span')
  10143. _lspan.innerHTML = "上传中..."
  10144. _lchild.appendChild(_lspan)
  10145. _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%);"
  10146. _loading.appendChild(_lchild)
  10147. var _box = $$('div', {
  10148. "style": {
  10149. "position": "relative",
  10150. "width": "100%",
  10151. "height": "100%",
  10152. },
  10153. })
  10154. _box.appendChild(_loading)
  10155. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  10156. switch (str) {
  10157. case "whiteboard":
  10158. aTool = 1;
  10159. _iframe = $$("iframe", {
  10160. "frameborder": "no",
  10161. "border": "0",
  10162. "scrolling ": "no",
  10163. "style": {
  10164. "cssText": "border:0;width:100%;height:100%"
  10165. },
  10166. "src": "https://beta.iwb.cocorobo.cn/"
  10167. })
  10168. _box.appendChild(_iframe);
  10169. _box.appendChild(_jie);
  10170. _formdiv = new U.UF.UI.form(
  10171. "电子白板",
  10172. _box, {
  10173. "id": "whiteboards_Yu" + cid + stage + task + tool,
  10174. "style": {
  10175. "width": "90%",
  10176. "height": "90%",
  10177. "overflow": 'hidden'
  10178. },
  10179. "onresize": function () { }
  10180. }, {
  10181. closecallback: function () { }
  10182. }, {
  10183. "style": {
  10184. "height": "36px"
  10185. }
  10186. }).form; //创建窗体
  10187. _taskbar = {
  10188. "id": str + _formdiv.id,
  10189. "style": {
  10190. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10191. },
  10192. "name": "电子白板",
  10193. "forms": _formdiv,
  10194. "click": function () {
  10195. U.MD.D.I.openApplication(str, obj, info);
  10196. }
  10197. }
  10198. break;
  10199. case "mind":
  10200. aTool = 3;
  10201. _iframe = $$("iframe", {
  10202. "frameborder": "no",
  10203. "border": "0",
  10204. "scrolling ": "no",
  10205. "style": {
  10206. "cssText": "border:0;width:100%;height:100%"
  10207. },
  10208. "src": "/kityminder-editor/dist/index.html"
  10209. });
  10210. _box.appendChild(_iframe);
  10211. _box.appendChild(_jie);
  10212. _formdiv = new U.UF.UI.form(
  10213. "思维导图",
  10214. _box, { //"/jsmind/example/demo.html"
  10215. "id": "minds_Yu" + cid + stage + task + tool,
  10216. "style": {
  10217. "width": "90%",
  10218. "height": "90%",
  10219. "overflow": 'hidden'
  10220. },
  10221. "onresize": function () { }
  10222. }, {
  10223. closecallback: function () { }
  10224. }, {
  10225. "style": {
  10226. "height": "36px"
  10227. }
  10228. }).form; //创建窗体
  10229. _taskbar = {
  10230. "id": str + _formdiv.id,
  10231. "style": {
  10232. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10233. },
  10234. "name": "思维导图",
  10235. "forms": _formdiv,
  10236. "click": function () {
  10237. U.MD.D.I.openApplication(str, obj, info);
  10238. }
  10239. }
  10240. break;
  10241. case "doc":
  10242. aTool = 6;
  10243. _iframe = $$("iframe", {
  10244. "frameborder": "no",
  10245. "border": "0",
  10246. "scrolling ": "no",
  10247. "style": {
  10248. "cssText": "border:0;width:100%;height:100%"
  10249. },
  10250. "src": "/Office/Word/WordEditArea.htm"
  10251. })
  10252. _box.appendChild(_iframe);
  10253. _box.appendChild(_jie);
  10254. _formdiv = new U.UF.UI.form(
  10255. "协同文档",
  10256. _box, {
  10257. "id": "docs_Yu" + cid + stage + task + tool,
  10258. "style": {
  10259. "width": "90%",
  10260. "height": "90%",
  10261. "overflow": 'hidden'
  10262. },
  10263. "onresize": function () { }
  10264. }, {
  10265. closecallback: function () { }
  10266. }, {
  10267. "style": {
  10268. "height": "36px"
  10269. }
  10270. }).form; //创建窗体
  10271. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10272. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10273. })
  10274. _taskbar = {
  10275. "id": str + _formdiv.id,
  10276. "style": {
  10277. "backgroundImage": "url(/img/icon/doc.png)"
  10278. },
  10279. "name": "协同文档",
  10280. "forms": _formdiv,
  10281. "click": function () {
  10282. U.MD.D.I.openApplication(str, obj, info);
  10283. }
  10284. }
  10285. break;
  10286. case "CocoPi":
  10287. aTool = 57;
  10288. _iframe = $$("iframe", {
  10289. "allowpaymentrequest": "allowpaymentrequest",
  10290. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10291. "webkitallowfullscreen": "",
  10292. "mozallowfullscreen": "",
  10293. "frameborder": "no",
  10294. "border": "0",
  10295. "scrolling ": "no",
  10296. "style": {
  10297. "cssText": "border:0;width:100%;height:100%"
  10298. },
  10299. "src": "https://pi.cocorobo.cn/"
  10300. })
  10301. _box.appendChild(_iframe);
  10302. _box.appendChild(_jie);
  10303. _formdiv = new U.UF.UI.form(
  10304. "CocoPi",
  10305. _box, {
  10306. "id": "CocoPi_Yu" + cid + stage + task + tool,
  10307. "style": {
  10308. "width": "90%",
  10309. "height": "90%",
  10310. "overflow": 'hidden'
  10311. },
  10312. "onresize": function () { }
  10313. }, {
  10314. closecallback: function () { }
  10315. }, {
  10316. "style": {
  10317. "height": "36px"
  10318. }
  10319. }).form; //创建窗体
  10320. _taskbar = {
  10321. "id": str + _formdiv.id,
  10322. "style": {
  10323. "backgroundImage": "url(/img/icon/cocopi.png)"
  10324. },
  10325. "name": "CocoPi",
  10326. "forms": _formdiv,
  10327. "click": function () {
  10328. U.MD.D.I.openApplication(str, obj, info);
  10329. }
  10330. }
  10331. break;
  10332. }
  10333. if (_iframe) {
  10334. if (str == 'doc') {
  10335. _iframe = _formdiv.querySelector('iframe')
  10336. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10337. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10338. })
  10339. if (onloadListener) {
  10340. _iframe.contentDocument.location.reload()
  10341. } else {
  10342. _iframe.contentDocument.location.reload()
  10343. }
  10344. } else if (str == 'mind') {
  10345. _iframe = _formdiv.querySelector('iframe')
  10346. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10347. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10348. })
  10349. if (onloadListener) {
  10350. _iframe.contentDocument.location.reload()
  10351. } else {
  10352. _iframe.contentDocument.location.reload()
  10353. }
  10354. } else if (str == 'whiteboard') {
  10355. _iframe = _formdiv.querySelector('iframe')
  10356. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10357. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10358. })
  10359. // if (onloadListener) {
  10360. // try {
  10361. // _iframe.src += "?cocorobo="+new Date().getTime()
  10362. // _iframe.contentWindow.document.location.reload()
  10363. // } catch (error) {
  10364. // }
  10365. // } else {
  10366. // _iframe.contentDocument.location.reload()
  10367. // }
  10368. } else if (str == 'CocoPi') {
  10369. _iframe = _formdiv.querySelector('iframe')
  10370. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10371. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10372. })
  10373. if (onloadListener) {
  10374. _iframe.contentDocument.location.reload()
  10375. } else {
  10376. _iframe.contentDocument.location.reload()
  10377. }
  10378. } else {
  10379. _iframe.onload = () => { };
  10380. }
  10381. _jie.onclick = async () => {
  10382. let text = ''
  10383. let type = '2'
  10384. if (aTool == 1) {
  10385. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10386. type = '3'
  10387. } else if (aTool == 6) {
  10388. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10389. type = '1'
  10390. } else if (aTool == 3) {
  10391. text = await U.MD.D.I.getEditorContent(_iframe);
  10392. type = '2'
  10393. } else if (aTool == 57) {
  10394. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10395. type = '4'
  10396. }
  10397. _loading.style.display = 'flex'
  10398. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10399. }
  10400. }
  10401. //U.MD.D.I.openClick(str);
  10402. //如果有任务栏信息
  10403. // if (_taskbar) {
  10404. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10405. // }
  10406. }
  10407. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10408. var xmlhttp;
  10409. var Mac, Sn, DeviceId
  10410. if (window.XMLHttpRequest) {
  10411. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10412. xmlhttp = new XMLHttpRequest();
  10413. } else {
  10414. // IE6, IE5 浏览器执行代码
  10415. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10416. }
  10417. xmlhttp.onreadystatechange = function () {
  10418. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10419. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10420. // resolve(res.value[0][0].text);
  10421. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10422. }
  10423. }
  10424. }
  10425. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10426. xmlhttp.send();
  10427. }
  10428. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10429. var xmlhttp;
  10430. var Mac, Sn, DeviceId
  10431. if (window.XMLHttpRequest) {
  10432. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10433. xmlhttp = new XMLHttpRequest();
  10434. } else {
  10435. // IE6, IE5 浏览器执行代码
  10436. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10437. }
  10438. xmlhttp.onreadystatechange = function () {
  10439. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10440. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10441. // resolve(res.value[0][0].text);
  10442. if (type == '2') {
  10443. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10444. } else if (type == '3') {
  10445. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10446. } else if (type == '4') {
  10447. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10448. }
  10449. } else {
  10450. if (type == '2') {
  10451. iframe.contentWindow.editor.minder.importData('json', '')
  10452. } else if (type == '3') {
  10453. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10454. } else if (type == '4') {
  10455. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10456. }
  10457. }
  10458. }
  10459. }
  10460. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10461. xmlhttp.send();
  10462. }
  10463. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10464. var xmlhttp;
  10465. var Mac, Sn, DeviceId
  10466. if (window.XMLHttpRequest) {
  10467. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10468. xmlhttp = new XMLHttpRequest();
  10469. } else {
  10470. // IE6, IE5 浏览器执行代码
  10471. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10472. }
  10473. xmlhttp.onreadystatechange = function () {
  10474. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10475. if (xmlhttp.response) {
  10476. // resolve(res.value[0][0].text);
  10477. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10478. // $(fileInput).val('');
  10479. // });
  10480. span.innerHTML = '上传成功'
  10481. setTimeout(() => {
  10482. loading.style.display = 'none'
  10483. }, 1000);
  10484. }
  10485. }
  10486. }
  10487. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10488. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10489. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10490. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10491. // 设置请求头,表示请求体的编码格式
  10492. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10493. // 设置请求体,使用url-encoded格式的数据
  10494. }
  10495. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10496. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10497. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10498. _userinfo = US.userInfo, //登录用户信息
  10499. _userid = US.userInfo.userid //登录用户id
  10500. let _iframe;
  10501. let _cid = cid,
  10502. _stage = stage,
  10503. _task = task,
  10504. _tool = tool;
  10505. var _jie = $$("div", {
  10506. "style": {
  10507. "position": "absolute",
  10508. "bottom": "50px",
  10509. "right": "50px",
  10510. "zIndex": "9999",
  10511. "backgroundColor": "#2268bc",
  10512. "color": "#fff",
  10513. "padding": "12px 20px",
  10514. "cursor": "pointer",
  10515. "borderRadius": "4px",
  10516. },
  10517. "innerHTML": "提交作业"
  10518. })
  10519. let aTool = ''
  10520. let _loading = document.createElement('div')
  10521. _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;"
  10522. // _loading.id = "";
  10523. let _lchild = document.createElement('div')
  10524. let _limg = document.createElement('img')
  10525. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10526. _limg.style = "width: 26px;margin-right: 10px;"
  10527. _lchild.appendChild(_limg)
  10528. let _lspan = document.createElement('span')
  10529. _lspan.innerHTML = "上传中..."
  10530. _lchild.appendChild(_lspan)
  10531. _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%);"
  10532. _loading.appendChild(_lchild)
  10533. var _box = $$('div', {
  10534. "style": {
  10535. "position": "relative",
  10536. "width": "100%",
  10537. "height": "100%",
  10538. },
  10539. })
  10540. _box.appendChild(_loading)
  10541. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10542. switch (str) {
  10543. case "CocoPi":
  10544. aTool = 57;
  10545. _iframe = $$("iframe", {
  10546. "allowpaymentrequest": "allowpaymentrequest",
  10547. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10548. "webkitallowfullscreen": "",
  10549. "mozallowfullscreen": "",
  10550. "frameborder": "no",
  10551. "border": "0",
  10552. "scrolling ": "no",
  10553. "style": {
  10554. "cssText": "border:0;width:100%;height:100%"
  10555. },
  10556. "src": "https://pi.cocorobo.cn/"
  10557. })
  10558. _box.appendChild(_iframe);
  10559. _box.appendChild(_jie);
  10560. _formdiv = new U.UF.UI.form(
  10561. "CocoPi",
  10562. _box, {
  10563. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10564. "style": {
  10565. "width": "90%",
  10566. "height": "90%",
  10567. "overflow": 'hidden'
  10568. },
  10569. "onresize": function () { }
  10570. }, {
  10571. closecallback: function () { }
  10572. }, {
  10573. "style": {
  10574. "height": "36px"
  10575. }
  10576. }).form; //创建窗体
  10577. _taskbar = {
  10578. "id": str + _formdiv.id,
  10579. "style": {
  10580. "backgroundImage": "url(/img/icon/cocopi.png)"
  10581. },
  10582. "name": "CocoPi",
  10583. "forms": _formdiv,
  10584. "click": function () {
  10585. U.MD.D.I.openApplication(str, obj, info);
  10586. }
  10587. }
  10588. break;
  10589. }
  10590. if (_iframe) {
  10591. if (str == 'CocoPi') {
  10592. _iframe = _formdiv.querySelector('iframe')
  10593. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10594. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10595. })
  10596. if (onloadListener) {
  10597. _iframe.contentDocument.location.reload()
  10598. } else {
  10599. _iframe.contentDocument.location.reload()
  10600. }
  10601. }
  10602. _jie.onclick = async () => {
  10603. let text = ''
  10604. if (aTool == 57) {
  10605. text = _iframe.contentWindow.getLoadXmlStr()
  10606. }
  10607. _loading.style.display = 'flex'
  10608. console.log(_loading);
  10609. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10610. _loading.style.display = 'none'
  10611. let _div = document.createElement('div')
  10612. _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;"
  10613. let _inner = document.createElement('div')
  10614. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10615. _inner.innerHTML = "上传成功"
  10616. _div.appendChild(_inner)
  10617. _iframe.contentWindow.window.document.body.appendChild(_div)
  10618. _div.onclick = () => {
  10619. _iframe.contentWindow.window.document.body.removeChild(_div)
  10620. }
  10621. setTimeout(() => {
  10622. _iframe.contentWindow.window.document.body.removeChild(_div)
  10623. }, 1000);
  10624. }, [], { "type": "POST", "withCredentials": true });
  10625. }
  10626. }
  10627. }
  10628. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10629. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10630. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10631. _userid = student.userid, //登录用户id
  10632. _username = student.student //用户名字
  10633. let _iframe;
  10634. let _cid = cid,
  10635. _stage = stage,
  10636. _task = task,
  10637. _tool = tool;
  10638. var _jie = $$("div", {
  10639. "style": {
  10640. "position": "absolute",
  10641. "bottom": "50px",
  10642. "right": "50px",
  10643. "zIndex": "9999",
  10644. "backgroundColor": "#2268bc",
  10645. "color": "#fff",
  10646. "padding": "12px 20px",
  10647. "cursor": "pointer",
  10648. "borderRadius": "4px",
  10649. },
  10650. "innerHTML": "提交作业"
  10651. })
  10652. let aTool = ''
  10653. let _loading = document.createElement('div')
  10654. _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;"
  10655. // _loading.id = "";
  10656. let _lchild = document.createElement('div')
  10657. let _limg = document.createElement('img')
  10658. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10659. _limg.style = "width: 26px;margin-right: 10px;"
  10660. _lchild.appendChild(_limg)
  10661. let _lspan = document.createElement('span')
  10662. _lspan.innerHTML = "上传中..."
  10663. _lchild.appendChild(_lspan)
  10664. _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%);"
  10665. _loading.appendChild(_lchild)
  10666. var _box = $$('div', {
  10667. "style": {
  10668. "position": "relative",
  10669. "width": "100%",
  10670. "height": "100%",
  10671. },
  10672. })
  10673. _box.appendChild(_loading)
  10674. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10675. switch (str) {
  10676. case "CocoPi":
  10677. aTool = 57;
  10678. _iframe = $$("iframe", {
  10679. "allowpaymentrequest": "allowpaymentrequest",
  10680. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10681. "webkitallowfullscreen": "",
  10682. "mozallowfullscreen": "",
  10683. "frameborder": "no",
  10684. "border": "0",
  10685. "scrolling ": "no",
  10686. "style": {
  10687. "cssText": "border:0;width:100%;height:100%"
  10688. },
  10689. "src": "https://pi.cocorobo.cn/"
  10690. })
  10691. _box.appendChild(_iframe);
  10692. _box.appendChild(_jie);
  10693. _formdiv = new U.UF.UI.form(
  10694. "CocoPi-" + _username,
  10695. _box, {
  10696. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10697. "style": {
  10698. "width": "90%",
  10699. "height": "90%",
  10700. "overflow": 'hidden'
  10701. },
  10702. "onresize": function () { }
  10703. }, {
  10704. closecallback: function () { }
  10705. }, {
  10706. "style": {
  10707. "height": "36px"
  10708. }
  10709. }).form; //创建窗体
  10710. _taskbar = {
  10711. "id": str + _formdiv.id,
  10712. "style": {
  10713. "backgroundImage": "url(/img/icon/cocopi.png)"
  10714. },
  10715. "name": "CocoPi",
  10716. "forms": _formdiv,
  10717. "click": function () {
  10718. U.MD.D.I.openApplication(str, obj, info);
  10719. }
  10720. }
  10721. break;
  10722. }
  10723. if (_iframe) {
  10724. if (str == 'CocoPi') {
  10725. _iframe = _formdiv.querySelector('iframe')
  10726. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10727. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10728. })
  10729. if (onloadListener) {
  10730. _iframe.contentDocument.location.reload()
  10731. } else {
  10732. _iframe.contentDocument.location.reload()
  10733. }
  10734. }
  10735. _jie.onclick = async () => {
  10736. let text = ''
  10737. if (aTool == 57) {
  10738. text = _iframe.contentWindow.getLoadXmlStr()
  10739. }
  10740. _loading.style.display = 'flex'
  10741. console.log(_loading);
  10742. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10743. _loading.style.display = 'none'
  10744. let _div = document.createElement('div')
  10745. _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;"
  10746. let _inner = document.createElement('div')
  10747. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10748. _inner.innerHTML = "上传成功"
  10749. _div.appendChild(_inner)
  10750. _iframe.contentWindow.window.document.body.appendChild(_div)
  10751. _div.onclick = () => {
  10752. _iframe.contentWindow.window.document.body.removeChild(_div)
  10753. }
  10754. setTimeout(() => {
  10755. _iframe.contentWindow.window.document.body.removeChild(_div)
  10756. }, 1000);
  10757. }, [], { "type": "POST", "withCredentials": true });
  10758. }
  10759. }
  10760. }
  10761. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10762. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10763. if (res.value[0].length > 0) {
  10764. if (atool == 57) {
  10765. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10766. }
  10767. } else {
  10768. if (atool == 57) {
  10769. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10770. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10771. }
  10772. }
  10773. }, [], { "type": "POST", "withCredentials": true });
  10774. }
  10775. U.MD.D.addOp = function(text,type,time){
  10776. var userInfo = US.userInfo;
  10777. if(Object.keys(userInfo).length !== 0){
  10778. U.A.Request(US.Config.pbl + "addOperationTimeT", [userInfo.userid,text,type,time], function (res) {
  10779. }, [], { "type": "POST", "withCredentials": true });
  10780. }
  10781. }