DeskTop.js 702 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  106. ];
  107. U.MD.D.I.studentDeskIcon = [
  108. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  109. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  110. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  111. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  112. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  113. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  114. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  115. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  116. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  117. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  118. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  119. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  120. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  121. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  122. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  123. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  124. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  125. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  126. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  127. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  128. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  129. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  130. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  131. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  132. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  133. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  134. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  135. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  136. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  137. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  138. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  139. ];
  140. U.MD.D.I.studentDeskIcon2 = [
  141. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  142. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  143. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  144. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  145. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  146. ]
  147. U.MD.D.I.studentDeskIcon3 = [
  148. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  149. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  150. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  151. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  152. ]
  153. U.MD.D.I.schoolDeskIcon = [
  154. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  155. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  156. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  157. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  158. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  159. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  160. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  161. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  162. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  163. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  164. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  165. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  166. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  167. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  168. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  169. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  170. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  171. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  172. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  173. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  174. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  175. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  176. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  177. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  178. ];
  179. U.MD.D.I.orgDeskIcon = [
  180. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  181. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  182. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  183. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  184. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  185. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  187. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  188. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  189. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  190. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  191. ];
  192. U.MD.D.I.orgStemDeskIcon = [
  193. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  194. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  195. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  196. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  197. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  198. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  199. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  200. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  201. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  202. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  203. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  204. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  205. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  206. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  207. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  209. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  210. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  211. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  212. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  213. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  214. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  215. ];
  216. U.MD.D.I.szulsDeskIcon = [
  217. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  218. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  219. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  220. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  221. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  222. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  223. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  224. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  225. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  226. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  227. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  228. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  229. ];
  230. U.MD.D.I.hanDeskIcon = [
  231. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  232. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  233. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  234. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  235. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  236. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  237. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  238. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  239. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  240. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  241. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  242. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  243. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  244. ];
  245. U.MD.D.I.GMteacherDeskIcon = [
  246. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  247. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  248. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  249. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  250. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  251. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  252. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  253. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  254. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  255. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  256. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  257. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  258. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  259. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  260. ];
  261. U.MD.D.I.GMstudentDeskIcon = [
  262. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  263. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  264. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  265. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  266. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  267. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  268. ];
  269. //松山湖
  270. U.MD.D.I.SONGteacherDeskIcon = [
  271. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  272. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  273. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  274. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  275. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  276. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  277. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  278. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  279. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  280. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  281. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  282. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  283. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  284. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  285. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  286. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  287. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  288. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  289. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  290. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  291. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  292. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  293. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  294. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  295. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  296. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  297. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  298. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  299. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  300. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  301. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  302. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  303. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  304. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  305. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  306. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  307. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  308. ];
  309. U.MD.D.I.tcStudentDeskIcon = [
  310. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  311. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  312. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  313. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  314. ];
  315. U.MD.D.I.tcTeacherDeskIcon = [
  316. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  317. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  318. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  319. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  320. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  321. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  322. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  323. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  324. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  325. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  326. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  327. ];
  328. U.MD.D.I.tcOrganizerDeskIcon = [
  329. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  330. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  331. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  332. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  333. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  334. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  335. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  336. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  337. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  338. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  339. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  340. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  341. ];
  342. U.MD.D.I.szscStudentDeskIcon = [
  343. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  344. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  345. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  346. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  347. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  348. ];
  349. U.MD.D.I.szscTeacherDeskIcon = [
  350. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  351. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  352. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  353. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  354. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  355. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  356. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  357. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  358. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  359. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  360. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  361. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  362. ];
  363. U.MD.D.I.szscOrganizerDeskIcon = [
  364. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  365. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  366. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  367. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  368. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  369. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  370. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  371. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  372. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  373. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  374. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  375. ];
  376. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  377. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  378. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  379. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  380. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  381. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  382. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  383. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  384. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  385. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  386. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  387. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  388. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  389. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  390. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  391. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  392. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  393. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  394. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  395. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  396. ];
  397. U.MD.D.I.wankeAdminDeskIcon = [
  398. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  399. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  400. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  401. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  402. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  403. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  404. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  405. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  406. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  407. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  408. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  409. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  410. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  411. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  412. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  413. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  414. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  415. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  416. ];
  417. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  418. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  419. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  420. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  421. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  422. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  423. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  424. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  425. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  426. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  427. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  428. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  429. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  430. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  431. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  432. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  433. ];
  434. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  435. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  436. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  437. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  438. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  439. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  440. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  441. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  442. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  443. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  444. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  445. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  446. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  447. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  448. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  449. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  450. ];
  451. //明德教师桌面图标的全局变量
  452. U.MD.D.I.MingdeTeacherDeskIcon = [
  453. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  454. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  455. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  456. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  457. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  458. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  459. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  460. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  461. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  462. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  463. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  464. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  465. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  466. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  467. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  468. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  469. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  470. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  471. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  472. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  473. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  474. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  475. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  476. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  477. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  478. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  479. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  480. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  481. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  482. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  483. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  484. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  485. ];
  486. //97c4ee8b-d010-4042-986d-e9d3c217264f
  487. //教师桌面图标的全局变量
  488. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  489. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  490. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  491. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  492. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  493. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  494. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  495. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  496. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  497. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  498. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  499. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  500. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  501. ];
  502. //福田
  503. U.MD.D.I.futianTeacherDeskIcon = [
  504. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  505. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  506. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  507. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  508. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  509. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  510. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  511. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  512. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  513. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  514. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  515. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  516. ];
  517. //福田
  518. U.MD.D.I.futianAdminDeskIcon = [
  519. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  520. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  521. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  522. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  523. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  524. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  525. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  526. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  527. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  528. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  529. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  530. ];
  531. //lotech
  532. U.MD.D.I.lotechTeacherDeskIcon = [
  533. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  534. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  535. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  536. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  537. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  538. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  539. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  540. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  541. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  542. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  543. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  544. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  545. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  546. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  547. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  548. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  549. ];
  550. //龙华中心小学教师桌面图标的全局变量
  551. U.MD.D.I.longhuateacherDeskIcon = [
  552. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  553. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  554. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  555. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  556. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  557. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  558. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  559. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  560. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  561. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  562. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  563. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  564. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  565. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  566. ];
  567. //教科院实小教师桌面图标的全局变量
  568. U.MD.D.I.siesteacherDeskIcon = [
  569. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  570. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  571. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  572. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  573. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  574. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  575. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  576. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  577. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  578. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  579. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  580. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  581. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  582. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  583. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  584. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  585. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  587. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  588. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  589. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  590. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  591. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  592. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  593. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  594. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  595. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  596. ];
  597. //教科院实小教师桌面图标的全局变量
  598. U.MD.D.I.siesStudentDeskIcon = [
  599. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  600. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  601. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  602. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  603. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  604. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  605. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  606. ];
  607. //中山小学教师桌面图标的全局变量
  608. U.MD.D.I.guzmsteacherDeskIcon = [
  609. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  610. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  611. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  612. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  613. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  614. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  615. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  616. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  617. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  618. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  619. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  620. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  621. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  622. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  623. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  624. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  625. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  626. ];
  627. //中山小学学生桌面图标的全局变量
  628. U.MD.D.I.guzmsStudentDeskIcon = [
  629. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  630. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  631. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  632. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  633. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  634. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  635. ];
  636. //福田
  637. U.MD.D.I.gdjgTeacherDeskIcon = [
  638. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  639. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  640. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  641. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  642. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  643. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  644. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  645. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  646. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  647. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  648. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  649. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  650. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  651. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  652. ];
  653. //gdjg
  654. U.MD.D.I.gdjgAdminDeskIcon = [
  655. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  656. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  657. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  658. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  659. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  660. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  661. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  662. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  663. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  664. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  665. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  666. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  667. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  668. ];
  669. //hk
  670. U.MD.D.I.hkteacherDeskIcon = [
  671. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  672. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  673. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  674. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  675. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  676. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  677. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  678. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  679. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  680. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  681. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  682. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  683. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  684. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  685. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  686. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  687. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  688. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  689. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  690. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  691. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  692. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  693. ];
  694. //ricoh
  695. U.MD.D.I.ricohteacherDeskIcon = [
  696. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  697. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  698. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  699. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  700. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  701. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  702. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  703. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  704. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  705. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  706. ];
  707. //hk
  708. U.MD.D.I.hkStudentDeskIcon = [
  709. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  710. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  711. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  712. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  713. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  714. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  715. ];
  716. //hk
  717. U.MD.D.I.hkaceteacherDeskIcon = [
  718. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  719. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  720. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  721. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  722. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  723. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  724. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  725. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  726. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  727. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  728. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  729. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  730. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  731. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  732. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  733. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  734. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  735. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  736. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  737. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  738. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  739. ];
  740. //hk
  741. U.MD.D.I.hkaceStudentDeskIcon = [
  742. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  743. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  744. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  745. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  746. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  747. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  748. ];
  749. //香海正覺蓮社佛教正覺中學
  750. U.MD.D.I.hkZJLSteacherDeskIcon = [
  751. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  752. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  753. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  754. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  755. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  756. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  757. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  758. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  759. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  760. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  761. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  762. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  763. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  764. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  765. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  766. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  767. ];
  768. //香海正覺蓮社佛教正覺中學
  769. U.MD.D.I.hkZJLSStudentDeskIcon = [
  770. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  771. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  772. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  773. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  774. ];
  775. //云海
  776. U.MD.D.I.yunhaiTeacherDeskIcon = [
  777. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  778. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  779. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  780. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  781. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  782. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  783. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  784. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  785. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  786. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  787. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  788. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  789. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  790. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  791. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  792. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  793. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  794. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  795. ];
  796. //福田
  797. U.MD.D.I.heyuanTeacherDeskIcon = [
  798. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  799. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  800. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  801. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  802. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  803. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  804. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  805. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  806. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  807. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  808. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  809. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  810. ];
  811. //福田
  812. U.MD.D.I.heyuanAdminDeskIcon = [
  813. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  814. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  815. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  816. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  817. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  818. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  819. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  820. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  821. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  822. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  823. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  824. ];
  825. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  826. U.MD.D.I.szherTeacherDeskIcon = [
  827. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  828. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  829. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  830. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  831. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  832. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  833. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  834. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  835. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  836. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  837. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  838. ];
  839. //dsei
  840. U.MD.D.I.dseiTeacherDeskIcon = [
  841. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  842. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  843. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  844. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  845. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  846. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  847. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  848. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  849. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  850. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  851. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  852. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  853. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  854. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  855. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  856. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  857. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  858. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  859. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  860. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  861. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  862. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  863. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  864. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  865. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  866. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  867. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  868. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  869. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  870. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  871. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  872. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  873. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  874. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  875. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  876. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  877. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  878. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  879. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  880. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  881. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  882. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  883. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  884. ];
  885. //dsei
  886. U.MD.D.I.dseiAdminDeskIcon = [
  887. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  888. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  889. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  890. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  891. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  892. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  893. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  894. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  895. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  896. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  897. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  898. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  899. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  900. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  901. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  902. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  903. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  904. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  905. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  906. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  907. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  908. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  909. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  910. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  911. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  912. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  913. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  914. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  915. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  916. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  917. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  918. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  919. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  920. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  921. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  922. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  923. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  924. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  925. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  926. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  927. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  928. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  929. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  930. ];
  931. //dsei
  932. U.MD.D.I.dseiStudentDeskIcon = [
  933. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  934. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  935. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  936. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  937. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  938. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  939. ];
  940. //未来教育基地
  941. U.MD.D.I.szjkyTeacherDeskIcon = [
  942. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  943. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  944. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  945. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  946. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  947. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  948. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  949. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  950. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  951. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  952. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  953. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  954. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  955. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  956. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  957. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  958. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  959. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  960. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  961. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  962. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  963. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  964. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  965. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  966. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  967. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  968. ];
  969. //未来教育基地
  970. U.MD.D.I.szjkyAdminDeskIcon = [
  971. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  972. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  973. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  974. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  975. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  976. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  977. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  978. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  979. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  980. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  981. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  982. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  983. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  984. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  985. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  986. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  987. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  988. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  989. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  990. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  991. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  992. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  993. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  994. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  995. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  996. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  997. ];
  998. //未来教育基地
  999. U.MD.D.I.szjkyStudentDeskIcon = [
  1000. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1001. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1002. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1003. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1004. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1005. ];
  1006. //成华教育局
  1007. U.MD.D.I.chjyjTeacherDeskIcon = [
  1008. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1009. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1010. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1011. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1012. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1013. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1014. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1015. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1016. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1017. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1018. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1019. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1020. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1021. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1022. ];
  1023. //成华教育局chjyj
  1024. U.MD.D.I.chjyjAdminDeskIcon = [
  1025. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1026. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1027. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1028. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1029. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1030. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1031. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1032. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1033. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1034. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1035. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1036. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1037. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1038. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1039. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1040. ];
  1041. //成华教育局chjyj
  1042. U.MD.D.I.chjyjStudentDeskIcon = [
  1043. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1044. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1045. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1046. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1047. ];
  1048. //tpc
  1049. U.MD.D.I.tpcStudentDeskIcon = [
  1050. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1051. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1052. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1053. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1054. ];
  1055. //tpc
  1056. U.MD.D.I.tpcTeacherDeskIcon = [
  1057. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1058. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1059. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1060. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1061. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1062. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1063. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1064. ];
  1065. //tpc
  1066. U.MD.D.I.tpcAdminDeskIcon = [
  1067. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1068. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1069. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1070. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1071. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1072. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1073. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1074. ];
  1075. //THU-IOE
  1076. U.MD.D.I.thuioeTeacherDeskIcon = [
  1077. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1078. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1079. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1080. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1081. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1082. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1083. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1084. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1085. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1086. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1087. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1088. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1089. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1090. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1091. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1092. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1093. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1094. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1095. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1096. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1097. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1098. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1099. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1100. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1101. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1102. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1103. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1104. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1105. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1106. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1107. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1108. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1109. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1110. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1111. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1112. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1113. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1114. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1115. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1116. ];
  1117. //THU-IOE
  1118. U.MD.D.I.thuioeStudentDeskIcon = [
  1119. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1120. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1121. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1122. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1123. ];
  1124. //jccssyl
  1125. U.MD.D.I.jccssylTeacherDeskIcon = [
  1126. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1127. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1128. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1129. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1130. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1131. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1132. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1133. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1134. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1135. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1136. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1137. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1138. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1139. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1140. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1141. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1142. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1143. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1144. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1145. ];
  1146. //jccssyl
  1147. U.MD.D.I.jccssylStudentDeskIcon = [
  1148. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1149. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1150. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1151. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1152. ];
  1153. //cale
  1154. U.MD.D.I.caleTeacherDeskIcon = [
  1155. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1156. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1157. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1158. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1159. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1160. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1161. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1162. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1163. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1164. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1165. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1166. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1167. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1168. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1169. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1170. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1171. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1172. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1173. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1174. ];
  1175. //cale
  1176. U.MD.D.I.caleStudentDeskIcon = [
  1177. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1178. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1179. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1180. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1181. ];
  1182. //lqwmsgzs
  1183. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1184. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1185. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1186. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1187. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1188. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1189. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1190. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1191. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1192. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1193. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1194. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1195. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1196. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1197. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1198. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1199. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1200. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1201. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1202. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1203. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1204. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1205. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1206. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1207. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1208. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1209. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1210. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1211. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1212. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1213. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1214. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1215. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1216. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1217. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1218. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1219. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1220. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1221. ];
  1222. //lqwmsgzs
  1223. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1224. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1225. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1226. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1227. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1228. ];
  1229. //盐田区幼儿园
  1230. U.MD.D.I.ytyTeacherDeskIcon = [
  1231. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1232. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1233. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1234. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1235. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1236. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1237. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1238. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1239. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1240. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1242. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1243. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1244. ];
  1245. //盐田区幼儿园
  1246. U.MD.D.I.ytyStudentDeskIcon = [
  1247. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1248. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1249. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1250. ];
  1251. //scnuai
  1252. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1253. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1254. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1255. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1256. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1257. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1258. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1259. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1260. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1261. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1262. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1263. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1264. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1265. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1266. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1267. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1268. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1269. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1270. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1271. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1272. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1273. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1274. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1275. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1276. ];
  1277. //scnuai
  1278. U.MD.D.I.scnuaiAdminDeskIcon = [
  1279. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1280. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1281. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1282. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1283. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1284. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1285. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1286. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1287. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1288. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1289. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1290. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1291. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1292. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1293. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1294. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1295. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1296. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1297. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1298. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1299. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1300. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1301. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1302. ];
  1303. //scnuai
  1304. U.MD.D.I.scnuaiStudentDeskIcon = [
  1305. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1306. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1307. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1308. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1309. ];
  1310. //cocobiz
  1311. U.MD.D.I.cocobizteacherDeskIcon = [
  1312. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1313. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1314. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1315. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1316. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1317. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1318. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1319. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1320. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1321. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1322. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1323. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1324. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1325. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1326. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1327. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1328. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1329. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1330. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1331. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1332. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1333. ];
  1334. //cocobiz
  1335. U.MD.D.I.cocobizStudentDeskIcon = [
  1336. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1337. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1338. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1339. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1340. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1341. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1342. ];
  1343. //xxzjky
  1344. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1345. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1346. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1347. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1348. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1349. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1350. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1351. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1352. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1353. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1354. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1355. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1356. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1357. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1358. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1359. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1360. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1361. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1362. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1363. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1364. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1365. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1366. ];
  1367. //xxzjky
  1368. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1369. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1370. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1371. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1372. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1373. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1374. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1375. ];
  1376. //nsfx
  1377. U.MD.D.I.nsfxTeacherDeskIcon = [
  1378. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1379. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1380. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1381. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1382. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1383. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1384. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1385. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1386. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1387. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1388. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1389. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1390. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1391. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1392. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1393. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1394. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1395. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1396. ];
  1397. //nsfx
  1398. U.MD.D.I.nsfxStudentDeskIcon = [
  1399. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1400. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1401. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1402. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1403. ];
  1404. //stia
  1405. U.MD.D.I.stiaTeacherDeskIcon = [
  1406. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1407. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1408. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1409. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1410. // { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1411. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1412. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1413. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1414. // { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1415. // { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1416. // { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1417. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1418. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1419. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1420. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1421. ];
  1422. //stia
  1423. U.MD.D.I.stiaStudentDeskIcon = [
  1424. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1425. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1426. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1427. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1428. ];
  1429. //szdjg
  1430. U.MD.D.I.szdjgTeacherDeskIcon = [
  1431. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1432. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1433. ];
  1434. //szdjg
  1435. U.MD.D.I.szdjgStudentDeskIcon = [
  1436. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1437. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1438. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1439. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1440. ];
  1441. //010607
  1442. U.MD.D.I.x010607TeacherDeskIcon = [
  1443. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1444. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1445. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1446. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1447. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1448. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1449. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1450. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1451. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1452. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1453. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1454. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1455. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1456. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1457. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1458. ];
  1459. //010607
  1460. U.MD.D.I.x010607StudentDeskIcon = [
  1461. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1462. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1463. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1464. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1465. ];
  1466. //010608
  1467. U.MD.D.I.x010608TeacherDeskIcon = [
  1468. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1469. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1470. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1471. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1472. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1473. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1474. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1475. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1476. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1477. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1478. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1479. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1480. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1481. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1482. ];
  1483. //010608
  1484. U.MD.D.I.x010608StudentDeskIcon = [
  1485. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1486. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1487. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1488. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1489. ];
  1490. //xhly
  1491. U.MD.D.I.xhlyTeacherDeskIcon = [
  1492. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1493. ];
  1494. //010608
  1495. U.MD.D.I.xhlyStudentDeskIcon = [
  1496. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1497. ];
  1498. //北师大
  1499. U.MD.D.I.BSDNSteacherDeskIcon = [
  1500. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1501. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1502. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1503. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1504. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1505. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1506. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1507. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1508. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1509. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1510. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1511. ];
  1512. //北师大
  1513. U.MD.D.I.BSDNSstudentDeskIcon = [
  1514. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1515. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1516. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1517. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1518. ];
  1519. //CUHK_EDU
  1520. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1521. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1522. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1523. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1524. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1525. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1526. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1527. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1528. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1529. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1530. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1531. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1532. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1533. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1534. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1535. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1536. ];
  1537. //CUHK_EDU
  1538. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1539. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1540. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1541. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1542. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1543. ];
  1544. //010503
  1545. U.MD.D.I.x010503TeacherDeskIcon = [
  1546. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1547. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1548. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1549. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1550. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1551. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1552. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1553. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1554. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1555. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1556. ];
  1557. //010503
  1558. U.MD.D.I.x010503StudentDeskIcon = [
  1559. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1560. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1561. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1562. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1563. ];
  1564. //SPROUT Lab
  1565. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1566. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1567. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1568. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1569. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1570. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1571. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1572. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1573. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1574. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1575. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1576. ];
  1577. //SPROUT Lab
  1578. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1579. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1580. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1581. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1582. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1583. ];
  1584. //010204
  1585. U.MD.D.I.x010204TeacherDeskIcon = [
  1586. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1587. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1588. ];
  1589. //010204
  1590. U.MD.D.I.x010204StudentDeskIcon = [
  1591. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1592. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1593. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1594. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1595. ];
  1596. //trail
  1597. U.MD.D.I.trailTeacherDeskIcon = [
  1598. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1599. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1600. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1601. ];
  1602. //trail
  1603. U.MD.D.I.trailStudentDeskIcon = [
  1604. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1605. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1606. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1607. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1608. ];
  1609. //010504
  1610. U.MD.D.I.x010504TeacherDeskIcon = [
  1611. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1612. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1613. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1614. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1615. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1616. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1617. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1618. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1619. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1620. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1621. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1622. ];
  1623. //010504
  1624. U.MD.D.I.x010504StudentDeskIcon = [
  1625. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1626. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1627. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1628. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1629. ];
  1630. //010505
  1631. U.MD.D.I.x010505TeacherDeskIcon = [
  1632. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1633. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1634. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1635. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1636. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1637. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1638. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1639. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1640. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1641. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1642. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1643. ];
  1644. //010505
  1645. U.MD.D.I.x010505StudentDeskIcon = [
  1646. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1647. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1648. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1649. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1650. ];
  1651. //SCNUET
  1652. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1653. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1654. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1655. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1656. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1657. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1658. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1659. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1660. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1661. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1662. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1663. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1664. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1665. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1666. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1667. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1668. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1669. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1670. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1671. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1672. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1673. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1674. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1675. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1676. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1677. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1678. ];
  1679. //SCNUET
  1680. U.MD.D.I.SCNUETAdminDeskIcon = [
  1681. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1682. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1683. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1684. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1685. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1686. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1687. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1688. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1689. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1690. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1691. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1692. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1693. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1694. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1695. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1696. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1697. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1698. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1699. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1700. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1701. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1702. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1703. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1704. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1705. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1706. ];
  1707. //SCNUET
  1708. U.MD.D.I.SCNUETStudentDeskIcon = [
  1709. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1710. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1711. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1712. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1713. ];
  1714. //x020201
  1715. U.MD.D.I.x020201TeacherDeskIcon = [
  1716. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1717. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1718. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1719. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1720. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1721. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1722. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1723. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1724. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1725. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1726. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1727. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1728. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1729. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1730. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1731. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1732. ];
  1733. //x020201
  1734. U.MD.D.I.x020201AdminDeskIcon = [
  1735. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1736. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1737. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1738. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1739. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1740. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1741. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1742. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1743. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1744. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1745. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1746. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1747. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1748. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1749. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1750. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1751. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1752. ];
  1753. //020201
  1754. U.MD.D.I.x020201StudentDeskIcon = [
  1755. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1756. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1757. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1758. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1759. ];
  1760. //010611
  1761. U.MD.D.I.x010611TeacherDeskIcon = [
  1762. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1763. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1764. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1765. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1766. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1767. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1768. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1769. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1770. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1771. ];
  1772. //010611
  1773. U.MD.D.I.x010611StudentDeskIcon = [
  1774. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1775. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1776. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1777. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1778. ];
  1779. //010612
  1780. U.MD.D.I.x010612TeacherDeskIcon = [
  1781. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1782. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1783. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1784. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1785. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1786. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1787. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1788. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1789. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1790. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1791. ];
  1792. //010612
  1793. U.MD.D.I.x010612StudentDeskIcon = [
  1794. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1795. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1796. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1797. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1798. ];
  1799. //tianyuan
  1800. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1801. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1802. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1803. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1804. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1805. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1806. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1807. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1808. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1809. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1810. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1811. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1812. ];
  1813. //010611
  1814. U.MD.D.I.tianyuanStudentDeskIcon = [
  1815. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1816. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1817. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1818. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1819. ];
  1820. //320101
  1821. U.MD.D.I.x320101TeacherDeskIcon = [
  1822. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1823. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1824. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1825. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1826. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1827. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1828. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1829. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1830. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1831. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1832. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1833. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1834. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1835. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1836. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1837. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1838. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1839. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1840. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1841. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1842. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1843. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1844. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1845. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1846. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1847. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1848. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1849. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1850. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1851. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1852. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1853. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1854. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1855. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1856. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1857. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1858. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1859. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1860. ];
  1861. //320101
  1862. U.MD.D.I.x320101StudentDeskIcon = [
  1863. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1864. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1865. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1866. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1867. ];
  1868. //szsy
  1869. U.MD.D.I.szsyTeacherDeskIcon = [
  1870. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1871. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1872. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1873. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1874. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1875. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1876. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1877. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1878. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1879. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1880. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1881. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1882. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1883. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1884. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1885. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1886. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1887. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1888. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1889. ];
  1890. //szsy
  1891. U.MD.D.I.szsyStudentDeskIcon = [
  1892. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1893. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1894. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1895. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1896. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1897. ];
  1898. //010404
  1899. U.MD.D.I.x010404TeacherDeskIcon = [
  1900. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1901. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1902. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1903. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1904. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1905. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1906. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1907. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1908. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1909. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1910. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1911. ];
  1912. //010404
  1913. U.MD.D.I.x010404StudentDeskIcon = [
  1914. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1915. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1916. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1917. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1918. ];
  1919. //#region 桌面初始化a
  1920. /**
  1921. * 初始化桌面的起始函数
  1922. *
  1923. */
  1924. U.MD.D.I.init = function () {
  1925. if ($("#U_MD_D_K")[0]) {
  1926. //初始化桌面图标
  1927. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1928. // var clickUrl = ':12588/requestIp.php';
  1929. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1930. // U.MD.D.I.Ip = data;
  1931. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1932. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1933. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1934. // })
  1935. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1936. // })
  1937. }
  1938. }
  1939. /**
  1940. * 模式切换
  1941. *
  1942. */
  1943. U.MD.D.I.ModeCheck = function (type) {
  1944. if (US.Config.type == type) {
  1945. return
  1946. }
  1947. US.Config.type = type
  1948. $('.U_PBL_Check .active')[0].className = ''
  1949. if (type == 1) {
  1950. $('.U_PBL_Check div')[0].className = 'active'
  1951. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1952. } else {
  1953. $('.U_PBL_Check div')[1].className = 'active'
  1954. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1955. }
  1956. //初始化桌面图标
  1957. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1958. if (type == 2) {
  1959. U.MD.D.I.openApplication("project")
  1960. }
  1961. }
  1962. /**
  1963. * 隐藏任务栏
  1964. *
  1965. * @param {element} 桌面元素
  1966. */
  1967. U.MD.D.I.hiddenTaskbar = function (el) {
  1968. //任务栏位置变小
  1969. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1970. //桌面的位置变大
  1971. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1972. }
  1973. /**
  1974. * 隐藏任务栏
  1975. *
  1976. * @param {element} 桌面元素
  1977. */
  1978. U.MD.D.I.hiddenTaskbarout = function (el) {
  1979. //任务栏位置变小
  1980. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1981. //任务栏位置变化
  1982. U.selectEl(el).css({ "bottom": "-60px" });
  1983. //桌面的位置变大
  1984. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1985. }
  1986. }
  1987. /**
  1988. * 初始化打印桌面图标
  1989. *
  1990. * @param {element} 桌面元素
  1991. */
  1992. U.MD.D.I.initDesktopIcons = function (el, type) {
  1993. var i, //用于循环
  1994. _content, //桌面图标元素
  1995. _iconcontent, //桌面图标元素
  1996. _frag = $$("frag"), //定义一个碎片元素
  1997. _type = US.userInfo.type,
  1998. _org = US.userInfo.org,
  1999. _oid = US.userInfo.organizeid,
  2000. _role = US.userInfo.role,
  2001. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  2002. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  2003. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  2004. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  2005. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  2006. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  2007. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  2008. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  2009. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  2010. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  2011. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  2012. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  2013. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  2014. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  2015. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  2016. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  2017. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  2018. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  2019. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  2020. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  2021. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  2022. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  2023. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  2024. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  2025. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  2026. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  2027. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  2028. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  2029. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  2030. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  2031. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  2032. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  2033. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  2034. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  2035. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  2036. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  2037. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  2038. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  2039. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  2040. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  2041. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  2042. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  2043. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  2044. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  2045. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  2046. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  2047. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  2048. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  2049. _ricohTeacherDeskIconInfo = U.MD.D.I.ricohteacherDeskIcon, //hk
  2050. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  2051. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  2052. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  2053. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  2054. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  2055. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  2056. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  2057. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  2058. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  2059. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  2060. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  2061. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  2062. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  2063. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  2064. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  2065. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  2066. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  2067. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  2068. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  2069. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  2070. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  2071. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  2072. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  2073. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  2074. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  2075. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  2076. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  2077. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  2078. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2079. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2080. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2081. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2082. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2083. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2084. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2085. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2086. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2087. _x010612StudentDeskIconInfo = U.MD.D.I.x010612StudentDeskIcon, //010611
  2088. _x010612TeacherDeskIconInfo = U.MD.D.I.x010612TeacherDeskIcon, //010611
  2089. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2090. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2091. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2092. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2093. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2094. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2095. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2096. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2097. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2098. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2099. _x010505StudentDeskIconInfo = U.MD.D.I.x010505StudentDeskIcon, //010505
  2100. _x010505TeacherDeskIconInfo = U.MD.D.I.x010505TeacherDeskIcon, //010505
  2101. _x010404StudentDeskIconInfo = U.MD.D.I.x010404StudentDeskIcon, //010404
  2102. _x010404TeacherDeskIconInfo = U.MD.D.I.x010404TeacherDeskIcon, //010404
  2103. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2104. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2105. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2106. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2107. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2108. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2109. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2110. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2111. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2112. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2113. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2114. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2115. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2116. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2117. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2118. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2119. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2120. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2121. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2122. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  2123. 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'];
  2124. 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'];
  2125. //清楚桌面图标
  2126. el.innerHTML = "";
  2127. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2128. _teacherDesktopIconInfo.push(
  2129. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2130. { "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)" } },
  2131. )
  2132. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2133. }
  2134. 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') {
  2135. _teacherDesktopIconInfo.push(
  2136. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2137. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2138. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2139. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2140. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2141. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2142. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2143. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2144. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2145. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2146. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2147. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2148. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2149. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2150. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2151. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2152. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2153. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2154. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2155. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2156. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2157. )
  2158. }
  2159. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2160. _teacherDesktopIconInfo.push(
  2161. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2162. )
  2163. }
  2164. if (_oid == 'b650d914-f039-11ef-b508-005056924926') {//松坪学校
  2165. _nsfxTeacherDeskIconInfo.push(
  2166. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2167. )
  2168. }
  2169. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2170. // _teacherDesktopIconInfo.push(
  2171. // )
  2172. // }
  2173. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2174. _teacherDesktopIconInfo.push(
  2175. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2176. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2177. )
  2178. }
  2179. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2180. _teacherDesktopIconInfo.push(
  2181. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2182. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2183. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2184. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2185. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2186. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2187. )
  2188. _studentDesktopIconInfo.push(
  2189. )
  2190. }
  2191. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2192. _teacherDesktopIconInfo.push(
  2193. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2194. )
  2195. _studentDesktopIconInfo.push(
  2196. )
  2197. }
  2198. //010606 组织
  2199. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2200. _teacherDesktopIconInfo.push(
  2201. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2202. )
  2203. _studentDesktopIconInfo.push(
  2204. )
  2205. }
  2206. //麒麟二中 和 民新小学
  2207. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2208. _teacherDesktopIconInfo.push(
  2209. )
  2210. }
  2211. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2212. _teacherDesktopIconInfo.push(
  2213. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2214. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2215. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2216. )
  2217. }
  2218. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2219. _hkTeacherDeskIconInfo.push(
  2220. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2221. )
  2222. }
  2223. //北师大附中(010601)
  2224. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2225. // _teacherDesktopIconInfo.push(
  2226. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2227. // )
  2228. // _studentDesktopIconInfo.push(
  2229. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2230. // )
  2231. // }
  2232. //樂善堂余近卿中學
  2233. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2234. _teacherDesktopIconInfo.push(
  2235. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2236. )
  2237. }
  2238. // Education Artificial Intelligence
  2239. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2240. _teacherDesktopIconInfo.push(
  2241. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2242. )
  2243. }
  2244. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2245. _teacherDesktopIconInfo.push(
  2246. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2247. )
  2248. }
  2249. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2250. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2251. _teacherDesktopIconInfo.push(
  2252. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2253. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2254. )
  2255. }
  2256. //麒麟二中
  2257. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2258. _studentDesktopIconInfo.push(
  2259. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2260. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2261. )
  2262. }
  2263. //万科双语
  2264. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2265. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2266. if (el.Name == '项目管理') {
  2267. el.Name = 'PBL项目'
  2268. }
  2269. return el
  2270. })
  2271. _studentDesktopIconInfo3.push(
  2272. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2273. )
  2274. }
  2275. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2276. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2277. return el.Name != '魔盒识字' && el.Name != '24点'
  2278. })
  2279. }
  2280. 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) {
  2281. _studentDesktopIconInfo.push(
  2282. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2283. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2284. )
  2285. }
  2286. //循环创建桌面图标
  2287. if (type == 1) {
  2288. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2289. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2290. _content = $$("div", {
  2291. className: "U_MD_D_KO",
  2292. "onmousedown": U.UF.C.closure(function (obj) {
  2293. //防止拖动图标即打开了桌面应用
  2294. U.MD.D.click(this, obj);
  2295. }, [_studentDesktopIconInfo[i]]),
  2296. "onclick": U.UF.C.closure(function (obj) {
  2297. //防止拖动图标即打开了桌面应用
  2298. U.MD.D.click(this, obj);
  2299. }, [_studentDesktopIconInfo[i]])
  2300. }, _frag); //
  2301. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2302. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2303. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2304. }
  2305. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2306. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2307. _content = $$("div", {
  2308. className: "U_MD_D_KO",
  2309. "onmousedown": U.UF.C.closure(function (obj) {
  2310. //防止拖动图标即打开了桌面应用
  2311. U.MD.D.click(this, obj);
  2312. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2313. "onclick": U.UF.C.closure(function (obj) {
  2314. //防止拖动图标即打开了桌面应用
  2315. U.MD.D.click(this, obj);
  2316. }, [_hkZJLSStudentDeskIconInfo[i]])
  2317. }, _frag); //
  2318. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2319. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2320. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2321. } //
  2322. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2323. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2324. _content = $$("div", {
  2325. className: "U_MD_D_KO",
  2326. "onmousedown": U.UF.C.closure(function (obj) {
  2327. //防止拖动图标即打开了桌面应用
  2328. U.MD.D.click(this, obj);
  2329. }, [_ytyStudentDeskIconInfo[i]]),
  2330. "onclick": U.UF.C.closure(function (obj) {
  2331. //防止拖动图标即打开了桌面应用
  2332. U.MD.D.click(this, obj);
  2333. }, [_ytyStudentDeskIconInfo[i]])
  2334. }, _frag); //
  2335. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2336. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2337. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2338. } //
  2339. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2340. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2341. _content = $$("div", {
  2342. className: "U_MD_D_KO",
  2343. "onmousedown": U.UF.C.closure(function (obj) {
  2344. //防止拖动图标即打开了桌面应用
  2345. U.MD.D.click(this, obj);
  2346. }, [_jccssylStudentDeskIconInfo[i]]),
  2347. "onclick": U.UF.C.closure(function (obj) {
  2348. //防止拖动图标即打开了桌面应用
  2349. U.MD.D.click(this, obj);
  2350. }, [_jccssylStudentDeskIconInfo[i]])
  2351. }, _frag); //
  2352. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2353. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2354. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2355. }
  2356. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2357. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2358. _content = $$("div", {
  2359. className: "U_MD_D_KO",
  2360. "onmousedown": U.UF.C.closure(function (obj) {
  2361. //防止拖动图标即打开了桌面应用
  2362. U.MD.D.click(this, obj);
  2363. }, [_scnuaiStudentDeskIconInfo[i]]),
  2364. "onclick": U.UF.C.closure(function (obj) {
  2365. //防止拖动图标即打开了桌面应用
  2366. U.MD.D.click(this, obj);
  2367. }, [_scnuaiStudentDeskIconInfo[i]])
  2368. }, _frag); //
  2369. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2370. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2371. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2372. }
  2373. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2374. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2375. _content = $$("div", {
  2376. className: "U_MD_D_KO",
  2377. "onmousedown": U.UF.C.closure(function (obj) {
  2378. //防止拖动图标即打开了桌面应用
  2379. U.MD.D.click(this, obj);
  2380. }, [_caleStudentDeskIconInfo[i]]),
  2381. "onclick": U.UF.C.closure(function (obj) {
  2382. //防止拖动图标即打开了桌面应用
  2383. U.MD.D.click(this, obj);
  2384. }, [_caleStudentDeskIconInfo[i]])
  2385. }, _frag); //
  2386. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2387. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2388. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2389. }
  2390. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2391. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2392. _content = $$("div", {
  2393. className: "U_MD_D_KO",
  2394. "onmousedown": U.UF.C.closure(function (obj) {
  2395. //防止拖动图标即打开了桌面应用
  2396. U.MD.D.click(this, obj);
  2397. }, [_thuioeStudentDeskIconInfo[i]]),
  2398. "onclick": U.UF.C.closure(function (obj) {
  2399. //防止拖动图标即打开了桌面应用
  2400. U.MD.D.click(this, obj);
  2401. }, [_thuioeStudentDeskIconInfo[i]])
  2402. }, _frag); //
  2403. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2404. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2405. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2406. }
  2407. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2408. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2409. _content = $$("div", {
  2410. className: "U_MD_D_KO",
  2411. "onmousedown": U.UF.C.closure(function (obj) {
  2412. //防止拖动图标即打开了桌面应用
  2413. U.MD.D.click(this, obj);
  2414. }, [_tpcStudentDeskIconInfo[i]]),
  2415. "onclick": U.UF.C.closure(function (obj) {
  2416. //防止拖动图标即打开了桌面应用
  2417. U.MD.D.click(this, obj);
  2418. }, [_tpcStudentDeskIconInfo[i]])
  2419. }, _frag); //
  2420. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2421. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2422. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2423. } //
  2424. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2425. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2426. _content = $$("div", {
  2427. className: "U_MD_D_KO",
  2428. "onmousedown": U.UF.C.closure(function (obj) {
  2429. //防止拖动图标即打开了桌面应用
  2430. U.MD.D.click(this, obj);
  2431. }, [_chjyjStudentDeskIconInfo[i]]),
  2432. "onclick": U.UF.C.closure(function (obj) {
  2433. //防止拖动图标即打开了桌面应用
  2434. U.MD.D.click(this, obj);
  2435. }, [_chjyjStudentDeskIconInfo[i]])
  2436. }, _frag); //
  2437. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2438. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2439. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2440. }
  2441. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2442. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2443. _content = $$("div", {
  2444. className: "U_MD_D_KO",
  2445. "onmousedown": U.UF.C.closure(function (obj) {
  2446. //防止拖动图标即打开了桌面应用
  2447. U.MD.D.click(this, obj);
  2448. }, [_szjkyStudentDeskIconInfo[i]]),
  2449. "onclick": U.UF.C.closure(function (obj) {
  2450. //防止拖动图标即打开了桌面应用
  2451. U.MD.D.click(this, obj);
  2452. }, [_szjkyStudentDeskIconInfo[i]])
  2453. }, _frag); //
  2454. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2455. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2456. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2457. }
  2458. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2459. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2460. _content = $$("div", {
  2461. className: "U_MD_D_KO",
  2462. "onmousedown": U.UF.C.closure(function (obj) {
  2463. //防止拖动图标即打开了桌面应用
  2464. U.MD.D.click(this, obj);
  2465. }, [_x020201StudentDeskIconInfo[i]]),
  2466. "onclick": U.UF.C.closure(function (obj) {
  2467. //防止拖动图标即打开了桌面应用
  2468. U.MD.D.click(this, obj);
  2469. }, [_x020201StudentDeskIconInfo[i]])
  2470. }, _frag); //
  2471. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2472. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2473. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2474. }
  2475. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2476. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2477. _content = $$("div", {
  2478. className: "U_MD_D_KO",
  2479. "onmousedown": U.UF.C.closure(function (obj) {
  2480. //防止拖动图标即打开了桌面应用
  2481. U.MD.D.click(this, obj);
  2482. }, [_SCNUETStudentDeskIconInfo[i]]),
  2483. "onclick": U.UF.C.closure(function (obj) {
  2484. //防止拖动图标即打开了桌面应用
  2485. U.MD.D.click(this, obj);
  2486. }, [_SCNUETStudentDeskIconInfo[i]])
  2487. }, _frag); //
  2488. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2489. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2490. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2491. }
  2492. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2493. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2494. _content = $$("div", {
  2495. className: "U_MD_D_KO",
  2496. "onmousedown": U.UF.C.closure(function (obj) {
  2497. //防止拖动图标即打开了桌面应用
  2498. U.MD.D.click(this, obj);
  2499. }, [_dseiStudentDeskIconInfo[i]]),
  2500. "onclick": U.UF.C.closure(function (obj) {
  2501. //防止拖动图标即打开了桌面应用
  2502. U.MD.D.click(this, obj);
  2503. }, [_dseiStudentDeskIconInfo[i]])
  2504. }, _frag); //
  2505. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2506. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2507. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2508. }
  2509. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2510. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2511. _content = $$("div", {
  2512. className: "U_MD_D_KO",
  2513. "onmousedown": U.UF.C.closure(function (obj) {
  2514. //防止拖动图标即打开了桌面应用
  2515. U.MD.D.click(this, obj);
  2516. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2517. "onclick": U.UF.C.closure(function (obj) {
  2518. //防止拖动图标即打开了桌面应用
  2519. U.MD.D.click(this, obj);
  2520. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2521. }, _frag); //
  2522. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2523. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2524. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2525. }
  2526. } else if (_type == 2 && (_org == "7cc601a0-fafc-4116-a805-0adbacf7a38d")) {
  2527. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2528. _content = $$("div", {
  2529. className: "U_MD_D_KO",
  2530. "onmousedown": U.UF.C.closure(function (obj) {
  2531. //防止拖动图标即打开了桌面应用
  2532. U.MD.D.click(this, obj);
  2533. }, [_nsfxStudentDeskIconInfo[i]]),
  2534. "onclick": U.UF.C.closure(function (obj) {
  2535. //防止拖动图标即打开了桌面应用
  2536. U.MD.D.click(this, obj);
  2537. }, [_nsfxStudentDeskIconInfo[i]])
  2538. }, _frag); //
  2539. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2540. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2541. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2542. }
  2543. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2544. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2545. _content = $$("div", {
  2546. className: "U_MD_D_KO",
  2547. "onmousedown": U.UF.C.closure(function (obj) {
  2548. //防止拖动图标即打开了桌面应用
  2549. U.MD.D.click(this, obj);
  2550. }, [_stiaStudentDeskIconInfo[i]]),
  2551. "onclick": U.UF.C.closure(function (obj) {
  2552. //防止拖动图标即打开了桌面应用
  2553. U.MD.D.click(this, obj);
  2554. }, [_stiaStudentDeskIconInfo[i]])
  2555. }, _frag); //
  2556. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2557. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2558. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2559. }
  2560. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2561. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2562. _content = $$("div", {
  2563. className: "U_MD_D_KO",
  2564. "onmousedown": U.UF.C.closure(function (obj) {
  2565. //防止拖动图标即打开了桌面应用
  2566. U.MD.D.click(this, obj);
  2567. }, [_szdjgStudentDeskIconInfo[i]]),
  2568. "onclick": U.UF.C.closure(function (obj) {
  2569. //防止拖动图标即打开了桌面应用
  2570. U.MD.D.click(this, obj);
  2571. }, [_szdjgStudentDeskIconInfo[i]])
  2572. }, _frag); //
  2573. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2574. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2575. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2576. }
  2577. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2578. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2579. _content = $$("div", {
  2580. className: "U_MD_D_KO",
  2581. "onmousedown": U.UF.C.closure(function (obj) {
  2582. //防止拖动图标即打开了桌面应用
  2583. U.MD.D.click(this, obj);
  2584. }, [_x010607StudentDeskIconInfo[i]]),
  2585. "onclick": U.UF.C.closure(function (obj) {
  2586. //防止拖动图标即打开了桌面应用
  2587. U.MD.D.click(this, obj);
  2588. }, [_x010607StudentDeskIconInfo[i]])
  2589. }, _frag); //
  2590. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2591. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2592. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2593. }
  2594. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2595. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2596. _content = $$("div", {
  2597. className: "U_MD_D_KO",
  2598. "onmousedown": U.UF.C.closure(function (obj) {
  2599. //防止拖动图标即打开了桌面应用
  2600. U.MD.D.click(this, obj);
  2601. }, [_xhlyStudentDeskIconInfo[i]]),
  2602. "onclick": U.UF.C.closure(function (obj) {
  2603. //防止拖动图标即打开了桌面应用
  2604. U.MD.D.click(this, obj);
  2605. }, [_xhlyStudentDeskIconInfo[i]])
  2606. }, _frag); //
  2607. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2608. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2609. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2610. }
  2611. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2612. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2613. _content = $$("div", {
  2614. className: "U_MD_D_KO",
  2615. "onmousedown": U.UF.C.closure(function (obj) {
  2616. //防止拖动图标即打开了桌面应用
  2617. U.MD.D.click(this, obj);
  2618. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2619. "onclick": U.UF.C.closure(function (obj) {
  2620. //防止拖动图标即打开了桌面应用
  2621. U.MD.D.click(this, obj);
  2622. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2623. }, _frag); //
  2624. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2625. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2626. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2627. }
  2628. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2629. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2630. _content = $$("div", {
  2631. className: "U_MD_D_KO",
  2632. "onmousedown": U.UF.C.closure(function (obj) {
  2633. //防止拖动图标即打开了桌面应用
  2634. U.MD.D.click(this, obj);
  2635. }, [_x010503StudentDeskIconInfo[i]]),
  2636. "onclick": U.UF.C.closure(function (obj) {
  2637. //防止拖动图标即打开了桌面应用
  2638. U.MD.D.click(this, obj);
  2639. }, [_x010503StudentDeskIconInfo[i]])
  2640. }, _frag); //
  2641. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2642. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2643. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2644. }
  2645. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2646. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2647. _content = $$("div", {
  2648. className: "U_MD_D_KO",
  2649. "onmousedown": U.UF.C.closure(function (obj) {
  2650. //防止拖动图标即打开了桌面应用
  2651. U.MD.D.click(this, obj);
  2652. }, [_x010504StudentDeskIconInfo[i]]),
  2653. "onclick": U.UF.C.closure(function (obj) {
  2654. //防止拖动图标即打开了桌面应用
  2655. U.MD.D.click(this, obj);
  2656. }, [_x010504StudentDeskIconInfo[i]])
  2657. }, _frag); //
  2658. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2659. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2660. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2661. }
  2662. } else if (_type == 2 && (_oid == "8406b214-085f-11f0-b508-005056924926")) {
  2663. for (i = 0; i < _x010505StudentDeskIconInfo.length; i++) {
  2664. _content = $$("div", {
  2665. className: "U_MD_D_KO",
  2666. "onmousedown": U.UF.C.closure(function (obj) {
  2667. //防止拖动图标即打开了桌面应用
  2668. U.MD.D.click(this, obj);
  2669. }, [_x010505StudentDeskIconInfo[i]]),
  2670. "onclick": U.UF.C.closure(function (obj) {
  2671. //防止拖动图标即打开了桌面应用
  2672. U.MD.D.click(this, obj);
  2673. }, [_x010505StudentDeskIconInfo[i]])
  2674. }, _frag); //
  2675. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2676. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505StudentDeskIconInfo[i].style }, _iconcontent);
  2677. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505StudentDeskIconInfo[i].Name }, _iconcontent);
  2678. }
  2679. } else if (_type == 2 && (_oid == "bc239322-ffb2-11ef-b508-005056924926")) {
  2680. for (i = 0; i < _x010404StudentDeskIconInfo.length; i++) {
  2681. _content = $$("div", {
  2682. className: "U_MD_D_KO",
  2683. "onmousedown": U.UF.C.closure(function (obj) {
  2684. //防止拖动图标即打开了桌面应用
  2685. U.MD.D.click(this, obj);
  2686. }, [_x010404StudentDeskIconInfo[i]]),
  2687. "onclick": U.UF.C.closure(function (obj) {
  2688. //防止拖动图标即打开了桌面应用
  2689. U.MD.D.click(this, obj);
  2690. }, [_x010404StudentDeskIconInfo[i]])
  2691. }, _frag); //
  2692. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2693. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404StudentDeskIconInfo[i].style }, _iconcontent);
  2694. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404StudentDeskIconInfo[i].Name }, _iconcontent);
  2695. }
  2696. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2697. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2698. _content = $$("div", {
  2699. className: "U_MD_D_KO",
  2700. "onmousedown": U.UF.C.closure(function (obj) {
  2701. //防止拖动图标即打开了桌面应用
  2702. U.MD.D.click(this, obj);
  2703. }, [_x010204StudentDeskIconInfo[i]]),
  2704. "onclick": U.UF.C.closure(function (obj) {
  2705. //防止拖动图标即打开了桌面应用
  2706. U.MD.D.click(this, obj);
  2707. }, [_x010204StudentDeskIconInfo[i]])
  2708. }, _frag); //
  2709. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2710. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2711. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2712. }
  2713. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2714. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2715. _content = $$("div", {
  2716. className: "U_MD_D_KO",
  2717. "onmousedown": U.UF.C.closure(function (obj) {
  2718. //防止拖动图标即打开了桌面应用
  2719. U.MD.D.click(this, obj);
  2720. }, [_x320101StudentDeskIconInfo[i]]),
  2721. "onclick": U.UF.C.closure(function (obj) {
  2722. //防止拖动图标即打开了桌面应用
  2723. U.MD.D.click(this, obj);
  2724. }, [_x320101StudentDeskIconInfo[i]])
  2725. }, _frag); //
  2726. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2727. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2728. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2729. }
  2730. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2731. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2732. _content = $$("div", {
  2733. className: "U_MD_D_KO",
  2734. "onmousedown": U.UF.C.closure(function (obj) {
  2735. //防止拖动图标即打开了桌面应用
  2736. U.MD.D.click(this, obj);
  2737. }, [_trailStudentDeskIconInfo[i]]),
  2738. "onclick": U.UF.C.closure(function (obj) {
  2739. //防止拖动图标即打开了桌面应用
  2740. U.MD.D.click(this, obj);
  2741. }, [_trailStudentDeskIconInfo[i]])
  2742. }, _frag); //
  2743. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2744. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2745. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2746. }
  2747. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2748. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2749. _content = $$("div", {
  2750. className: "U_MD_D_KO",
  2751. "onmousedown": U.UF.C.closure(function (obj) {
  2752. //防止拖动图标即打开了桌面应用
  2753. U.MD.D.click(this, obj);
  2754. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2755. "onclick": U.UF.C.closure(function (obj) {
  2756. //防止拖动图标即打开了桌面应用
  2757. U.MD.D.click(this, obj);
  2758. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2759. }, _frag); //
  2760. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2761. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2762. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2763. }
  2764. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2765. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2766. _content = $$("div", {
  2767. className: "U_MD_D_KO",
  2768. "onmousedown": U.UF.C.closure(function (obj) {
  2769. //防止拖动图标即打开了桌面应用
  2770. U.MD.D.click(this, obj);
  2771. }, [_szsyStudentDeskIconInfo[i]]),
  2772. "onclick": U.UF.C.closure(function (obj) {
  2773. //防止拖动图标即打开了桌面应用
  2774. U.MD.D.click(this, obj);
  2775. }, [_szsyStudentDeskIconInfo[i]])
  2776. }, _frag); //
  2777. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2778. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2779. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2780. }
  2781. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2782. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2783. _content = $$("div", {
  2784. className: "U_MD_D_KO",
  2785. "onmousedown": U.UF.C.closure(function (obj) {
  2786. //防止拖动图标即打开了桌面应用
  2787. U.MD.D.click(this, obj);
  2788. }, [_x010608StudentDeskIconInfo[i]]),
  2789. "onclick": U.UF.C.closure(function (obj) {
  2790. //防止拖动图标即打开了桌面应用
  2791. U.MD.D.click(this, obj);
  2792. }, [_x010608StudentDeskIconInfo[i]])
  2793. }, _frag); //
  2794. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2795. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2796. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2797. }
  2798. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2799. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2800. _content = $$("div", {
  2801. className: "U_MD_D_KO",
  2802. "onmousedown": U.UF.C.closure(function (obj) {
  2803. //防止拖动图标即打开了桌面应用
  2804. U.MD.D.click(this, obj);
  2805. }, [_x010611StudentDeskIconInfo[i]]),
  2806. "onclick": U.UF.C.closure(function (obj) {
  2807. //防止拖动图标即打开了桌面应用
  2808. U.MD.D.click(this, obj);
  2809. }, [_x010611StudentDeskIconInfo[i]])
  2810. }, _frag); //
  2811. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2812. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2813. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2814. }
  2815. } else if (_type == 2 && (_oid == "86fa8cd7-00c2-11f0-b508-005056924926")) {
  2816. for (i = 0; i < _x010612StudentDeskIconInfo.length; i++) {
  2817. _content = $$("div", {
  2818. className: "U_MD_D_KO",
  2819. "onmousedown": U.UF.C.closure(function (obj) {
  2820. //防止拖动图标即打开了桌面应用
  2821. U.MD.D.click(this, obj);
  2822. }, [_x010612StudentDeskIconInfo[i]]),
  2823. "onclick": U.UF.C.closure(function (obj) {
  2824. //防止拖动图标即打开了桌面应用
  2825. U.MD.D.click(this, obj);
  2826. }, [_x010612StudentDeskIconInfo[i]])
  2827. }, _frag); //
  2828. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2829. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612StudentDeskIconInfo[i].style }, _iconcontent);
  2830. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612StudentDeskIconInfo[i].Name }, _iconcontent);
  2831. }
  2832. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2833. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2834. _content = $$("div", {
  2835. className: "U_MD_D_KO",
  2836. "onmousedown": U.UF.C.closure(function (obj) {
  2837. //防止拖动图标即打开了桌面应用
  2838. U.MD.D.click(this, obj);
  2839. }, [_tianyuantudentDeskIconInfo[i]]),
  2840. "onclick": U.UF.C.closure(function (obj) {
  2841. //防止拖动图标即打开了桌面应用
  2842. U.MD.D.click(this, obj);
  2843. }, [_tianyuantudentDeskIconInfo[i]])
  2844. }, _frag); //
  2845. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2846. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2847. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2848. }
  2849. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2850. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2851. _content = $$("div", {
  2852. className: "U_MD_D_KO",
  2853. "onmousedown": U.UF.C.closure(function (obj) {
  2854. //防止拖动图标即打开了桌面应用
  2855. U.MD.D.click(this, obj);
  2856. }, [_siesStudentDeskIconInfo[i]]),
  2857. "onclick": U.UF.C.closure(function (obj) {
  2858. //防止拖动图标即打开了桌面应用
  2859. U.MD.D.click(this, obj);
  2860. }, [_siesStudentDeskIconInfo[i]])
  2861. }, _frag); //
  2862. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2863. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2864. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2865. }
  2866. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2867. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2868. _content = $$("div", {
  2869. className: "U_MD_D_KO",
  2870. "onmousedown": U.UF.C.closure(function (obj) {
  2871. //防止拖动图标即打开了桌面应用
  2872. U.MD.D.click(this, obj);
  2873. }, [_guzmsStudentDeskIconInfo[i]]),
  2874. "onclick": U.UF.C.closure(function (obj) {
  2875. //防止拖动图标即打开了桌面应用
  2876. U.MD.D.click(this, obj);
  2877. }, [_guzmsStudentDeskIconInfo[i]])
  2878. }, _frag); //
  2879. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2880. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2881. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2882. }
  2883. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2884. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2885. _content = $$("div", {
  2886. className: "U_MD_D_KO",
  2887. "onmousedown": U.UF.C.closure(function (obj) {
  2888. //防止拖动图标即打开了桌面应用
  2889. U.MD.D.click(this, obj);
  2890. }, [_hkStudentDeskIconInfo[i]]),
  2891. "onclick": U.UF.C.closure(function (obj) {
  2892. //防止拖动图标即打开了桌面应用
  2893. U.MD.D.click(this, obj);
  2894. }, [_hkStudentDeskIconInfo[i]])
  2895. }, _frag); //
  2896. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2897. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2898. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2899. }
  2900. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2901. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2902. _content = $$("div", {
  2903. className: "U_MD_D_KO",
  2904. "onmousedown": U.UF.C.closure(function (obj) {
  2905. //防止拖动图标即打开了桌面应用
  2906. U.MD.D.click(this, obj);
  2907. }, [_hkaceStudentDeskIconInfo[i]]),
  2908. "onclick": U.UF.C.closure(function (obj) {
  2909. //防止拖动图标即打开了桌面应用
  2910. U.MD.D.click(this, obj);
  2911. }, [_hkaceStudentDeskIconInfo[i]])
  2912. }, _frag); //
  2913. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2914. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2915. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2916. }
  2917. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2918. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2919. _content = $$("div", {
  2920. className: "U_MD_D_KO",
  2921. "onmousedown": U.UF.C.closure(function (obj) {
  2922. //防止拖动图标即打开了桌面应用
  2923. U.MD.D.click(this, obj);
  2924. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2925. "onclick": U.UF.C.closure(function (obj) {
  2926. //防止拖动图标即打开了桌面应用
  2927. U.MD.D.click(this, obj);
  2928. }, [_BSDNSstudentDesktopIconInfo[i]])
  2929. }, _frag); //
  2930. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2931. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2932. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2933. }
  2934. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2935. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2936. _content = $$("div", {
  2937. className: "U_MD_D_KO",
  2938. "onmousedown": U.UF.C.closure(function (obj) {
  2939. //防止拖动图标即打开了桌面应用
  2940. U.MD.D.click(this, obj);
  2941. }, [_cocobizStudentDeskIconInfo[i]]),
  2942. "onclick": U.UF.C.closure(function (obj) {
  2943. //防止拖动图标即打开了桌面应用
  2944. U.MD.D.click(this, obj);
  2945. }, [_cocobizStudentDeskIconInfo[i]])
  2946. }, _frag); //
  2947. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2948. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2949. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2950. }
  2951. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2952. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2953. _content = $$("div", {
  2954. className: "U_MD_D_KO",
  2955. "onmousedown": U.UF.C.closure(function (obj) {
  2956. //防止拖动图标即打开了桌面应用
  2957. U.MD.D.click(this, obj);
  2958. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2959. "onclick": U.UF.C.closure(function (obj) {
  2960. //防止拖动图标即打开了桌面应用
  2961. U.MD.D.click(this, obj);
  2962. }, [_xxzjkyStudentDeskIconInfo[i]])
  2963. }, _frag); //
  2964. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2965. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2966. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2967. }
  2968. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2969. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2970. _content = $$("div", {
  2971. className: "U_MD_D_KO",
  2972. "onmousedown": U.UF.C.closure(function (obj) {
  2973. //防止拖动图标即打开了桌面应用
  2974. U.MD.D.click(this, obj);
  2975. }, [_studentDesktopIconInfo[i]]),
  2976. "onclick": U.UF.C.closure(function (obj) {
  2977. //防止拖动图标即打开了桌面应用
  2978. U.MD.D.click(this, obj);
  2979. }, [_studentDesktopIconInfo[i]])
  2980. }, _frag); //
  2981. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2982. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2983. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2984. }
  2985. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2986. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2987. _content = $$("div", {
  2988. className: "U_MD_D_KO",
  2989. "onmousedown": U.UF.C.closure(function (obj) {
  2990. //防止拖动图标即打开了桌面应用
  2991. U.MD.D.click(this, obj);
  2992. }, [_tcStudentDeskIconInfo[i]]),
  2993. "onclick": U.UF.C.closure(function (obj) {
  2994. //防止拖动图标即打开了桌面应用
  2995. U.MD.D.click(this, obj);
  2996. }, [_tcStudentDeskIconInfo[i]])
  2997. }, _frag); //
  2998. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2999. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  3000. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  3001. }
  3002. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  3003. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  3004. _content = $$("div", {
  3005. className: "U_MD_D_KO",
  3006. "onmousedown": U.UF.C.closure(function (obj) {
  3007. //防止拖动图标即打开了桌面应用
  3008. U.MD.D.click(this, obj);
  3009. }, [_szscStudentDeskIconInfo[i]]),
  3010. "onclick": U.UF.C.closure(function (obj) {
  3011. //防止拖动图标即打开了桌面应用
  3012. U.MD.D.click(this, obj);
  3013. }, [_szscStudentDeskIconInfo[i]])
  3014. }, _frag); //
  3015. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3016. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  3017. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  3018. }
  3019. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  3020. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  3021. _content = $$("div", {
  3022. className: "U_MD_D_KO",
  3023. "onmousedown": U.UF.C.closure(function (obj) {
  3024. //防止拖动图标即打开了桌面应用
  3025. U.MD.D.click(this, obj);
  3026. }, [_studentDesktopIconInfo3[i]]),
  3027. "onclick": U.UF.C.closure(function (obj) {
  3028. //防止拖动图标即打开了桌面应用
  3029. U.MD.D.click(this, obj);
  3030. }, [_studentDesktopIconInfo3[i]])
  3031. }, _frag); //
  3032. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3033. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  3034. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  3035. }
  3036. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  3037. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  3038. _content = $$("div", {
  3039. className: "U_MD_D_KO",
  3040. "onmousedown": U.UF.C.closure(function (obj) {
  3041. //防止拖动图标即打开了桌面应用
  3042. U.MD.D.click(this, obj);
  3043. }, [_studentDesktopIconInfo2[i]]),
  3044. "onclick": U.UF.C.closure(function (obj) {
  3045. //防止拖动图标即打开了桌面应用
  3046. U.MD.D.click(this, obj);
  3047. }, [_studentDesktopIconInfo2[i]])
  3048. }, _frag); //
  3049. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3050. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  3051. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  3052. }
  3053. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  3054. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  3055. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  3056. continue
  3057. }
  3058. _content = $$("div", {
  3059. className: "U_MD_D_KO",
  3060. "onmousedown": U.UF.C.closure(function (obj) {
  3061. //防止拖动图标即打开了桌面应用
  3062. U.MD.D.click(this, obj);
  3063. }, [_wanketeacherDesktopIconInfo[i]]),
  3064. "onclick": U.UF.C.closure(function (obj) {
  3065. //防止拖动图标即打开了桌面应用
  3066. U.MD.D.click(this, obj);
  3067. }, [_wanketeacherDesktopIconInfo[i]])
  3068. }, _frag); //
  3069. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3070. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  3071. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  3072. }
  3073. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  3074. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  3075. _content = $$("div", {
  3076. className: "U_MD_D_KO",
  3077. "onmousedown": U.UF.C.closure(function (obj) {
  3078. //防止拖动图标即打开了桌面应用
  3079. U.MD.D.click(this, obj);
  3080. }, [_wankeAdminDesktopIconInfo[i]]),
  3081. "onclick": U.UF.C.closure(function (obj) {
  3082. //防止拖动图标即打开了桌面应用
  3083. U.MD.D.click(this, obj);
  3084. }, [_wankeAdminDesktopIconInfo[i]])
  3085. }, _frag); //
  3086. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3087. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  3088. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  3089. }
  3090. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  3091. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  3092. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3093. continue
  3094. }
  3095. _content = $$("div", {
  3096. className: "U_MD_D_KO",
  3097. "onmousedown": U.UF.C.closure(function (obj) {
  3098. //防止拖动图标即打开了桌面应用
  3099. U.MD.D.click(this, obj);
  3100. }, [_scnuaiTeacherDeskIconInfo[i]]),
  3101. "onclick": U.UF.C.closure(function (obj) {
  3102. //防止拖动图标即打开了桌面应用
  3103. U.MD.D.click(this, obj);
  3104. }, [_scnuaiTeacherDeskIconInfo[i]])
  3105. }, _frag); //
  3106. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3107. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3108. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3109. }
  3110. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  3111. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  3112. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3113. continue
  3114. }
  3115. _content = $$("div", {
  3116. className: "U_MD_D_KO",
  3117. "onmousedown": U.UF.C.closure(function (obj) {
  3118. //防止拖动图标即打开了桌面应用
  3119. U.MD.D.click(this, obj);
  3120. }, [_BSDNSteacherDesktopIconInfo[i]]),
  3121. "onclick": U.UF.C.closure(function (obj) {
  3122. //防止拖动图标即打开了桌面应用
  3123. U.MD.D.click(this, obj);
  3124. }, [_BSDNSteacherDesktopIconInfo[i]])
  3125. }, _frag); //
  3126. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3127. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  3128. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  3129. }
  3130. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  3131. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  3132. _content = $$("div", {
  3133. className: "U_MD_D_KO",
  3134. "onmousedown": U.UF.C.closure(function (obj) {
  3135. //防止拖动图标即打开了桌面应用
  3136. U.MD.D.click(this, obj);
  3137. }, [_scnuaiAdminDeskIconInfo[i]]),
  3138. "onclick": U.UF.C.closure(function (obj) {
  3139. //防止拖动图标即打开了桌面应用
  3140. U.MD.D.click(this, obj);
  3141. }, [_scnuaiAdminDeskIconInfo[i]])
  3142. }, _frag); //
  3143. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3144. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3145. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3146. }
  3147. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3148. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3149. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3150. continue
  3151. }
  3152. _content = $$("div", {
  3153. className: "U_MD_D_KO",
  3154. "onmousedown": U.UF.C.closure(function (obj) {
  3155. //防止拖动图标即打开了桌面应用
  3156. U.MD.D.click(this, obj);
  3157. }, [_jccssylTeacherDeskIconInfo[i]]),
  3158. "onclick": U.UF.C.closure(function (obj) {
  3159. //防止拖动图标即打开了桌面应用
  3160. U.MD.D.click(this, obj);
  3161. }, [_jccssylTeacherDeskIconInfo[i]])
  3162. }, _frag); //
  3163. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3164. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3165. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3166. }
  3167. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3168. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3169. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3170. continue
  3171. }
  3172. _content = $$("div", {
  3173. className: "U_MD_D_KO",
  3174. "onmousedown": U.UF.C.closure(function (obj) {
  3175. //防止拖动图标即打开了桌面应用
  3176. U.MD.D.click(this, obj);
  3177. }, [_caleTeacherDeskIconInfo[i]]),
  3178. "onclick": U.UF.C.closure(function (obj) {
  3179. //防止拖动图标即打开了桌面应用
  3180. U.MD.D.click(this, obj);
  3181. }, [_caleTeacherDeskIconInfo[i]])
  3182. }, _frag); //
  3183. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3184. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3185. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3186. }
  3187. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3188. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3189. _content = $$("div", {
  3190. className: "U_MD_D_KO",
  3191. "onmousedown": U.UF.C.closure(function (obj) {
  3192. //防止拖动图标即打开了桌面应用
  3193. U.MD.D.click(this, obj);
  3194. }, [_tpcOrganizerDeskIconInfo[i]]),
  3195. "onclick": U.UF.C.closure(function (obj) {
  3196. //防止拖动图标即打开了桌面应用
  3197. U.MD.D.click(this, obj);
  3198. }, [_tpcOrganizerDeskIconInfo[i]])
  3199. }, _frag); //
  3200. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3201. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3202. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3203. }
  3204. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3205. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3206. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3207. continue
  3208. }
  3209. _content = $$("div", {
  3210. className: "U_MD_D_KO",
  3211. "onmousedown": U.UF.C.closure(function (obj) {
  3212. //防止拖动图标即打开了桌面应用
  3213. U.MD.D.click(this, obj);
  3214. }, [_tpcTeacherDeskIconInfo[i]]),
  3215. "onclick": U.UF.C.closure(function (obj) {
  3216. //防止拖动图标即打开了桌面应用
  3217. U.MD.D.click(this, obj);
  3218. }, [_tpcTeacherDeskIconInfo[i]])
  3219. }, _frag); //
  3220. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3221. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3222. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3223. }
  3224. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3225. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3226. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3227. continue
  3228. }
  3229. _content = $$("div", {
  3230. className: "U_MD_D_KO",
  3231. "onmousedown": U.UF.C.closure(function (obj) {
  3232. //防止拖动图标即打开了桌面应用
  3233. U.MD.D.click(this, obj);
  3234. }, [_teacherDesktopIconInfo2[i]]),
  3235. "onclick": U.UF.C.closure(function (obj) {
  3236. //防止拖动图标即打开了桌面应用
  3237. U.MD.D.click(this, obj);
  3238. }, [_teacherDesktopIconInfo2[i]])
  3239. }, _frag); //
  3240. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3241. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3242. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3243. }
  3244. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3245. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3246. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3247. continue
  3248. }
  3249. _content = $$("div", {
  3250. className: "U_MD_D_KO",
  3251. "onmousedown": U.UF.C.closure(function (obj) {
  3252. //防止拖动图标即打开了桌面应用
  3253. U.MD.D.click(this, obj);
  3254. }, [_thuioeTeacherDeskIconInfo[i]]),
  3255. "onclick": U.UF.C.closure(function (obj) {
  3256. //防止拖动图标即打开了桌面应用
  3257. U.MD.D.click(this, obj);
  3258. }, [_thuioeTeacherDeskIconInfo[i]])
  3259. }, _frag); //
  3260. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3261. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3262. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3263. }
  3264. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3265. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3266. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3267. continue
  3268. }
  3269. _content = $$("div", {
  3270. className: "U_MD_D_KO",
  3271. "onmousedown": U.UF.C.closure(function (obj) {
  3272. //防止拖动图标即打开了桌面应用
  3273. U.MD.D.click(this, obj);
  3274. }, [_lotechTeacherDeskIconInfo[i]]),
  3275. "onclick": U.UF.C.closure(function (obj) {
  3276. //防止拖动图标即打开了桌面应用
  3277. U.MD.D.click(this, obj);
  3278. }, [_lotechTeacherDeskIconInfo[i]])
  3279. }, _frag); //
  3280. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3281. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3282. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3283. }//
  3284. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3285. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3286. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3287. continue
  3288. }
  3289. _content = $$("div", {
  3290. className: "U_MD_D_KO",
  3291. "onmousedown": U.UF.C.closure(function (obj) {
  3292. //防止拖动图标即打开了桌面应用
  3293. U.MD.D.click(this, obj);
  3294. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3295. "onclick": U.UF.C.closure(function (obj) {
  3296. //防止拖动图标即打开了桌面应用
  3297. U.MD.D.click(this, obj);
  3298. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3299. }, _frag); //
  3300. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3301. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3302. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3303. }
  3304. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3305. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3306. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3307. continue
  3308. }
  3309. _content = $$("div", {
  3310. className: "U_MD_D_KO",
  3311. "onmousedown": U.UF.C.closure(function (obj) {
  3312. //防止拖动图标即打开了桌面应用
  3313. U.MD.D.click(this, obj);
  3314. }, [_siesTeacherDeskIconInfo[i]]),
  3315. "onclick": U.UF.C.closure(function (obj) {
  3316. //防止拖动图标即打开了桌面应用
  3317. U.MD.D.click(this, obj);
  3318. }, [_siesTeacherDeskIconInfo[i]])
  3319. }, _frag); //
  3320. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3321. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3322. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3323. }
  3324. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3325. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3326. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3327. continue
  3328. }
  3329. _content = $$("div", {
  3330. className: "U_MD_D_KO",
  3331. "onmousedown": U.UF.C.closure(function (obj) {
  3332. //防止拖动图标即打开了桌面应用
  3333. U.MD.D.click(this, obj);
  3334. }, [_guzmsTeacherDeskIconInfo[i]]),
  3335. "onclick": U.UF.C.closure(function (obj) {
  3336. //防止拖动图标即打开了桌面应用
  3337. U.MD.D.click(this, obj);
  3338. }, [_guzmsTeacherDeskIconInfo[i]])
  3339. }, _frag); //
  3340. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3341. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3342. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3343. }
  3344. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3345. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3346. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3347. continue
  3348. }
  3349. _content = $$("div", {
  3350. className: "U_MD_D_KO",
  3351. "onmousedown": U.UF.C.closure(function (obj) {
  3352. //防止拖动图标即打开了桌面应用
  3353. U.MD.D.click(this, obj);
  3354. }, [_longhuaTeacherDeskIconInfo[i]]),
  3355. "onclick": U.UF.C.closure(function (obj) {
  3356. //防止拖动图标即打开了桌面应用
  3357. U.MD.D.click(this, obj);
  3358. }, [_longhuaTeacherDeskIconInfo[i]])
  3359. }, _frag); //
  3360. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3361. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3362. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3363. }
  3364. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3365. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3366. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3367. continue
  3368. }
  3369. _content = $$("div", {
  3370. className: "U_MD_D_KO",
  3371. "onmousedown": U.UF.C.closure(function (obj) {
  3372. //防止拖动图标即打开了桌面应用
  3373. U.MD.D.click(this, obj);
  3374. }, [_ytyTeacherDeskIconInfo[i]]),
  3375. "onclick": U.UF.C.closure(function (obj) {
  3376. //防止拖动图标即打开了桌面应用
  3377. U.MD.D.click(this, obj);
  3378. }, [_ytyTeacherDeskIconInfo[i]])
  3379. }, _frag); //
  3380. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3381. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3382. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3383. }
  3384. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3385. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3386. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3387. continue
  3388. }
  3389. _content = $$("div", {
  3390. className: "U_MD_D_KO",
  3391. "onmousedown": U.UF.C.closure(function (obj) {
  3392. //防止拖动图标即打开了桌面应用
  3393. U.MD.D.click(this, obj);
  3394. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3395. "onclick": U.UF.C.closure(function (obj) {
  3396. //防止拖动图标即打开了桌面应用
  3397. U.MD.D.click(this, obj);
  3398. }, [_yunhaiTeacherDeskIconInfo[i]])
  3399. }, _frag); //
  3400. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3401. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3402. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3403. } //_hkStudentDeskIconInfo
  3404. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3405. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3406. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3407. continue
  3408. }
  3409. _content = $$("div", {
  3410. className: "U_MD_D_KO",
  3411. "onmousedown": U.UF.C.closure(function (obj) {
  3412. //防止拖动图标即打开了桌面应用
  3413. U.MD.D.click(this, obj);
  3414. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3415. "onclick": U.UF.C.closure(function (obj) {
  3416. //防止拖动图标即打开了桌面应用
  3417. U.MD.D.click(this, obj);
  3418. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3419. }, _frag); //
  3420. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3421. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3422. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3423. }
  3424. } else if ((_type == 1 || _type == 4) && (_oid == "91796dfb-8791-11ef-9b30-005056b86db5")) {
  3425. for (i = 0; i < _ricohTeacherDeskIconInfo.length; i++) {
  3426. if(_role === 0 && _ricohTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3427. continue
  3428. }
  3429. _content = $$("div", {
  3430. className: "U_MD_D_KO",
  3431. "onmousedown": U.UF.C.closure(function (obj) {
  3432. //防止拖动图标即打开了桌面应用
  3433. U.MD.D.click(this, obj);
  3434. }, [_ricohTeacherDeskIconInfo[i]]),
  3435. "onclick": U.UF.C.closure(function (obj) {
  3436. //防止拖动图标即打开了桌面应用
  3437. U.MD.D.click(this, obj);
  3438. }, [_ricohTeacherDeskIconInfo[i]])
  3439. }, _frag); //
  3440. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3441. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ricohTeacherDeskIconInfo[i].style }, _iconcontent);
  3442. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ricohTeacherDeskIconInfo[i].Name }, _iconcontent);
  3443. }
  3444. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3445. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3446. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3447. continue
  3448. }
  3449. _content = $$("div", {
  3450. className: "U_MD_D_KO",
  3451. "onmousedown": U.UF.C.closure(function (obj) {
  3452. //防止拖动图标即打开了桌面应用
  3453. U.MD.D.click(this, obj);
  3454. }, [_hkTeacherDeskIconInfo[i]]),
  3455. "onclick": U.UF.C.closure(function (obj) {
  3456. //防止拖动图标即打开了桌面应用
  3457. U.MD.D.click(this, obj);
  3458. }, [_hkTeacherDeskIconInfo[i]])
  3459. }, _frag); //
  3460. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3461. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3462. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3463. }
  3464. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3465. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3466. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3467. continue
  3468. }
  3469. _content = $$("div", {
  3470. className: "U_MD_D_KO",
  3471. "onmousedown": U.UF.C.closure(function (obj) {
  3472. //防止拖动图标即打开了桌面应用
  3473. U.MD.D.click(this, obj);
  3474. }, [_hkaceTeacherDeskIconInfo[i]]),
  3475. "onclick": U.UF.C.closure(function (obj) {
  3476. //防止拖动图标即打开了桌面应用
  3477. U.MD.D.click(this, obj);
  3478. }, [_hkaceTeacherDeskIconInfo[i]])
  3479. }, _frag); //
  3480. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3481. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3482. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3483. }
  3484. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3485. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3486. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3487. continue
  3488. }
  3489. _content = $$("div", {
  3490. className: "U_MD_D_KO",
  3491. "onmousedown": U.UF.C.closure(function (obj) {
  3492. //防止拖动图标即打开了桌面应用
  3493. U.MD.D.click(this, obj);
  3494. }, [_cocobizTeacherDeskIconInfo[i]]),
  3495. "onclick": U.UF.C.closure(function (obj) {
  3496. //防止拖动图标即打开了桌面应用
  3497. U.MD.D.click(this, obj);
  3498. }, [_cocobizTeacherDeskIconInfo[i]])
  3499. }, _frag); //
  3500. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3501. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3502. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3503. }
  3504. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3505. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3506. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3507. continue
  3508. }
  3509. _content = $$("div", {
  3510. className: "U_MD_D_KO",
  3511. "onmousedown": U.UF.C.closure(function (obj) {
  3512. //防止拖动图标即打开了桌面应用
  3513. U.MD.D.click(this, obj);
  3514. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3515. "onclick": U.UF.C.closure(function (obj) {
  3516. //防止拖动图标即打开了桌面应用
  3517. U.MD.D.click(this, obj);
  3518. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3519. }, _frag); //
  3520. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3521. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3522. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3523. }
  3524. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3525. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3526. _content = $$("div", {
  3527. className: "U_MD_D_KO",
  3528. "onmousedown": U.UF.C.closure(function (obj) {
  3529. //防止拖动图标即打开了桌面应用
  3530. U.MD.D.click(this, obj);
  3531. }, [_gdjgAdminDeskIconInfo[i]]),
  3532. "onclick": U.UF.C.closure(function (obj) {
  3533. //防止拖动图标即打开了桌面应用
  3534. U.MD.D.click(this, obj);
  3535. }, [_gdjgAdminDeskIconInfo[i]])
  3536. }, _frag); //
  3537. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3538. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3539. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3540. }
  3541. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3542. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3543. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3544. continue
  3545. }
  3546. _content = $$("div", {
  3547. className: "U_MD_D_KO",
  3548. "onmousedown": U.UF.C.closure(function (obj) {
  3549. //防止拖动图标即打开了桌面应用
  3550. U.MD.D.click(this, obj);
  3551. }, [_gdjgTeacherDeskIconInfo[i]]),
  3552. "onclick": U.UF.C.closure(function (obj) {
  3553. //防止拖动图标即打开了桌面应用
  3554. U.MD.D.click(this, obj);
  3555. }, [_gdjgTeacherDeskIconInfo[i]])
  3556. }, _frag); //
  3557. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3558. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3559. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3560. }
  3561. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3562. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3563. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3564. continue
  3565. }
  3566. _content = $$("div", {
  3567. className: "U_MD_D_KO",
  3568. "onmousedown": U.UF.C.closure(function (obj) {
  3569. //防止拖动图标即打开了桌面应用
  3570. U.MD.D.click(this, obj);
  3571. }, [_szherTeacherDeskIconInfo[i]]),
  3572. "onclick": U.UF.C.closure(function (obj) {
  3573. //防止拖动图标即打开了桌面应用
  3574. U.MD.D.click(this, obj);
  3575. }, [_szherTeacherDeskIconInfo[i]])
  3576. }, _frag); //
  3577. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3578. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3579. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3580. }
  3581. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3582. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3583. _content = $$("div", {
  3584. className: "U_MD_D_KO",
  3585. "onmousedown": U.UF.C.closure(function (obj) {
  3586. //防止拖动图标即打开了桌面应用
  3587. U.MD.D.click(this, obj);
  3588. }, [_heyuannAdminDeskIconInfo[i]]),
  3589. "onclick": U.UF.C.closure(function (obj) {
  3590. //防止拖动图标即打开了桌面应用
  3591. U.MD.D.click(this, obj);
  3592. }, [_heyuannAdminDeskIconInfo[i]])
  3593. }, _frag); //
  3594. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3595. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3596. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3597. }
  3598. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3599. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3600. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3601. continue
  3602. }
  3603. _content = $$("div", {
  3604. className: "U_MD_D_KO",
  3605. "onmousedown": U.UF.C.closure(function (obj) {
  3606. //防止拖动图标即打开了桌面应用
  3607. U.MD.D.click(this, obj);
  3608. }, [_heyuanTeacherDeskIconInfo[i]]),
  3609. "onclick": U.UF.C.closure(function (obj) {
  3610. //防止拖动图标即打开了桌面应用
  3611. U.MD.D.click(this, obj);
  3612. }, [_heyuanTeacherDeskIconInfo[i]])
  3613. }, _frag); //
  3614. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3615. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3616. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3617. } //
  3618. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3619. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3620. _content = $$("div", {
  3621. className: "U_MD_D_KO",
  3622. "onmousedown": U.UF.C.closure(function (obj) {
  3623. //防止拖动图标即打开了桌面应用
  3624. U.MD.D.click(this, obj);
  3625. }, [_dseiAdminDeskIconInfo[i]]),
  3626. "onclick": U.UF.C.closure(function (obj) {
  3627. //防止拖动图标即打开了桌面应用
  3628. U.MD.D.click(this, obj);
  3629. }, [_dseiAdminDeskIconInfo[i]])
  3630. }, _frag); //
  3631. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3632. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3633. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3634. }
  3635. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3636. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3637. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3638. continue
  3639. }
  3640. _content = $$("div", {
  3641. className: "U_MD_D_KO",
  3642. "onmousedown": U.UF.C.closure(function (obj) {
  3643. //防止拖动图标即打开了桌面应用
  3644. U.MD.D.click(this, obj);
  3645. }, [_dseiTeacherDeskIconInfo[i]]),
  3646. "onclick": U.UF.C.closure(function (obj) {
  3647. //防止拖动图标即打开了桌面应用
  3648. U.MD.D.click(this, obj);
  3649. }, [_dseiTeacherDeskIconInfo[i]])
  3650. }, _frag); //
  3651. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3652. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3653. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3654. } //
  3655. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3656. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3657. _content = $$("div", {
  3658. className: "U_MD_D_KO",
  3659. "onmousedown": U.UF.C.closure(function (obj) {
  3660. //防止拖动图标即打开了桌面应用
  3661. U.MD.D.click(this, obj);
  3662. }, [_chjyjAdminDeskIconInfo[i]]),
  3663. "onclick": U.UF.C.closure(function (obj) {
  3664. //防止拖动图标即打开了桌面应用
  3665. U.MD.D.click(this, obj);
  3666. }, [_chjyjAdminDeskIconInfo[i]])
  3667. }, _frag); //
  3668. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3669. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3670. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3671. }//
  3672. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3673. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3674. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3675. continue
  3676. }
  3677. _content = $$("div", {
  3678. className: "U_MD_D_KO",
  3679. "onmousedown": U.UF.C.closure(function (obj) {
  3680. //防止拖动图标即打开了桌面应用
  3681. U.MD.D.click(this, obj);
  3682. }, [_chjyjTeacherDeskIconInfo[i]]),
  3683. "onclick": U.UF.C.closure(function (obj) {
  3684. //防止拖动图标即打开了桌面应用
  3685. U.MD.D.click(this, obj);
  3686. }, [_chjyjTeacherDeskIconInfo[i]])
  3687. }, _frag); //
  3688. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3689. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3690. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3691. }
  3692. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3693. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3694. _content = $$("div", {
  3695. className: "U_MD_D_KO",
  3696. "onmousedown": U.UF.C.closure(function (obj) {
  3697. //防止拖动图标即打开了桌面应用
  3698. U.MD.D.click(this, obj);
  3699. }, [_szjkyAdminDeskIconInfo[i]]),
  3700. "onclick": U.UF.C.closure(function (obj) {
  3701. //防止拖动图标即打开了桌面应用
  3702. U.MD.D.click(this, obj);
  3703. }, [_szjkyAdminDeskIconInfo[i]])
  3704. }, _frag); //
  3705. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3706. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3707. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3708. }//
  3709. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3710. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3711. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3712. continue
  3713. }
  3714. _content = $$("div", {
  3715. className: "U_MD_D_KO",
  3716. "onmousedown": U.UF.C.closure(function (obj) {
  3717. //防止拖动图标即打开了桌面应用
  3718. U.MD.D.click(this, obj);
  3719. }, [_szjkyTeacherDeskIconInfo[i]]),
  3720. "onclick": U.UF.C.closure(function (obj) {
  3721. //防止拖动图标即打开了桌面应用
  3722. U.MD.D.click(this, obj);
  3723. }, [_szjkyTeacherDeskIconInfo[i]])
  3724. }, _frag); //
  3725. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3726. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3727. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3728. }
  3729. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3730. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3731. _content = $$("div", {
  3732. className: "U_MD_D_KO",
  3733. "onmousedown": U.UF.C.closure(function (obj) {
  3734. //防止拖动图标即打开了桌面应用
  3735. U.MD.D.click(this, obj);
  3736. }, [_x020201AdminDeskIconInfo[i]]),
  3737. "onclick": U.UF.C.closure(function (obj) {
  3738. //防止拖动图标即打开了桌面应用
  3739. U.MD.D.click(this, obj);
  3740. }, [_x020201AdminDeskIconInfo[i]])
  3741. }, _frag); //
  3742. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3743. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3744. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3745. }//
  3746. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3747. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3748. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3749. continue
  3750. }
  3751. _content = $$("div", {
  3752. className: "U_MD_D_KO",
  3753. "onmousedown": U.UF.C.closure(function (obj) {
  3754. //防止拖动图标即打开了桌面应用
  3755. U.MD.D.click(this, obj);
  3756. }, [_x020201TeacherDeskIconInfo[i]]),
  3757. "onclick": U.UF.C.closure(function (obj) {
  3758. //防止拖动图标即打开了桌面应用
  3759. U.MD.D.click(this, obj);
  3760. }, [_x020201TeacherDeskIconInfo[i]])
  3761. }, _frag); //
  3762. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3763. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3764. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3765. }
  3766. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3767. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3768. _content = $$("div", {
  3769. className: "U_MD_D_KO",
  3770. "onmousedown": U.UF.C.closure(function (obj) {
  3771. //防止拖动图标即打开了桌面应用
  3772. U.MD.D.click(this, obj);
  3773. }, [_SCNUETAdminDeskIconInfo[i]]),
  3774. "onclick": U.UF.C.closure(function (obj) {
  3775. //防止拖动图标即打开了桌面应用
  3776. U.MD.D.click(this, obj);
  3777. }, [_SCNUETAdminDeskIconInfo[i]])
  3778. }, _frag); //
  3779. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3780. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3781. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3782. }//
  3783. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3784. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3785. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3786. continue
  3787. }
  3788. _content = $$("div", {
  3789. className: "U_MD_D_KO",
  3790. "onmousedown": U.UF.C.closure(function (obj) {
  3791. //防止拖动图标即打开了桌面应用
  3792. U.MD.D.click(this, obj);
  3793. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3794. "onclick": U.UF.C.closure(function (obj) {
  3795. //防止拖动图标即打开了桌面应用
  3796. U.MD.D.click(this, obj);
  3797. }, [_SCNUETTeacherDeskIconInfo[i]])
  3798. }, _frag); //
  3799. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3800. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3801. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3802. }
  3803. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3804. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3805. _content = $$("div", {
  3806. className: "U_MD_D_KO",
  3807. "onmousedown": U.UF.C.closure(function (obj) {
  3808. //防止拖动图标即打开了桌面应用
  3809. U.MD.D.click(this, obj);
  3810. }, [_futianAdminDeskIconInfo[i]]),
  3811. "onclick": U.UF.C.closure(function (obj) {
  3812. //防止拖动图标即打开了桌面应用
  3813. U.MD.D.click(this, obj);
  3814. }, [_futianAdminDeskIconInfo[i]])
  3815. }, _frag); //
  3816. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3817. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3818. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3819. }
  3820. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3821. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3822. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3823. continue
  3824. }
  3825. _content = $$("div", {
  3826. className: "U_MD_D_KO",
  3827. "onmousedown": U.UF.C.closure(function (obj) {
  3828. //防止拖动图标即打开了桌面应用
  3829. U.MD.D.click(this, obj);
  3830. }, [_futianTeacherDeskIconInfo[i]]),
  3831. "onclick": U.UF.C.closure(function (obj) {
  3832. //防止拖动图标即打开了桌面应用
  3833. U.MD.D.click(this, obj);
  3834. }, [_futianTeacherDeskIconInfo[i]])
  3835. }, _frag); //
  3836. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3837. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3838. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3839. }
  3840. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3841. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3842. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3843. continue
  3844. }
  3845. _content = $$("div", {
  3846. className: "U_MD_D_KO",
  3847. "onmousedown": U.UF.C.closure(function (obj) {
  3848. //防止拖动图标即打开了桌面应用
  3849. U.MD.D.click(this, obj);
  3850. }, [_MingdeTeacherDeskIcon[i]]),
  3851. "onclick": U.UF.C.closure(function (obj) {
  3852. //防止拖动图标即打开了桌面应用
  3853. U.MD.D.click(this, obj);
  3854. }, [_MingdeTeacherDeskIcon[i]])
  3855. }, _frag); //
  3856. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3857. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3858. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3859. }
  3860. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3861. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3862. _content = $$("div", {
  3863. className: "U_MD_D_KO",
  3864. "onmousedown": U.UF.C.closure(function (obj) {
  3865. //防止拖动图标即打开了桌面应用
  3866. U.MD.D.click(this, obj);
  3867. }, [_lhsAdminDesktopIconInfo[i]]),
  3868. "onclick": U.UF.C.closure(function (obj) {
  3869. //防止拖动图标即打开了桌面应用
  3870. U.MD.D.click(this, obj);
  3871. }, [_lhsAdminDesktopIconInfo[i]])
  3872. }, _frag); //
  3873. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3874. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3875. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3876. }
  3877. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3878. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3879. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3880. continue
  3881. }
  3882. _content = $$("div", {
  3883. className: "U_MD_D_KO",
  3884. "onmousedown": U.UF.C.closure(function (obj) {
  3885. //防止拖动图标即打开了桌面应用
  3886. U.MD.D.click(this, obj);
  3887. }, [_lhsteacherDesktopIconInfo[i]]),
  3888. "onclick": U.UF.C.closure(function (obj) {
  3889. //防止拖动图标即打开了桌面应用
  3890. U.MD.D.click(this, obj);
  3891. }, [_lhsteacherDesktopIconInfo[i]])
  3892. }, _frag); //
  3893. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3894. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3895. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3896. }
  3897. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3898. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3899. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3900. continue
  3901. }
  3902. _content = $$("div", {
  3903. className: "U_MD_D_KO",
  3904. "onmousedown": U.UF.C.closure(function (obj) {
  3905. //防止拖动图标即打开了桌面应用
  3906. U.MD.D.click(this, obj);
  3907. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3908. "onclick": U.UF.C.closure(function (obj) {
  3909. //防止拖动图标即打开了桌面应用
  3910. U.MD.D.click(this, obj);
  3911. }, [_zhoujiateacherDesktopIconInfo[i]])
  3912. }, _frag); //
  3913. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3914. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3915. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3916. }
  3917. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3918. for (i = 0; i < _hanDeskIcon.length; i++) {
  3919. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3920. continue
  3921. }
  3922. _content = $$("div", {
  3923. className: "U_MD_D_KO",
  3924. "onmousedown": U.UF.C.closure(function (obj) {
  3925. //防止拖动图标即打开了桌面应用
  3926. U.MD.D.click(this, obj);
  3927. }, [_hanDeskIcon[i]]),
  3928. "onclick": U.UF.C.closure(function (obj) {
  3929. //防止拖动图标即打开了桌面应用
  3930. U.MD.D.click(this, obj);
  3931. }, [_hanDeskIcon[i]])
  3932. }, _frag); //
  3933. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3934. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3935. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3936. }
  3937. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3938. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3939. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3940. continue
  3941. }
  3942. _content = $$("div", {
  3943. className: "U_MD_D_KO",
  3944. "onmousedown": U.UF.C.closure(function (obj) {
  3945. //防止拖动图标即打开了桌面应用
  3946. U.MD.D.click(this, obj);
  3947. }, [_orgStemDeskIcon[i]]),
  3948. "onclick": U.UF.C.closure(function (obj) {
  3949. //防止拖动图标即打开了桌面应用
  3950. U.MD.D.click(this, obj);
  3951. }, [_orgStemDeskIcon[i]])
  3952. }, _frag); //
  3953. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3954. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3955. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3956. }
  3957. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3958. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3959. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3960. continue
  3961. }
  3962. _content = $$("div", {
  3963. className: "U_MD_D_KO",
  3964. "onmousedown": U.UF.C.closure(function (obj) {
  3965. //防止拖动图标即打开了桌面应用
  3966. U.MD.D.click(this, obj);
  3967. }, [_szulsDeskIcon[i]]),
  3968. "onclick": U.UF.C.closure(function (obj) {
  3969. //防止拖动图标即打开了桌面应用
  3970. U.MD.D.click(this, obj);
  3971. }, [_szulsDeskIcon[i]])
  3972. }, _frag); //
  3973. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3974. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3975. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3976. }
  3977. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3978. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3979. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3980. continue
  3981. }
  3982. _content = $$("div", {
  3983. className: "U_MD_D_KO",
  3984. "onmousedown": U.UF.C.closure(function (obj) {
  3985. //防止拖动图标即打开了桌面应用
  3986. U.MD.D.click(this, obj);
  3987. }, [_orgDesktopIconInfo[i]]),
  3988. "onclick": U.UF.C.closure(function (obj) {
  3989. //防止拖动图标即打开了桌面应用
  3990. U.MD.D.click(this, obj);
  3991. }, [_orgDesktopIconInfo[i]])
  3992. }, _frag); //
  3993. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3994. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3995. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3996. }
  3997. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3998. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3999. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  4000. continue
  4001. }
  4002. _content = $$("div", {
  4003. className: "U_MD_D_KO",
  4004. "onmousedown": U.UF.C.closure(function (obj) {
  4005. //防止拖动图标即打开了桌面应用
  4006. U.MD.D.click(this, obj);
  4007. }, [_schoolDesktopIconInfo[i]]),
  4008. "onclick": U.UF.C.closure(function (obj) {
  4009. //防止拖动图标即打开了桌面应用
  4010. U.MD.D.click(this, obj);
  4011. }, [_schoolDesktopIconInfo[i]])
  4012. }, _frag); //
  4013. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4014. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  4015. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  4016. }
  4017. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4018. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  4019. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4020. continue
  4021. }
  4022. _content = $$("div", {
  4023. className: "U_MD_D_KO",
  4024. "onmousedown": U.UF.C.closure(function (obj) {
  4025. //防止拖动图标即打开了桌面应用
  4026. U.MD.D.click(this, obj);
  4027. }, [_GMteacherDesktopIconInfo[i]]),
  4028. "onclick": U.UF.C.closure(function (obj) {
  4029. //防止拖动图标即打开了桌面应用
  4030. U.MD.D.click(this, obj);
  4031. }, [_GMteacherDesktopIconInfo[i]])
  4032. }, _frag); //
  4033. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4034. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  4035. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  4036. }
  4037. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  4038. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  4039. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4040. continue
  4041. }
  4042. _content = $$("div", {
  4043. className: "U_MD_D_KO",
  4044. "onmousedown": U.UF.C.closure(function (obj) {
  4045. //防止拖动图标即打开了桌面应用
  4046. U.MD.D.click(this, obj);
  4047. }, [_SONGteacherDesktopIconInfo[i]]),
  4048. "onclick": U.UF.C.closure(function (obj) {
  4049. //防止拖动图标即打开了桌面应用
  4050. U.MD.D.click(this, obj);
  4051. }, [_SONGteacherDesktopIconInfo[i]])
  4052. }, _frag); //
  4053. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4054. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  4055. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  4056. }
  4057. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4058. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  4059. _content = $$("div", {
  4060. className: "U_MD_D_KO",
  4061. "onmousedown": U.UF.C.closure(function (obj) {
  4062. //防止拖动图标即打开了桌面应用
  4063. U.MD.D.click(this, obj);
  4064. }, [_GMstudentDesktopIconInfo[i]]),
  4065. "onclick": U.UF.C.closure(function (obj) {
  4066. //防止拖动图标即打开了桌面应用
  4067. U.MD.D.click(this, obj);
  4068. }, [_GMstudentDesktopIconInfo[i]])
  4069. }, _frag); //
  4070. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4071. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  4072. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  4073. }
  4074. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  4075. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  4076. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4077. continue
  4078. }
  4079. _content = $$("div", {
  4080. className: "U_MD_D_KO",
  4081. "onmousedown": U.UF.C.closure(function (obj) {
  4082. //防止拖动图标即打开了桌面应用
  4083. U.MD.D.click(this, obj);
  4084. }, [_tcTeacherDeskIconInfo[i]]),
  4085. "onclick": U.UF.C.closure(function (obj) {
  4086. //防止拖动图标即打开了桌面应用
  4087. U.MD.D.click(this, obj);
  4088. }, [_tcTeacherDeskIconInfo[i]])
  4089. }, _frag); //
  4090. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4091. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  4092. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  4093. }
  4094. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  4095. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  4096. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4097. continue
  4098. }
  4099. _content = $$("div", {
  4100. className: "U_MD_D_KO",
  4101. "onmousedown": U.UF.C.closure(function (obj) {
  4102. //防止拖动图标即打开了桌面应用
  4103. U.MD.D.click(this, obj);
  4104. }, [_tcOrganizerDeskIconInfo[i]]),
  4105. "onclick": U.UF.C.closure(function (obj) {
  4106. //防止拖动图标即打开了桌面应用
  4107. U.MD.D.click(this, obj);
  4108. }, [_tcOrganizerDeskIconInfo[i]])
  4109. }, _frag); //
  4110. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4111. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  4112. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4113. }
  4114. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  4115. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  4116. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4117. continue
  4118. }
  4119. _content = $$("div", {
  4120. className: "U_MD_D_KO",
  4121. "onmousedown": U.UF.C.closure(function (obj) {
  4122. //防止拖动图标即打开了桌面应用
  4123. U.MD.D.click(this, obj);
  4124. }, [_szscTeacherDeskIconInfo[i]]),
  4125. "onclick": U.UF.C.closure(function (obj) {
  4126. //防止拖动图标即打开了桌面应用
  4127. U.MD.D.click(this, obj);
  4128. }, [_szscTeacherDeskIconInfo[i]])
  4129. }, _frag); //
  4130. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4131. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  4132. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  4133. }
  4134. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  4135. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  4136. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4137. continue
  4138. }
  4139. _content = $$("div", {
  4140. className: "U_MD_D_KO",
  4141. "onmousedown": U.UF.C.closure(function (obj) {
  4142. //防止拖动图标即打开了桌面应用
  4143. U.MD.D.click(this, obj);
  4144. }, [_szscOrganizerDeskIconInfo[i]]),
  4145. "onclick": U.UF.C.closure(function (obj) {
  4146. //防止拖动图标即打开了桌面应用
  4147. U.MD.D.click(this, obj);
  4148. }, [_szscOrganizerDeskIconInfo[i]])
  4149. }, _frag); //
  4150. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4151. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  4152. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4153. }
  4154. } else if ((_type == 1 || _type == 4) && _org == "7cc601a0-fafc-4116-a805-0adbacf7a38d") {
  4155. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  4156. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4157. continue
  4158. }
  4159. _content = $$("div", {
  4160. className: "U_MD_D_KO",
  4161. "onmousedown": U.UF.C.closure(function (obj) {
  4162. //防止拖动图标即打开了桌面应用
  4163. U.MD.D.click(this, obj);
  4164. }, [_nsfxTeacherDeskIconInfo[i]]),
  4165. "onclick": U.UF.C.closure(function (obj) {
  4166. //防止拖动图标即打开了桌面应用
  4167. U.MD.D.click(this, obj);
  4168. }, [_nsfxTeacherDeskIconInfo[i]])
  4169. }, _frag); //
  4170. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4171. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4172. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4173. }
  4174. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4175. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4176. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4177. continue
  4178. }
  4179. _content = $$("div", {
  4180. className: "U_MD_D_KO",
  4181. "onmousedown": U.UF.C.closure(function (obj) {
  4182. //防止拖动图标即打开了桌面应用
  4183. U.MD.D.click(this, obj);
  4184. }, [_stiaTeacherDeskIconInfo[i]]),
  4185. "onclick": U.UF.C.closure(function (obj) {
  4186. //防止拖动图标即打开了桌面应用
  4187. U.MD.D.click(this, obj);
  4188. }, [_stiaTeacherDeskIconInfo[i]])
  4189. }, _frag); //
  4190. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4191. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4192. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4193. }
  4194. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4195. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4196. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4197. continue
  4198. }
  4199. _content = $$("div", {
  4200. className: "U_MD_D_KO",
  4201. "onmousedown": U.UF.C.closure(function (obj) {
  4202. //防止拖动图标即打开了桌面应用
  4203. U.MD.D.click(this, obj);
  4204. }, [_szdjgTeacherDeskIconInfo[i]]),
  4205. "onclick": U.UF.C.closure(function (obj) {
  4206. //防止拖动图标即打开了桌面应用
  4207. U.MD.D.click(this, obj);
  4208. }, [_szdjgTeacherDeskIconInfo[i]])
  4209. }, _frag); //
  4210. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4211. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4212. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4213. }
  4214. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4215. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4216. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4217. continue
  4218. }
  4219. _content = $$("div", {
  4220. className: "U_MD_D_KO",
  4221. "onmousedown": U.UF.C.closure(function (obj) {
  4222. //防止拖动图标即打开了桌面应用
  4223. U.MD.D.click(this, obj);
  4224. }, [_x010607TeacherDeskIconInfo[i]]),
  4225. "onclick": U.UF.C.closure(function (obj) {
  4226. //防止拖动图标即打开了桌面应用
  4227. U.MD.D.click(this, obj);
  4228. }, [_x010607TeacherDeskIconInfo[i]])
  4229. }, _frag); //
  4230. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4231. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4232. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4233. }
  4234. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4235. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4236. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4237. continue
  4238. }
  4239. _content = $$("div", {
  4240. className: "U_MD_D_KO",
  4241. "onmousedown": U.UF.C.closure(function (obj) {
  4242. //防止拖动图标即打开了桌面应用
  4243. U.MD.D.click(this, obj);
  4244. }, [_xhlyTeacherDeskIconInfo[i]]),
  4245. "onclick": U.UF.C.closure(function (obj) {
  4246. //防止拖动图标即打开了桌面应用
  4247. U.MD.D.click(this, obj);
  4248. }, [_xhlyTeacherDeskIconInfo[i]])
  4249. }, _frag); //
  4250. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4251. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4252. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4253. }
  4254. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4255. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4256. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4257. continue
  4258. }
  4259. _content = $$("div", {
  4260. className: "U_MD_D_KO",
  4261. "onmousedown": U.UF.C.closure(function (obj) {
  4262. //防止拖动图标即打开了桌面应用
  4263. U.MD.D.click(this, obj);
  4264. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4265. "onclick": U.UF.C.closure(function (obj) {
  4266. //防止拖动图标即打开了桌面应用
  4267. U.MD.D.click(this, obj);
  4268. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4269. }, _frag); //
  4270. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4271. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4272. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4273. }
  4274. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4275. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4276. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4277. continue
  4278. }
  4279. _content = $$("div", {
  4280. className: "U_MD_D_KO",
  4281. "onmousedown": U.UF.C.closure(function (obj) {
  4282. //防止拖动图标即打开了桌面应用
  4283. U.MD.D.click(this, obj);
  4284. }, [_x010503TeacherDeskIconInfo[i]]),
  4285. "onclick": U.UF.C.closure(function (obj) {
  4286. //防止拖动图标即打开了桌面应用
  4287. U.MD.D.click(this, obj);
  4288. }, [_x010503TeacherDeskIconInfo[i]])
  4289. }, _frag); //
  4290. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4291. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4292. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4293. }
  4294. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4295. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4296. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4297. continue
  4298. }
  4299. _content = $$("div", {
  4300. className: "U_MD_D_KO",
  4301. "onmousedown": U.UF.C.closure(function (obj) {
  4302. //防止拖动图标即打开了桌面应用
  4303. U.MD.D.click(this, obj);
  4304. }, [_x010504TeacherDeskIconInfo[i]]),
  4305. "onclick": U.UF.C.closure(function (obj) {
  4306. //防止拖动图标即打开了桌面应用
  4307. U.MD.D.click(this, obj);
  4308. }, [_x010504TeacherDeskIconInfo[i]])
  4309. }, _frag); //
  4310. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4311. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4312. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4313. }
  4314. } else if ((_type == 1 || _type == 4) && _oid == "8406b214-085f-11f0-b508-005056924926") {
  4315. for (i = 0; i < _x010505TeacherDeskIconInfo.length; i++) {
  4316. if(_role === 0 && _x010505TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4317. continue
  4318. }
  4319. _content = $$("div", {
  4320. className: "U_MD_D_KO",
  4321. "onmousedown": U.UF.C.closure(function (obj) {
  4322. //防止拖动图标即打开了桌面应用
  4323. U.MD.D.click(this, obj);
  4324. }, [_x010505TeacherDeskIconInfo[i]]),
  4325. "onclick": U.UF.C.closure(function (obj) {
  4326. //防止拖动图标即打开了桌面应用
  4327. U.MD.D.click(this, obj);
  4328. }, [_x010505TeacherDeskIconInfo[i]])
  4329. }, _frag); //
  4330. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4331. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505TeacherDeskIconInfo[i].style }, _iconcontent);
  4332. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505TeacherDeskIconInfo[i].Name }, _iconcontent);
  4333. }
  4334. } else if ((_type == 1 || _type == 4) && _oid == "bc239322-ffb2-11ef-b508-005056924926") {
  4335. for (i = 0; i < _x010404TeacherDeskIconInfo.length; i++) {
  4336. if(_role === 0 && _x010404TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4337. continue
  4338. }
  4339. _content = $$("div", {
  4340. className: "U_MD_D_KO",
  4341. "onmousedown": U.UF.C.closure(function (obj) {
  4342. //防止拖动图标即打开了桌面应用
  4343. U.MD.D.click(this, obj);
  4344. }, [_x010404TeacherDeskIconInfo[i]]),
  4345. "onclick": U.UF.C.closure(function (obj) {
  4346. //防止拖动图标即打开了桌面应用
  4347. U.MD.D.click(this, obj);
  4348. }, [_x010404TeacherDeskIconInfo[i]])
  4349. }, _frag); //
  4350. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4351. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404TeacherDeskIconInfo[i].style }, _iconcontent);
  4352. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404TeacherDeskIconInfo[i].Name }, _iconcontent);
  4353. }
  4354. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4355. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4356. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4357. continue
  4358. }
  4359. _content = $$("div", {
  4360. className: "U_MD_D_KO",
  4361. "onmousedown": U.UF.C.closure(function (obj) {
  4362. //防止拖动图标即打开了桌面应用
  4363. U.MD.D.click(this, obj);
  4364. }, [_x010204TeacherDeskIconInfo[i]]),
  4365. "onclick": U.UF.C.closure(function (obj) {
  4366. //防止拖动图标即打开了桌面应用
  4367. U.MD.D.click(this, obj);
  4368. }, [_x010204TeacherDeskIconInfo[i]])
  4369. }, _frag); //
  4370. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4371. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4372. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4373. }
  4374. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4375. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4376. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4377. continue
  4378. }
  4379. _content = $$("div", {
  4380. className: "U_MD_D_KO",
  4381. "onmousedown": U.UF.C.closure(function (obj) {
  4382. //防止拖动图标即打开了桌面应用
  4383. U.MD.D.click(this, obj);
  4384. }, [_x320101TeacherDeskIconInfo[i]]),
  4385. "onclick": U.UF.C.closure(function (obj) {
  4386. //防止拖动图标即打开了桌面应用
  4387. U.MD.D.click(this, obj);
  4388. }, [_x320101TeacherDeskIconInfo[i]])
  4389. }, _frag); //
  4390. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4391. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4392. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4393. }
  4394. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4395. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4396. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4397. continue
  4398. }
  4399. _content = $$("div", {
  4400. className: "U_MD_D_KO",
  4401. "onmousedown": U.UF.C.closure(function (obj) {
  4402. //防止拖动图标即打开了桌面应用
  4403. U.MD.D.click(this, obj);
  4404. }, [_trailTeacherDeskIconInfo[i]]),
  4405. "onclick": U.UF.C.closure(function (obj) {
  4406. //防止拖动图标即打开了桌面应用
  4407. U.MD.D.click(this, obj);
  4408. }, [_trailTeacherDeskIconInfo[i]])
  4409. }, _frag); //
  4410. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4411. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4412. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4413. }
  4414. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4415. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4416. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4417. continue
  4418. }
  4419. _content = $$("div", {
  4420. className: "U_MD_D_KO",
  4421. "onmousedown": U.UF.C.closure(function (obj) {
  4422. //防止拖动图标即打开了桌面应用
  4423. U.MD.D.click(this, obj);
  4424. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4425. "onclick": U.UF.C.closure(function (obj) {
  4426. //防止拖动图标即打开了桌面应用
  4427. U.MD.D.click(this, obj);
  4428. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4429. }, _frag); //
  4430. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4431. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4432. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4433. }
  4434. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4435. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4436. if(_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4437. continue
  4438. }
  4439. _content = $$("div", {
  4440. className: "U_MD_D_KO",
  4441. "onmousedown": U.UF.C.closure(function (obj) {
  4442. //防止拖动图标即打开了桌面应用
  4443. U.MD.D.click(this, obj);
  4444. }, [_szsyTeacherDeskIconInfo[i]]),
  4445. "onclick": U.UF.C.closure(function (obj) {
  4446. //防止拖动图标即打开了桌面应用
  4447. U.MD.D.click(this, obj);
  4448. }, [_szsyTeacherDeskIconInfo[i]])
  4449. }, _frag); //
  4450. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4451. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4452. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4453. }
  4454. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4455. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4456. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4457. continue
  4458. }
  4459. _content = $$("div", {
  4460. className: "U_MD_D_KO",
  4461. "onmousedown": U.UF.C.closure(function (obj) {
  4462. //防止拖动图标即打开了桌面应用
  4463. U.MD.D.click(this, obj);
  4464. }, [_x010608TeacherDeskIconInfo[i]]),
  4465. "onclick": U.UF.C.closure(function (obj) {
  4466. //防止拖动图标即打开了桌面应用
  4467. U.MD.D.click(this, obj);
  4468. }, [_x010608TeacherDeskIconInfo[i]])
  4469. }, _frag); //
  4470. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4471. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4472. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4473. }
  4474. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4475. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4476. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4477. continue
  4478. }
  4479. _content = $$("div", {
  4480. className: "U_MD_D_KO",
  4481. "onmousedown": U.UF.C.closure(function (obj) {
  4482. //防止拖动图标即打开了桌面应用
  4483. U.MD.D.click(this, obj);
  4484. }, [_x010611TeacherDeskIconInfo[i]]),
  4485. "onclick": U.UF.C.closure(function (obj) {
  4486. //防止拖动图标即打开了桌面应用
  4487. U.MD.D.click(this, obj);
  4488. }, [_x010611TeacherDeskIconInfo[i]])
  4489. }, _frag); //
  4490. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4491. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4492. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4493. }
  4494. } else if ((_type == 1 || _type == 4) && _oid == "86fa8cd7-00c2-11f0-b508-005056924926") {
  4495. for (i = 0; i < _x010612TeacherDeskIconInfo.length; i++) {
  4496. if(_role === 0 && _x010612TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4497. continue
  4498. }
  4499. _content = $$("div", {
  4500. className: "U_MD_D_KO",
  4501. "onmousedown": U.UF.C.closure(function (obj) {
  4502. //防止拖动图标即打开了桌面应用
  4503. U.MD.D.click(this, obj);
  4504. }, [_x010612TeacherDeskIconInfo[i]]),
  4505. "onclick": U.UF.C.closure(function (obj) {
  4506. //防止拖动图标即打开了桌面应用
  4507. U.MD.D.click(this, obj);
  4508. }, [_x010612TeacherDeskIconInfo[i]])
  4509. }, _frag); //
  4510. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4511. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612TeacherDeskIconInfo[i].style }, _iconcontent);
  4512. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612TeacherDeskIconInfo[i].Name }, _iconcontent);
  4513. }
  4514. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4515. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4516. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4517. continue
  4518. }
  4519. _content = $$("div", {
  4520. className: "U_MD_D_KO",
  4521. "onmousedown": U.UF.C.closure(function (obj) {
  4522. //防止拖动图标即打开了桌面应用
  4523. U.MD.D.click(this, obj);
  4524. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4525. "onclick": U.UF.C.closure(function (obj) {
  4526. //防止拖动图标即打开了桌面应用
  4527. U.MD.D.click(this, obj);
  4528. }, [_tianyuanTeacherDeskIconInfo[i]])
  4529. }, _frag); //
  4530. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4531. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4532. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4533. }
  4534. } else {
  4535. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4536. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4537. continue
  4538. }
  4539. _content = $$("div", {
  4540. className: "U_MD_D_KO",
  4541. "onmousedown": U.UF.C.closure(function (obj) {
  4542. //防止拖动图标即打开了桌面应用
  4543. U.MD.D.click(this, obj);
  4544. }, [_teacherDesktopIconInfo[i]]),
  4545. "onclick": U.UF.C.closure(function (obj) {
  4546. //防止拖动图标即打开了桌面应用
  4547. U.MD.D.click(this, obj);
  4548. }, [_teacherDesktopIconInfo[i]])
  4549. }, _frag); //
  4550. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4551. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4552. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4553. }
  4554. }
  4555. } else {
  4556. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4557. _content = $$("div", {
  4558. className: "U_MD_D_KO",
  4559. style: { 'width': '124px', 'height': '145px' },
  4560. "onmousedown": U.UF.C.closure(function (obj) {
  4561. //防止拖动图标即打开了桌面应用
  4562. U.MD.D.click(this, obj);
  4563. }, [_easyDesktopIconInfo[i]]),
  4564. "onclick": U.UF.C.closure(function (obj) {
  4565. //防止拖动图标即打开了桌面应用
  4566. U.MD.D.click(this, obj);
  4567. }, [_easyDesktopIconInfo[i]])
  4568. }, _frag); //
  4569. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4570. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4571. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4572. }
  4573. }
  4574. if (type == 1) {
  4575. //加载好后给图标定位
  4576. U.MD.D.iconPostion($(_frag).Child());
  4577. } else {
  4578. //加载好后给图标定位
  4579. U.MD.D.iconPostion2($(_frag).Child());
  4580. }
  4581. //把图标加载到页面
  4582. el.appendChild(_frag);
  4583. }
  4584. /**
  4585. * 显示任务栏
  4586. *
  4587. * @param {element} 桌面元素
  4588. */
  4589. U.MD.D.I.displayTaskbar = function (el) {
  4590. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4591. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4592. //任务栏位置变化
  4593. U.selectEl(el).css({ "bottom": "0px" });
  4594. //桌面位置变话
  4595. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4596. }
  4597. }
  4598. //#region 桌面图标拖动逻辑
  4599. /**
  4600. * 桌面排列图标
  4601. *
  4602. * @param {element} 桌面元素
  4603. * @param {object} 上下相距的距离
  4604. * @param {object} 左右相距的距离
  4605. * @return {object} 命名空间
  4606. */
  4607. U.MD.D.iconPostion = function (childs, top, left) {
  4608. var i; //用于循环处理
  4609. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4610. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4611. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4612. for (i = 0; i < childs.length; i++) {
  4613. //如果竖排top超过了范围处理
  4614. if (top + 95 > US.height - 10) {
  4615. //left超过了页面范围处理,则向上重叠打印处理
  4616. if ((left + 180) > US.width) {
  4617. top -= 110;
  4618. left -= 90;
  4619. }
  4620. //没有超过范围,那么left+90添加到下一个竖排打印
  4621. else {
  4622. left += 90;
  4623. top = 15;
  4624. };
  4625. }
  4626. //给图标的位置赋值
  4627. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4628. if (i < childs.length - 1) {
  4629. //页面图标每次向下加95
  4630. top += 95;
  4631. }
  4632. }
  4633. //返回最后调用的图标的位置
  4634. return [top, left];
  4635. }
  4636. /**
  4637. * 桌面排列图标
  4638. *
  4639. * @param {element} 桌面元素
  4640. * @param {object} 上下相距的距离
  4641. * @param {object} 左右相距的距离
  4642. * @return {object} 命名空间
  4643. */
  4644. U.MD.D.iconPostion2 = function (childs, top, left) {
  4645. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4646. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4647. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4648. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4649. for (i = 0; i < childs.length; i++) {
  4650. //如果竖排top超过了范围处理
  4651. if (left + 150 > US.width - 10) {
  4652. //left超过了页面范围处理,则向上重叠打印处理
  4653. if ((top + 180) > US.Height) {
  4654. top -= 150;
  4655. left -= 150;
  4656. }
  4657. //没有超过范围,那么left+90添加到下一个竖排打印
  4658. else {
  4659. top += 150;
  4660. left = ol;
  4661. };
  4662. }
  4663. //给图标的位置赋值
  4664. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4665. if (i < childs.length - 1) {
  4666. //页面图标每次向下加95
  4667. left += 150;
  4668. }
  4669. }
  4670. //返回最后调用的图标的位置
  4671. return [top, left];
  4672. }
  4673. /**
  4674. * 桌面点击事件逻辑
  4675. *
  4676. * @param {element} 桌面元素
  4677. * @param {object} 上下相距的距离
  4678. * @param {object} 左右相距的距离
  4679. * @return {object} 命名空间
  4680. */
  4681. U.MD.D.click = function (el, obj) {
  4682. var _buttonnumber = event.button; //点击的按钮的事件值
  4683. var _userinfo = US.userInfo;
  4684. U.UF.EV.stopBubble(); //阻止向上冒泡
  4685. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4686. if (_buttonnumber < 2) {
  4687. //如果是click事件的处理
  4688. if (event.type == "click") {
  4689. //如果元素在mousemove事件中没有移动则出发click事件
  4690. if (!U.MD.D.I.IsDrag) {
  4691. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4692. U.alert("请先登录您的账号!");
  4693. setTimeout(() => {
  4694. U.MD.U.L.login();
  4695. }, 2000);
  4696. } else {
  4697. //打开应用处理
  4698. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4699. }
  4700. }
  4701. }
  4702. //如果是mouse事件的处理
  4703. else {
  4704. if (US.Config.type == '1') {
  4705. //拖动处理,添加拖动和拖动结束事件
  4706. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4707. }
  4708. }
  4709. U.MD.D.I.IsDrag = false;
  4710. }
  4711. }
  4712. /**
  4713. * 拖动的处理
  4714. *
  4715. */
  4716. U.MD.D.iconMove = function () {
  4717. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4718. U.MD.D.I.IsDrag = true;
  4719. }
  4720. /**
  4721. * 拖动结束后,这里是定位处理,以网状的形式定位
  4722. *
  4723. * @param {element} 拖动的元素
  4724. * @return {object} 命名空间
  4725. */
  4726. U.MD.D.iconUp = function (el) {
  4727. var _top = 15,
  4728. _left = 20,
  4729. _margin,
  4730. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4731. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4732. if (_positioninfo["OT"] > 15) {
  4733. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4734. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4735. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4736. }
  4737. if (_positioninfo["OL"] > 20) {
  4738. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4739. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4740. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4741. }
  4742. //while循环判断么一个重叠的元素
  4743. do {
  4744. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4745. _top = _positioninfo[0] + 95; //得到定位后的top
  4746. _left = _positioninfo[1]; //得到定位后的left
  4747. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4748. }
  4749. /**
  4750. * 判断拖动后图标是否重叠
  4751. *
  4752. * @param {element} 拖动的元素
  4753. * @param {element} 桌面所有的元素
  4754. * @param {array} 拖动元素的位置
  4755. ----------[0] 上 top
  4756. ----------[1] 左 left
  4757. * @return {object} 命名空间
  4758. */
  4759. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4760. //循环所有的图标
  4761. for (var i = 0; i < childs.length; i++) {
  4762. //判断有没有和该图标诶子重叠的元素
  4763. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4764. return childs[i]; //如果有返回
  4765. }
  4766. }
  4767. }
  4768. //#endregion
  4769. //#endregion
  4770. //#region 桌面应用
  4771. /**
  4772. * 打开应用
  4773. *
  4774. * @param {string} 类型
  4775. -----------------Disk 网盘系统
  4776. -----------------PDisk 学习系统网盘
  4777. -----------------Poto 图片
  4778. -----------------Video 视频
  4779. -----------------Music 音乐
  4780. -----------------Word word
  4781. -----------------Excel excel
  4782. -----------------Txt 记事本
  4783. -----------------PB 学习系统
  4784. -----------------Blog 朋友圈系统
  4785. -----------------FTP ftp系统
  4786. -----------------Group 好友群
  4787. -----------------SY 首页系统
  4788. -----------------Set 个人设置
  4789. -----------------XSet 系统设置
  4790. -----------------App 我们所有的app
  4791. -----------------BC c.1473.cn 平台
  4792. -----------------CWeb d.1473.cn 变成平台
  4793. -----------------其他的外联系统 我们统一用iframe打开
  4794. * @param {array} 类型
  4795. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4796. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4797. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4798. 如果第一个参数为其他,则无第二个参数
  4799. * @returns {array}
  4800. */
  4801. window.addEventListener('message', function (e) { // 监听 message 事件
  4802. // alert(e.data.type);
  4803. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4804. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4805. //3是展示全部阶段 2学生 1老师 4专家
  4806. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4807. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4808. //3是展示全部阶段 2学生 1老师 4专家
  4809. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4810. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4811. //3是展示全部阶段 2学生 1老师 4专家
  4812. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4813. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4814. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4815. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4816. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4817. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4818. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4819. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4820. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4821. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4822. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4823. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4824. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4825. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4826. //3是展示全部阶段 2学生 1老师 4专家
  4827. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4828. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4829. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4830. U.MD.D.I.selectUser();
  4831. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4832. var _formel = document.getElementById("study");
  4833. U.UF.F.windowZooming(_formel);
  4834. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4835. var _formel = document.getElementById("studyDetail");
  4836. U.UF.F.windowZooming(_formel);
  4837. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4838. var _formel = document.getElementById("studyDetail");
  4839. U.UF.F.windowZooming(_formel);
  4840. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4841. var _formel = document.getElementById("studentStudy");
  4842. U.UF.F.windowZooming(_formel);
  4843. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4844. // var _formel = document.getElementById("study");
  4845. //如果最大化了,那么就把他缩小
  4846. // if (_formel.ismaximize) {
  4847. // return;
  4848. // }
  4849. // U.UF.F.windowZooming(_formel);
  4850. // U.UF.F.topWindow(_formel);
  4851. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4852. // var _formel = document.getElementById("studyDetail");
  4853. //如果最大化了,那么就把他缩小
  4854. // if (_formel.ismaximize) {
  4855. // return;
  4856. // }
  4857. // U.UF.F.windowZooming(_formel);
  4858. // U.UF.F.topWindow(_formel);
  4859. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4860. // var _formel = document.getElementById("studentStudy");
  4861. // if (_formel.ismaximize) {
  4862. // return;
  4863. // }
  4864. // U.UF.F.windowZooming(_formel);
  4865. // U.UF.F.topWindow(_formel);
  4866. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4867. var _formel = document.getElementById("study");
  4868. // if (_formel.ismaximize) {
  4869. // return;
  4870. // }
  4871. // U.UF.F.windowZooming(_formel);
  4872. U.UF.F.topWindow(_formel);
  4873. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4874. var _formel = document.getElementById("studentIndex");
  4875. U.UF.F.windowZooming(_formel);
  4876. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4877. var _formel = document.getElementById("studyDetailS");
  4878. U.UF.F.windowZooming(_formel);
  4879. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4880. var _formel = document.getElementById("studioIndex");
  4881. U.UF.F.windowZooming(_formel);
  4882. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4883. var _formel = document.getElementById("studyDetailStudio");
  4884. U.UF.F.windowZooming(_formel);
  4885. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4886. var _formel = document.getElementById("studyDetailStudio");
  4887. U.UF.F.windowZooming(_formel);
  4888. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4889. var _formel = document.getElementById("studyDetailNT");
  4890. U.UF.F.windowZooming(_formel);
  4891. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4892. var _formel = document.getElementById("studyDetailS");
  4893. U.UF.F.windowZooming(_formel);
  4894. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4895. var _formel = document.getElementById("studyDetailS");
  4896. U.UF.F.topWindow(_formel);
  4897. } else if (e.data.tools && e.data.tools == "1") {
  4898. // U.MD.D.I.openApplication("whiteboard")
  4899. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4900. } else if (e.data.tools && e.data.tools == "2") {
  4901. U.MD.D.I.openApplication("note")
  4902. } else if (e.data.tools && e.data.tools == "3") {
  4903. // U.MD.D.I.openApplication("mind")
  4904. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4905. } else if (e.data.tools && e.data.tools == "4") {
  4906. U.MD.D.I.openApplication("investigation")
  4907. } else if (e.data.tools && e.data.tools == "6") {
  4908. // U.MD.D.I.openApplication("doc")
  4909. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4910. } else if (e.data.tools && e.data.tools == "7") {
  4911. // U.MD.D.I.openApplication("mindNetwork")
  4912. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4913. } else if (e.data.tools && e.data.tools == "8") {
  4914. U.MD.D.I.openApplication("library")
  4915. } else if (e.data.tools && e.data.tools == "17") {
  4916. U.MD.D.I.openApplication("stuLibrary")
  4917. } else if (e.data.tools && e.data.tools == "18") {
  4918. U.MD.D.I.openApplication("train")
  4919. } else if (e.data.tools && e.data.tools == "21") {
  4920. U.MD.D.I.openApplication("program")
  4921. } else if (e.data.tools && e.data.tools == "22") {
  4922. U.MD.D.I.openApplication("AIprogram2")
  4923. } else if (e.data.tools && e.data.tools == "23") {
  4924. U.MD.D.I.openApplication("Pythonprogram")
  4925. } else if (e.data.tools && e.data.tools == "24") {
  4926. U.MD.D.I.openApplication("AIprogram")
  4927. } else if (e.data.tools && e.data.tools == "25") {
  4928. U.MD.D.I.openApplication("sys")
  4929. } else if (e.data.tools && e.data.tools == "26") {
  4930. // U.MD.D.I.openApplication("courseDesign")
  4931. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4932. } else if (e.data.tools && e.data.tools == "31") {
  4933. U.MD.D.I.openApplication("netWorkPanel")
  4934. } else if (e.data.tools && e.data.tools == "32") {
  4935. U.MD.D.I.openApplication("codeEdit")
  4936. } else if (e.data.tools && e.data.tools == "57") {
  4937. U.MD.D.I.openApplication("CocoPi")
  4938. } else if (e.data.tools && e.data.tools == "63") {
  4939. U.MD.D.I.openApplication("Wood")
  4940. } else if (e.data.tools && e.data.tools == "58") {
  4941. U.MD.D.I.openApplication("car")
  4942. } else if (e.data.tools && e.data.tools == "59") {
  4943. U.MD.D.I.openApplication("lineSearch")
  4944. } else if (e.data.tools && e.data.tools == "60") {
  4945. U.MD.D.I.openApplication("deepLearning")
  4946. } else if (e.data.tools && e.data.tools == "61") {
  4947. U.MD.D.I.openApplication("allHistory")
  4948. } else if (e.data.tools && e.data.tools == "28") {
  4949. U.MD.D.I.openApplication("translation")
  4950. } else if (e.data.tools && e.data.tools == "37") {
  4951. U.MD.D.I.openApplication("mohe")
  4952. } else if (e.data.tools && e.data.tools == "38") {
  4953. U.MD.D.I.openApplication("24game")
  4954. } else if (e.data.tools && e.data.tools == "39") {
  4955. U.MD.D.I.openApplication("GeoGebra")
  4956. } else if (e.data.tools && e.data.tools == "43") {
  4957. U.MD.D.I.openApplication("studentEvaluate")
  4958. } else if (e.data.tools && e.data.tools == "44") {
  4959. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4960. } else if (e.data.tools && e.data.tools == "46") {
  4961. U.MD.D.I.openApplication("project")
  4962. } else if (e.data.tools && e.data.tools == "71") {
  4963. U.MD.D.I.openApplication("aigptCourse")
  4964. } else if (e.data.tools && e.data.tools == "72") {
  4965. U.MD.D.I.openInApplication("gptConfig", e.data.data)
  4966. } else if (e.data.tools && e.data.tools == "1s") {
  4967. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4968. } else if (e.data.tools && e.data.tools == "3s") {
  4969. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4970. } else if (e.data.tools && e.data.tools == "6s") {
  4971. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4972. } else if (e.data.tools && e.data.tools == "1studio") {
  4973. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4974. } else if (e.data.tools && e.data.tools == "3studio") {
  4975. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4976. } else if (e.data.tools && e.data.tools == "6studio") {
  4977. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4978. } else if (e.data.tools && e.data.tools == "3y") {
  4979. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4980. } else if (e.data.tools && e.data.tools == "1y") {
  4981. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4982. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4983. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4984. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4985. U.MD.D.I.openApplication("AIAnalyse")
  4986. } else if (e.data.tools && e.data.tools == "1teacher") {
  4987. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4988. } else if (e.data.tools && e.data.tools == "3teacher") {
  4989. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4990. } else if (e.data.tools && e.data.tools == "7teacher") {
  4991. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4992. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4993. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4994. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4995. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4996. } else if (e.data.tools && e.data.tools == "1E") {
  4997. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4998. } else if (e.data.tools && e.data.tools == "3E") {
  4999. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5000. } else if (e.data.tools && e.data.tools == "57y") {
  5001. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5002. } else if (e.data.tools && e.data.tools == "57u") {
  5003. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5004. } else if (e.data.tools && e.data.tools == "57teacher") {
  5005. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5006. } else if (e.data.tools && e.data.tools == "64") {
  5007. U.MD.D.I.openApplication("AIChat")
  5008. } else if (e.data.tools && e.data.tools == "66") {
  5009. U.MD.D.I.openApplication("formulaEdi")
  5010. } else if (e.data.tools && e.data.tools == "67") {
  5011. U.MD.D.I.openApplication("molStr")
  5012. } else if (e.data.tools && e.data.tools == "68") {
  5013. U.MD.D.I.openApplication("timeAxis")
  5014. } else if (e.data.tools && e.data.tools == "openCourse") {
  5015. let _data = {
  5016. typea: e.data.typea || '',
  5017. typeb: e.data.typeb || '',
  5018. typed: e.data.typed || '',
  5019. }
  5020. U.MD.D.I.openInApplication("index", _data)
  5021. } else if (e.data.tools && e.data.tools == "openDataClass") {
  5022. let _data = {
  5023. classid: e.data.classid || '',
  5024. }
  5025. U.MD.D.I.openInApplication("dataClass", _data)
  5026. } else if (e.data.tools && e.data.tools == "opencCscl") {
  5027. let _data = {
  5028. cid: e.data.cid || '',
  5029. gid: e.data.gid || '',
  5030. }
  5031. U.MD.D.I.openInApplication("opencCscl", _data)
  5032. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  5033. U.MD.D.I.openApplication("dataBoardTest")
  5034. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  5035. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  5036. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  5037. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  5038. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  5039. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  5040. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  5041. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  5042. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  5043. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  5044. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  5045. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  5046. }else if (e.data.tools && e.data.tools == "loginSz") {
  5047. U.MD.D.I.openInApplication("loginSz")
  5048. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  5049. if($('#classroom_observation_board')[0]){
  5050. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  5051. }
  5052. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  5053. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  5054. if($('#classroom_observation_ob_comment')[0]){
  5055. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  5056. }
  5057. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  5058. }else if (e.data.tools && e.data.tools == "logout"){
  5059. U.MD.U.LO.logoutSystem()
  5060. }else if (e.data.tools && e.data.tools == "getLogin"){
  5061. let _iframe = $('#UI_Login')[0];
  5062. if (_iframe) {
  5063. var userInfo = US.userInfo;
  5064. var type = 2
  5065. if(userInfo && userInfo.userid){
  5066. type = 1
  5067. }
  5068. _contentWindow = _iframe.contentWindow;
  5069. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  5070. }
  5071. }
  5072. });
  5073. U.MD.D.I.selectUser = function () {
  5074. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  5075. if (res.value[0].length > 0) {
  5076. US.userInfo = res.value[0][0];
  5077. $(".userName")[0].innerHTML = US.userInfo.username;
  5078. }
  5079. }, [], { "type": "GET", "withCredentials": true });
  5080. }
  5081. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  5082. var _userinfo = US.userInfo, //登录用户信息
  5083. _userid = US.userInfo.userid, //登录用户id
  5084. _oid = _userinfo.organizeid,
  5085. _type = US.userInfo.type,
  5086. _org = US.userInfo.org,
  5087. _role = US.userInfo.role,
  5088. _classId = US.userInfo.classid;
  5089. if (_type == 4) {
  5090. tType = 4
  5091. }
  5092. switch (str) {
  5093. case "studyDetailNT": //无终端模式
  5094. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5095. setTimeout(() => {
  5096. U.MD.U.L.login();
  5097. }, 2000);
  5098. } else {
  5099. _formdiv = new U.UF.UI.form(
  5100. "课程详情",
  5101. $$("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 }), {
  5102. "id": "studyDetailNT",
  5103. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5104. "onresize": function () { }
  5105. }, {
  5106. closecallback: function () { }
  5107. }, { "style": { "height": "36px" } }).form; //创建窗体
  5108. _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); } }
  5109. break;
  5110. }
  5111. case "studyDetail":
  5112. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5113. setTimeout(() => {
  5114. U.MD.U.L.login();
  5115. }, 2000);
  5116. } else {
  5117. _formdiv = new U.UF.UI.form(
  5118. "课程详情",
  5119. $$("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 }), {
  5120. "id": "studyDetail",
  5121. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5122. "onresize": function () { }
  5123. }, {
  5124. closecallback: function () { }
  5125. }, { "style": { "height": "36px" } }).form; //创建窗体
  5126. _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); } }
  5127. break;
  5128. }
  5129. case "studyDetailTrain":
  5130. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5131. setTimeout(() => {
  5132. U.MD.U.L.login();
  5133. }, 2000);
  5134. } else {
  5135. _formdiv = new U.UF.UI.form(
  5136. "培训详情",
  5137. $$("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 }), {
  5138. "id": "studyDetailTrain",
  5139. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5140. "onresize": function () { }
  5141. }, {
  5142. closecallback: function () { }
  5143. }, { "style": { "height": "36px" } }).form; //创建窗体
  5144. _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); } }
  5145. break;
  5146. }
  5147. case "studyDetailS":
  5148. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5149. setTimeout(() => {
  5150. U.MD.U.L.login();
  5151. }, 2000);
  5152. } else {
  5153. _formdiv = new U.UF.UI.form(
  5154. "项目详情",
  5155. $$("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 }), {
  5156. "id": "studyDetailS",
  5157. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5158. "onresize": function () { }
  5159. }, {
  5160. closecallback: function () { }
  5161. }, { "style": { "height": "36px" } }).form; //创建窗体
  5162. _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); } }
  5163. break;
  5164. }
  5165. case "studyDetailStudio":
  5166. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5167. setTimeout(() => {
  5168. U.MD.U.L.login();
  5169. }, 2000);
  5170. } else {
  5171. _formdiv = new U.UF.UI.form(
  5172. "工作详情",
  5173. $$("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 }), {
  5174. "id": "studyDetailStudio",
  5175. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5176. "onresize": function () { }
  5177. }, {
  5178. closecallback: function () { }
  5179. }, { "style": { "height": "36px" } }).form; //创建窗体
  5180. _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); } }
  5181. break;
  5182. }
  5183. case "studyDetailS5":
  5184. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5185. setTimeout(() => {
  5186. U.MD.U.L.login();
  5187. }, 2000);
  5188. } else {
  5189. _formdiv = new U.UF.UI.form(
  5190. "项目详情",
  5191. $$("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 }), {
  5192. "id": "studyDetailS",
  5193. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5194. "onresize": function () { }
  5195. }, {
  5196. closecallback: function () { }
  5197. }, { "style": { "height": "36px" } }).form; //创建窗体
  5198. _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); } }
  5199. break;
  5200. }
  5201. case "studyDetailGM":
  5202. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5203. setTimeout(() => {
  5204. U.MD.U.L.login();
  5205. }, 2000);
  5206. } else {
  5207. _formdiv = new U.UF.UI.form(
  5208. "课程详情",
  5209. $$("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 }), {
  5210. "id": "studyDetail",
  5211. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5212. "onresize": function () { }
  5213. }, {
  5214. closecallback: function () { }
  5215. }, { "style": { "height": "36px" } }).form; //创建窗体
  5216. _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); } }
  5217. break;
  5218. }
  5219. case "hanUrl":
  5220. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5221. setTimeout(() => {
  5222. U.MD.U.L.login();
  5223. }, 2000);
  5224. } else {
  5225. _formdiv = new U.UF.UI.form(
  5226. "汉字宫",
  5227. $$("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" }), {
  5228. "id": "hanUrl",
  5229. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5230. "onresize": function () { }
  5231. }, {
  5232. closecallback: function () { }
  5233. }, { "style": { "height": "36px" } }).form; //创建窗体
  5234. _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); } }
  5235. break;
  5236. }
  5237. case "index":
  5238. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5239. setTimeout(() => {
  5240. U.MD.U.L.login();
  5241. }, 2000);
  5242. } else {
  5243. _formdiv = new U.UF.UI.form(
  5244. "课程中心",
  5245. $$("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 }), {
  5246. "id": "study",
  5247. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5248. "onresize": function () { }
  5249. }, {
  5250. closecallback: function () { }
  5251. }, { "style": { "height": "36px" } }).form; //创建窗体
  5252. _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); } }
  5253. break;
  5254. }
  5255. case "dataClass":
  5256. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5257. setTimeout(() => {
  5258. U.MD.U.L.login();
  5259. }, 2000);
  5260. } else {
  5261. _formdiv = new U.UF.UI.form(
  5262. "数据报告",
  5263. $$("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 }), {
  5264. "id": "dataClass",
  5265. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5266. "onresize": function () { }
  5267. }, {
  5268. closecallback: function () { }
  5269. }, { "style": { "height": "36px" } }).form; //创建窗体
  5270. _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); } }
  5271. break;
  5272. }
  5273. case "opencCscl":
  5274. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5275. setTimeout(() => {
  5276. U.MD.U.L.login();
  5277. }, 2000);
  5278. } else {
  5279. _formdiv = new U.UF.UI.form(
  5280. "协同建构",
  5281. $$("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 }), {
  5282. "id": "futureClass",
  5283. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5284. "onresize": function () { }
  5285. }, {
  5286. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5287. }, { "style": { "height": "36px" } }).form; //创建窗体
  5288. _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); } }
  5289. break;
  5290. }
  5291. case "openCourseUpdate":
  5292. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5293. setTimeout(() => {
  5294. U.MD.U.L.login();
  5295. }, 2000);
  5296. } else {
  5297. _formdiv = new U.UF.UI.form(
  5298. "课程管理",
  5299. $$("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 }), {
  5300. "id": "openCourseUpdate",
  5301. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5302. "onresize": function () { }
  5303. }, {
  5304. closecallback: function () { }
  5305. }, { "style": { "height": "36px" } }).form; //创建窗体
  5306. break;
  5307. }
  5308. case "openNewCourseUpdate":
  5309. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5310. setTimeout(() => {
  5311. U.MD.U.L.login();
  5312. }, 2000);
  5313. } else {
  5314. _formdiv = new U.UF.UI.form(
  5315. "课程管理",
  5316. $$("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 }), {
  5317. "id": "openCourseUpdate",
  5318. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5319. "onresize": function () { }
  5320. }, {
  5321. closecallback: function () { }
  5322. }, { "style": { "height": "36px" } }).form; //创建窗体
  5323. break;
  5324. }
  5325. case "openCourseEUpdate":
  5326. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5327. setTimeout(() => {
  5328. U.MD.U.L.login();
  5329. }, 2000);
  5330. } else {
  5331. _formdiv = new U.UF.UI.form(
  5332. "课程管理",
  5333. $$("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 }), {
  5334. "id": "openCourseUpdate",
  5335. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5336. "onresize": function () { }
  5337. }, {
  5338. closecallback: function () { }
  5339. }, { "style": { "height": "36px" } }).form; //创建窗体
  5340. break;
  5341. }
  5342. case "openCourseAiUpdate":
  5343. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5344. setTimeout(() => {
  5345. U.MD.U.L.login();
  5346. }, 2000);
  5347. } else {
  5348. _formdiv = new U.UF.UI.form(
  5349. "课程管理",
  5350. $$("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 }), {
  5351. "id": "openCourseUpdate",
  5352. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5353. "onresize": function () { }
  5354. }, {
  5355. closecallback: function () { }
  5356. }, { "style": { "height": "36px" } }).form; //创建窗体
  5357. break;
  5358. }
  5359. case "openCourseAiUpdate2":
  5360. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5361. setTimeout(() => {
  5362. U.MD.U.L.login();
  5363. }, 2000);
  5364. } else {
  5365. _formdiv = new U.UF.UI.form(
  5366. "课程管理",
  5367. $$("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 }), {
  5368. "id": "openCourseUpdate",
  5369. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5370. "onresize": function () { }
  5371. }, {
  5372. closecallback: function () { }
  5373. }, { "style": { "height": "36px" } }).form; //创建窗体
  5374. break;
  5375. }
  5376. case "openCourseNewUpdate":
  5377. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5378. setTimeout(() => {
  5379. U.MD.U.L.login();
  5380. }, 2000);
  5381. } else {
  5382. _formdiv = new U.UF.UI.form(
  5383. "课程管理",
  5384. $$("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 }), {
  5385. "id": "openCourseUpdate",
  5386. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5387. "onresize": function () { }
  5388. }, {
  5389. closecallback: function () { }
  5390. }, { "style": { "height": "36px" } }).form; //创建窗体
  5391. break;
  5392. }
  5393. case "inviteLoginSz":
  5394. _formdiv = new U.UF.UI.form(
  5395. "随机码登录",
  5396. $$("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 }), {
  5397. "id": "loginSz",
  5398. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5399. "onresize": function () { }
  5400. }, {
  5401. closecallback: function () { }
  5402. }, { "style": { "height": "36px" } }).form; //创建窗体
  5403. break;
  5404. case "loginSz":
  5405. _formdiv = new U.UF.UI.form(
  5406. "教师登录",
  5407. $$("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" }), {
  5408. "id": "loginSz",
  5409. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5410. "onresize": function () { }
  5411. }, {
  5412. closecallback: function () { }
  5413. }, { "style": { "height": "36px" } }).form; //创建窗体
  5414. break;
  5415. case "teacher":
  5416. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5417. setTimeout(() => {
  5418. U.MD.U.L.login();
  5419. }, 2000);
  5420. } else {
  5421. _formdiv = new U.UF.UI.form(
  5422. "教师管理",
  5423. $$("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 }), {
  5424. "id": "teacher",
  5425. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5426. "onresize": function () { }
  5427. }, {
  5428. closecallback: function () { }
  5429. }, { "style": { "height": "36px" } }).form; //创建窗体
  5430. break;
  5431. }
  5432. case "dataBoardSZArea":
  5433. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5434. setTimeout(() => {
  5435. U.MD.U.L.login();
  5436. }, 2000);
  5437. } else {
  5438. _formdiv = new U.UF.UI.form(
  5439. "综合数据看板",
  5440. $$("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 }), {
  5441. "id": "dataBoardSZArea",
  5442. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5443. "onresize": function () { }
  5444. }, {
  5445. closecallback: function () { }
  5446. }, { "style": { "height": "36px" } }).form; //创建窗体
  5447. break;
  5448. }
  5449. case "dataBoardSZCity":
  5450. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5451. setTimeout(() => {
  5452. U.MD.U.L.login();
  5453. }, 2000);
  5454. } else {
  5455. _formdiv = new U.UF.UI.form(
  5456. "综合数据看板",
  5457. $$("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 }), {
  5458. "id": "dataBoardSZCity",
  5459. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5460. "onresize": function () { }
  5461. }, {
  5462. closecallback: function () { }
  5463. }, { "style": { "height": "36px" } }).form; //创建窗体
  5464. break;
  5465. }
  5466. case "classroom_observation_board":
  5467. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5468. setTimeout(() => {
  5469. U.MD.U.L.login();
  5470. }, 2000);
  5471. } else {
  5472. _formdiv = new U.UF.UI.form(
  5473. "课堂观察",
  5474. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_board?tid="+data }), {
  5475. "id": "classroom_observation_board",
  5476. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5477. "onresize": function () { }
  5478. }, {
  5479. closecallback: function () { }
  5480. }, { "style": { "height": "36px" } }).form; //创建窗体
  5481. break;
  5482. }
  5483. case "classroom_observation_ob_comment":
  5484. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5485. setTimeout(() => {
  5486. U.MD.U.L.login();
  5487. }, 2000);
  5488. } else {
  5489. _formdiv = new U.UF.UI.form(
  5490. "课堂审核",
  5491. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_ob_comment?tid="+data }), {
  5492. "id": "classroom_observation_ob_comment",
  5493. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5494. "onresize": function () { }
  5495. }, {
  5496. closecallback: function () { }
  5497. }, { "style": { "height": "36px" } }).form; //创建窗体
  5498. break;
  5499. }
  5500. case "gptConfig":
  5501. _formdiv = new U.UF.UI.form(
  5502. data.name ? data.name : "应用中心",
  5503. $$("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 }), {
  5504. "id": "gptConfig" + data.id,
  5505. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5506. "onresize": function () { }
  5507. }, {
  5508. closecallback: function () { }
  5509. }, { "style": { "height": "36px" } }).form; //创建窗体
  5510. break;
  5511. }
  5512. }
  5513. U.MD.D.I.openApplication = function (str, obj, info) {
  5514. obj = obj || {};
  5515. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5516. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5517. _userinfo = US.userInfo, //登录用户信息
  5518. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5519. _oid = obj.organizeid || _userinfo.organizeid,
  5520. _type = US.userInfo.type,
  5521. _org = US.userInfo.org,
  5522. _role = US.userInfo.role,
  5523. _classId = US.userInfo.classid,
  5524. _TscreenType = 1
  5525. _screenType = 2,
  5526. _SscreenType = 3;
  5527. let iframeBool = true
  5528. if(U.UF.UI.form.allForm[str]){
  5529. iframeBool = false
  5530. }
  5531. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5532. return;
  5533. }
  5534. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5535. switch (str) {
  5536. case "studnetProject": //好友打开
  5537. _formdiv = new U.UF.UI.form(
  5538. "我的项目",
  5539. $$("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 }), {
  5540. "id": "studnetProject",
  5541. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5542. "onresize": function () { }
  5543. }, {
  5544. closecallback: function () { }
  5545. }, { "style": { "height": "36px" } }).form; //创建窗体
  5546. _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); } }
  5547. break;
  5548. case "studentEvaluate": //好友打开
  5549. _formdiv = new U.UF.UI.form(
  5550. "我的评价",
  5551. $$("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 }), {
  5552. "id": "studentEvaluate",
  5553. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5554. "onresize": function () { }
  5555. }, {
  5556. closecallback: function () { }
  5557. }, { "style": { "height": "36px" } }).form; //创建窗体
  5558. _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); } }
  5559. break;
  5560. case "my":
  5561. _formdiv = new U.UF.UI.form(
  5562. "我的资料",
  5563. $$("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 }), {
  5564. "id": "my",
  5565. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5566. "onresize": function () { }
  5567. }, {
  5568. closecallback: function () { }
  5569. }, { "style": { "height": "36px" } }).form; //创建窗体
  5570. _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); } }
  5571. break;
  5572. case "program":
  5573. _formdiv = new U.UF.UI.form(
  5574. "编程平台",
  5575. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5576. "id": "program",
  5577. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5578. "onresize": function () { }
  5579. }, {
  5580. closecallback: function () { }
  5581. }, { "style": { "height": "36px" } }).form; //创建窗体
  5582. _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); } }
  5583. break;
  5584. case "library":
  5585. _formdiv = new U.UF.UI.form(
  5586. "素材库",
  5587. $$("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 }), {
  5588. "id": "library",
  5589. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5590. "onresize": function () { }
  5591. }, {
  5592. closecallback: function () { }
  5593. }, { "style": { "height": "36px" } }).form; //创建窗体
  5594. _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); } }
  5595. break;
  5596. case "whiteboard":
  5597. _formdiv = new U.UF.UI.form(
  5598. "电子白板",
  5599. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5600. "id": "whiteboard",
  5601. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5602. "onresize": function () { }
  5603. }, {
  5604. closecallback: function () { }
  5605. }, { "style": { "height": "36px" } }).form; //创建窗体
  5606. _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); } }
  5607. break;
  5608. case "investigation":
  5609. _formdiv = new U.UF.UI.form(
  5610. "问卷调查",
  5611. $$("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 }), {
  5612. "id": "investigation",
  5613. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5614. "onresize": function () { }
  5615. }, {
  5616. closecallback: function () { }
  5617. }, { "style": { "height": "36px" } }).form; //创建窗体
  5618. _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); } }
  5619. break;
  5620. case "note":
  5621. _formdiv = new U.UF.UI.form(
  5622. "便签分类",
  5623. $$("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 }), {
  5624. "id": "note",
  5625. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5626. "onresize": function () { }
  5627. }, {
  5628. closecallback: function () { }
  5629. }, { "style": { "height": "36px" } }).form; //创建窗体
  5630. _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); } }
  5631. break;
  5632. // case "score":
  5633. // _formdiv = new U.UF.UI.form(
  5634. // "量规评分",
  5635. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5636. // "id": "score",
  5637. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5638. // "onresize": function() {}
  5639. // }, {
  5640. // closecallback: function() {}
  5641. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5642. // _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); } }
  5643. // break;
  5644. case "mind":
  5645. _formdiv = new U.UF.UI.form(
  5646. "思维导图",
  5647. $$("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"
  5648. "id": "mind",
  5649. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5650. "onresize": function () { }
  5651. }, {
  5652. closecallback: function () { }
  5653. }, { "style": { "height": "36px" } }).form; //创建窗体
  5654. _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); } }
  5655. break;
  5656. case "doc":
  5657. // U.MD.D.I.isRoom();
  5658. _formdiv = new U.UF.UI.form(
  5659. "协同文档",
  5660. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5661. "id": "doc",
  5662. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5663. "onresize": function () { }
  5664. }, {
  5665. closecallback: function () { }
  5666. }, { "style": { "height": "36px" } }).form; //创建窗体
  5667. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5668. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5669. // })
  5670. _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); } }
  5671. break;
  5672. case "studentStudy":
  5673. _formdiv = new U.UF.UI.form(
  5674. "课程中心",
  5675. $$("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
  5676. "id": "studentStudy",
  5677. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5678. "onresize": function () { }
  5679. }, {
  5680. closecallback: function () { }
  5681. }, { "style": { "height": "36px" } }).form; //创建窗体
  5682. _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); } }
  5683. break;
  5684. case "train": //好友打开
  5685. _formdiv = new U.UF.UI.form(
  5686. "训练平台",
  5687. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5688. "id": "train",
  5689. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5690. "onresize": function () { }
  5691. }, {
  5692. closecallback: function () { }
  5693. }, { "style": { "height": "36px" } }).form; //创建窗体
  5694. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5695. break;
  5696. case "mindNetwork": //好友打开
  5697. _formdiv = new U.UF.UI.form(
  5698. "思维网格",
  5699. $$("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 }), {
  5700. "id": "mindNetwork",
  5701. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5702. "onresize": function () { }
  5703. }, {
  5704. closecallback: function () { }
  5705. }, { "style": { "height": "36px" } }).form; //创建窗体
  5706. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5707. break;
  5708. case "studentClassRoom": //好友打开
  5709. _formdiv = new U.UF.UI.form(
  5710. "实时课堂",
  5711. $$("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 }), {
  5712. "id": "studentClassRoom",
  5713. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5714. "onresize": function () { }
  5715. }, {
  5716. closecallback: function () { }
  5717. }, { "style": { "height": "36px" } }).form; //创建窗体
  5718. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5719. setTimeout(() => {
  5720. U.UF.F.windowZooming(_formdiv)
  5721. }, 0);
  5722. break;
  5723. }
  5724. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5725. switch (str) {
  5726. case "studnetProject": //好友打开
  5727. _formdiv = new U.UF.UI.form(
  5728. "我的项目",
  5729. $$("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 }), {
  5730. "id": "studnetProject",
  5731. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5732. "onresize": function () { }
  5733. }, {
  5734. closecallback: function () { }
  5735. }, { "style": { "height": "36px" } }).form; //创建窗体
  5736. _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); } }
  5737. break;
  5738. case "studentEvaluate": //好友打开
  5739. _formdiv = new U.UF.UI.form(
  5740. "我的评价",
  5741. $$("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 }), {
  5742. "id": "studentEvaluate",
  5743. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5744. "onresize": function () { }
  5745. }, {
  5746. closecallback: function () { }
  5747. }, { "style": { "height": "36px" } }).form; //创建窗体
  5748. _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); } }
  5749. break;
  5750. case "my":
  5751. _formdiv = new U.UF.UI.form(
  5752. "我的资料",
  5753. $$("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 }), {
  5754. "id": "my",
  5755. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5756. "onresize": function () { }
  5757. }, {
  5758. closecallback: function () { }
  5759. }, { "style": { "height": "36px" } }).form; //创建窗体
  5760. _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); } }
  5761. break;
  5762. case "program":
  5763. _formdiv = new U.UF.UI.form(
  5764. "编程平台",
  5765. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5766. "id": "program",
  5767. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5768. "onresize": function () { }
  5769. }, {
  5770. closecallback: function () { }
  5771. }, { "style": { "height": "36px" } }).form; //创建窗体
  5772. _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); } }
  5773. break;
  5774. case "library":
  5775. _formdiv = new U.UF.UI.form(
  5776. "素材库",
  5777. $$("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 }), {
  5778. "id": "library",
  5779. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5780. "onresize": function () { }
  5781. }, {
  5782. closecallback: function () { }
  5783. }, { "style": { "height": "36px" } }).form; //创建窗体
  5784. _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); } }
  5785. break;
  5786. case "whiteboard":
  5787. _formdiv = new U.UF.UI.form(
  5788. "电子白板",
  5789. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5790. "id": "whiteboard",
  5791. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5792. "onresize": function () { }
  5793. }, {
  5794. closecallback: function () { }
  5795. }, { "style": { "height": "36px" } }).form; //创建窗体
  5796. _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); } }
  5797. break;
  5798. case "investigation":
  5799. _formdiv = new U.UF.UI.form(
  5800. "问卷调查",
  5801. $$("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 }), {
  5802. "id": "investigation",
  5803. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5804. "onresize": function () { }
  5805. }, {
  5806. closecallback: function () { }
  5807. }, { "style": { "height": "36px" } }).form; //创建窗体
  5808. _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); } }
  5809. break;
  5810. case "note":
  5811. _formdiv = new U.UF.UI.form(
  5812. "便签分类",
  5813. $$("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 }), {
  5814. "id": "note",
  5815. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5816. "onresize": function () { }
  5817. }, {
  5818. closecallback: function () { }
  5819. }, { "style": { "height": "36px" } }).form; //创建窗体
  5820. _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); } }
  5821. break;
  5822. // case "score":
  5823. // _formdiv = new U.UF.UI.form(
  5824. // "量规评分",
  5825. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5826. // "id": "score",
  5827. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5828. // "onresize": function() {}
  5829. // }, {
  5830. // closecallback: function() {}
  5831. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5832. // _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); } }
  5833. // break;
  5834. case "mind":
  5835. _formdiv = new U.UF.UI.form(
  5836. "思维导图",
  5837. $$("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"
  5838. "id": "mind",
  5839. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5840. "onresize": function () { }
  5841. }, {
  5842. closecallback: function () { }
  5843. }, { "style": { "height": "36px" } }).form; //创建窗体
  5844. _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); } }
  5845. break;
  5846. case "doc":
  5847. // U.MD.D.I.isRoom();
  5848. _formdiv = new U.UF.UI.form(
  5849. "协同文档",
  5850. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5851. "id": "doc",
  5852. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5853. "onresize": function () { }
  5854. }, {
  5855. closecallback: function () { }
  5856. }, { "style": { "height": "36px" } }).form; //创建窗体
  5857. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5858. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5859. })
  5860. _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); } }
  5861. break;
  5862. case "train": //好友打开
  5863. _formdiv = new U.UF.UI.form(
  5864. "训练平台",
  5865. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5866. "id": "train",
  5867. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5868. "onresize": function () { }
  5869. }, {
  5870. closecallback: function () { }
  5871. }, { "style": { "height": "36px" } }).form; //创建窗体
  5872. _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); } }
  5873. break;
  5874. case "studentStudy":
  5875. _formdiv = new U.UF.UI.form(
  5876. "课程中心",
  5877. $$("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
  5878. "id": "studentStudy",
  5879. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5880. "onresize": function () { }
  5881. }, {
  5882. closecallback: function () { }
  5883. }, { "style": { "height": "36px" } }).form; //创建窗体
  5884. _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); } }
  5885. break;
  5886. case "mindNetwork": //好友打开
  5887. _formdiv = new U.UF.UI.form(
  5888. "思维网格",
  5889. $$("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 }), {
  5890. "id": "mindNetwork",
  5891. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5892. "onresize": function () { }
  5893. }, {
  5894. closecallback: function () { }
  5895. }, { "style": { "height": "36px" } }).form; //创建窗体
  5896. _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); } }
  5897. break;
  5898. case "studentClassRoom": //好友打开
  5899. _formdiv = new U.UF.UI.form(
  5900. "实时课堂",
  5901. $$("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 }), {
  5902. "id": "studentClassRoom",
  5903. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5904. "onresize": function () { }
  5905. }, {
  5906. closecallback: function () { }
  5907. }, { "style": { "height": "36px" } }).form; //创建窗体
  5908. _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); } }
  5909. setTimeout(() => {
  5910. U.UF.F.windowZooming(_formdiv)
  5911. }, 0);
  5912. break;
  5913. }
  5914. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5915. //选择应用处理
  5916. switch (str) {
  5917. case "project": //好友打开
  5918. _formdiv = new U.UF.UI.form(
  5919. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5920. $$("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 }), {
  5921. "id": "project",
  5922. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5923. "onresize": function () { }
  5924. }, {
  5925. closecallback: function () { }
  5926. }, { "style": { "height": "36px" } }).form; //创建窗体
  5927. _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); } }
  5928. break;
  5929. case "student":
  5930. _formdiv = new U.UF.UI.form(
  5931. "学生管理",
  5932. $$("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 }), {
  5933. "id": "student",
  5934. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5935. "onresize": function () { }
  5936. }, {
  5937. closecallback: function () { }
  5938. }, { "style": { "height": "36px" } }).form; //创建窗体
  5939. _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); } }
  5940. break;
  5941. case "evaluate":
  5942. _formdiv = new U.UF.UI.form(
  5943. "学生评价",
  5944. $$("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 }), {
  5945. "id": "evaluate",
  5946. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5947. "onresize": function () { }
  5948. }, {
  5949. closecallback: function () { }
  5950. }, { "style": { "height": "36px" } }).form; //创建窗体
  5951. _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); } }
  5952. break;
  5953. case "sys":
  5954. _formdiv = new U.UF.UI.form(
  5955. "目标管理",
  5956. $$("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 }), {
  5957. "id": "sys",
  5958. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5959. "onresize": function () { }
  5960. }, {
  5961. closecallback: function () { }
  5962. }, { "style": { "height": "36px" } }).form; //创建窗体
  5963. _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); } }
  5964. break;
  5965. case "courseDesign":
  5966. _formdiv = new U.UF.UI.form(
  5967. "项目设计",
  5968. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5969. "id": "courseDesign",
  5970. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5971. "onresize": function () { }
  5972. }, {
  5973. closecallback: function () { }
  5974. }, { "style": { "height": "36px" } }).form; //创建窗体
  5975. _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); } }
  5976. break;
  5977. case "program":
  5978. _formdiv = new U.UF.UI.form(
  5979. "编程平台",
  5980. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5981. "id": "program",
  5982. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5983. "onresize": function () { }
  5984. }, {
  5985. closecallback: function () { }
  5986. }, { "style": { "height": "36px" } }).form; //创建窗体
  5987. _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); } }
  5988. break;
  5989. case "class":
  5990. _formdiv = new U.UF.UI.form(
  5991. "班级管理",
  5992. $$("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 }), {
  5993. "id": "class",
  5994. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5995. "onresize": function () { }
  5996. }, {
  5997. closecallback: function () { }
  5998. }, { "style": { "height": "36px" } }).form; //创建窗体
  5999. _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); } }
  6000. break;
  6001. case "Grade":
  6002. _formdiv = new U.UF.UI.form(
  6003. "年级管理",
  6004. $$("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 }), {
  6005. "id": "Grade",
  6006. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6007. "onresize": function () { }
  6008. }, {
  6009. closecallback: function () { }
  6010. }, { "style": { "height": "36px" } }).form; //创建窗体
  6011. _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); } }
  6012. break;
  6013. case "teacherOffice":
  6014. _formdiv = new U.UF.UI.form(
  6015. "教研室",
  6016. $$("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 }), {
  6017. "id": "teacherOffice",
  6018. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6019. "onresize": function () { }
  6020. }, {
  6021. closecallback: function () { }
  6022. }, { "style": { "height": "36px" } }).form; //创建窗体
  6023. _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); } }
  6024. break;
  6025. case "my":
  6026. _formdiv = new U.UF.UI.form(
  6027. "我的资料",
  6028. $$("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 }), {
  6029. "id": "my",
  6030. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6031. "onresize": function () { }
  6032. }, {
  6033. closecallback: function () { }
  6034. }, { "style": { "height": "36px" } }).form; //创建窗体
  6035. _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); } }
  6036. break;
  6037. case "notice":
  6038. _formdiv = new U.UF.UI.form(
  6039. "通知公告",
  6040. $$("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 }), {
  6041. "id": "notice",
  6042. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6043. "onresize": function () { }
  6044. }, {
  6045. closecallback: function () { }
  6046. }, { "style": { "height": "36px" } }).form; //创建窗体
  6047. _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); } }
  6048. break;
  6049. case "library":
  6050. _formdiv = new U.UF.UI.form(
  6051. "素材库",
  6052. $$("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 }), {
  6053. "id": "library",
  6054. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6055. "onresize": function () { }
  6056. }, {
  6057. closecallback: function () { }
  6058. }, { "style": { "height": "36px" } }).form; //创建窗体
  6059. _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); } }
  6060. break;
  6061. case "whiteboard":
  6062. _formdiv = new U.UF.UI.form(
  6063. "电子白板",
  6064. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6065. "id": "whiteboard",
  6066. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6067. "onresize": function () { }
  6068. }, {
  6069. closecallback: function () { }
  6070. }, { "style": { "height": "36px" } }).form; //创建窗体
  6071. _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); } }
  6072. break;
  6073. case "investigation":
  6074. _formdiv = new U.UF.UI.form(
  6075. "问卷调查",
  6076. $$("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 }), {
  6077. "id": "investigation",
  6078. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6079. "onresize": function () { }
  6080. }, {
  6081. closecallback: function () { }
  6082. }, { "style": { "height": "36px" } }).form; //创建窗体
  6083. _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); } }
  6084. break;
  6085. case "note":
  6086. _formdiv = new U.UF.UI.form(
  6087. "便签分类",
  6088. $$("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 }), {
  6089. "id": "note",
  6090. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6091. "onresize": function () { }
  6092. }, {
  6093. closecallback: function () { }
  6094. }, { "style": { "height": "36px" } }).form; //创建窗体
  6095. _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); } }
  6096. break;
  6097. // case "score":
  6098. // _formdiv = new U.UF.UI.form(
  6099. // "量规评分",
  6100. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6101. // "id": "score",
  6102. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6103. // "onresize": function() {}
  6104. // }, {
  6105. // closecallback: function() {}
  6106. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6107. // _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); } }
  6108. // break;
  6109. case "mind":
  6110. _formdiv = new U.UF.UI.form(
  6111. "思维导图",
  6112. $$("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"
  6113. "id": "mind",
  6114. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6115. "onresize": function () { }
  6116. }, {
  6117. closecallback: function () { }
  6118. }, { "style": { "height": "36px" } }).form; //创建窗体
  6119. _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); } }
  6120. break;
  6121. case "doc":
  6122. // U.MD.D.I.isRoom();
  6123. _formdiv = new U.UF.UI.form(
  6124. "协同文档",
  6125. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6126. "id": "doc",
  6127. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6128. "onresize": function () { }
  6129. }, {
  6130. closecallback: function () { }
  6131. }, { "style": { "height": "36px" } }).form; //创建窗体
  6132. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6133. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6134. })
  6135. _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); } }
  6136. break;
  6137. case "study":
  6138. _formdiv = new U.UF.UI.form(
  6139. "课程中心",
  6140. $$("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
  6141. "id": "study",
  6142. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6143. "onresize": function () { }
  6144. }, {
  6145. closecallback: function () { }
  6146. }, { "style": { "height": "36px" } }).form; //创建窗体
  6147. _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); } }
  6148. break;
  6149. case "mindNetwork": //好友打开
  6150. _formdiv = new U.UF.UI.form(
  6151. "思维网格",
  6152. $$("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 }), {
  6153. "id": "mindNetwork",
  6154. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6155. "onresize": function () { }
  6156. }, {
  6157. closecallback: function () { }
  6158. }, { "style": { "height": "36px" } }).form; //创建窗体
  6159. _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); } }
  6160. break;
  6161. case "train": //好友打开
  6162. _formdiv = new U.UF.UI.form(
  6163. "训练平台",
  6164. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6165. "id": "mindNetwork",
  6166. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6167. "onresize": function () { }
  6168. }, {
  6169. closecallback: function () { }
  6170. }, { "style": { "height": "36px" } }).form; //创建窗体
  6171. _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); } }
  6172. break;
  6173. case "teacherClassRoom": //好友打开
  6174. _formdiv = new U.UF.UI.form(
  6175. "实时课堂",
  6176. $$("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 }), {
  6177. "id": "teacherClassRoom",
  6178. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6179. "onresize": function () { }
  6180. }, {
  6181. closecallback: function () { }
  6182. }, { "style": { "height": "36px" } }).form; //创建窗体
  6183. _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); } }
  6184. setTimeout(() => {
  6185. U.UF.F.windowZooming(_formdiv)
  6186. }, 0);
  6187. break;
  6188. }
  6189. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6190. switch (str) {
  6191. case "project": //好友打开
  6192. _formdiv = new U.UF.UI.form(
  6193. "课程管理",
  6194. $$("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 }), {
  6195. "id": "project",
  6196. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6197. "onresize": function () { }
  6198. }, {
  6199. closecallback: function () { }
  6200. }, { "style": { "height": "36px" } }).form; //创建窗体
  6201. _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); } }
  6202. break;
  6203. case "evaluate":
  6204. _formdiv = new U.UF.UI.form(
  6205. "学生评价",
  6206. $$("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 }), {
  6207. "id": "evaluate",
  6208. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6209. "onresize": function () { }
  6210. }, {
  6211. closecallback: function () { }
  6212. }, { "style": { "height": "36px" } }).form; //创建窗体
  6213. _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); } }
  6214. break;
  6215. case "notice":
  6216. _formdiv = new U.UF.UI.form(
  6217. "通知公告",
  6218. $$("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 }), {
  6219. "id": "notice",
  6220. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6221. "onresize": function () { }
  6222. }, {
  6223. closecallback: function () { }
  6224. }, { "style": { "height": "36px" } }).form; //创建窗体
  6225. _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); } }
  6226. break;
  6227. case "stuLibrary":
  6228. _formdiv = new U.UF.UI.form(
  6229. "学习资料",
  6230. $$("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 }), {
  6231. "id": "stuLibrary",
  6232. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6233. "onresize": function () { }
  6234. }, {
  6235. closecallback: function () { }
  6236. }, { "style": { "height": "36px" } }).form; //创建窗体
  6237. _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); } }
  6238. break;
  6239. case "program":
  6240. _formdiv = new U.UF.UI.form(
  6241. "编程平台",
  6242. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6243. "id": "program",
  6244. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6245. "onresize": function () { }
  6246. }, {
  6247. closecallback: function () { }
  6248. }, { "style": { "height": "36px" } }).form; //创建窗体
  6249. _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); } }
  6250. break;
  6251. case "whiteboard":
  6252. _formdiv = new U.UF.UI.form(
  6253. "电子白板",
  6254. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6255. "id": "whiteboard",
  6256. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6257. "onresize": function () { }
  6258. }, {
  6259. closecallback: function () { }
  6260. }, { "style": { "height": "36px" } }).form; //创建窗体
  6261. _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); } }
  6262. break;
  6263. case "investigation":
  6264. _formdiv = new U.UF.UI.form(
  6265. "问卷调查",
  6266. $$("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 }), {
  6267. "id": "investigation",
  6268. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6269. "onresize": function () { }
  6270. }, {
  6271. closecallback: function () { }
  6272. }, { "style": { "height": "36px" } }).form; //创建窗体
  6273. _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); } }
  6274. break;
  6275. case "mind":
  6276. _formdiv = new U.UF.UI.form(
  6277. "思维导图",
  6278. $$("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"
  6279. "id": "mind",
  6280. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6281. "onresize": function () { }
  6282. }, {
  6283. closecallback: function () { }
  6284. }, { "style": { "height": "36px" } }).form; //创建窗体
  6285. _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); } }
  6286. break;
  6287. case "doc":
  6288. // U.MD.D.I.isRoom();
  6289. _formdiv = new U.UF.UI.form(
  6290. "协同文档",
  6291. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6292. "id": "doc",
  6293. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6294. "onresize": function () { }
  6295. }, {
  6296. closecallback: function () { }
  6297. }, { "style": { "height": "36px" } }).form; //创建窗体
  6298. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6299. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6300. })
  6301. _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); } }
  6302. break;
  6303. case "study":
  6304. _formdiv = new U.UF.UI.form(
  6305. "课程中心",
  6306. $$("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
  6307. "id": "study",
  6308. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6309. "onresize": function () { }
  6310. }, {
  6311. closecallback: function () { }
  6312. }, { "style": { "height": "36px" } }).form; //创建窗体
  6313. _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); } }
  6314. break;
  6315. case "mindNetwork": //好友打开
  6316. _formdiv = new U.UF.UI.form(
  6317. "思维网格",
  6318. $$("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 }), {
  6319. "id": "mindNetwork",
  6320. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6321. "onresize": function () { }
  6322. }, {
  6323. closecallback: function () { }
  6324. }, { "style": { "height": "36px" } }).form; //创建窗体
  6325. _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); } }
  6326. break;
  6327. case "train": //好友打开
  6328. _formdiv = new U.UF.UI.form(
  6329. "训练平台",
  6330. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6331. "id": "train",
  6332. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6333. "onresize": function () { }
  6334. }, {
  6335. closecallback: function () { }
  6336. }, { "style": { "height": "36px" } }).form; //创建窗体
  6337. _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); } }
  6338. break;
  6339. case "sys":
  6340. _formdiv = new U.UF.UI.form(
  6341. "目标管理",
  6342. $$("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 }), {
  6343. "id": "sys",
  6344. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6345. "onresize": function () { }
  6346. }, {
  6347. closecallback: function () { }
  6348. }, { "style": { "height": "36px" } }).form; //创建窗体
  6349. _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); } }
  6350. break;
  6351. case "courseDesign":
  6352. _formdiv = new U.UF.UI.form(
  6353. "项目设计",
  6354. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6355. "id": "courseDesign",
  6356. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6357. "onresize": function () { }
  6358. }, {
  6359. closecallback: function () { }
  6360. }, { "style": { "height": "36px" } }).form; //创建窗体
  6361. _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); } }
  6362. break;
  6363. }
  6364. } else if (!_type) {
  6365. switch (str) {
  6366. case "my":
  6367. _formdiv = new U.UF.UI.form(
  6368. "我的资料",
  6369. $$("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 }), {
  6370. "id": "my",
  6371. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6372. "onresize": function () { }
  6373. }, {
  6374. closecallback: function () { }
  6375. }, { "style": { "height": "36px" } }).form; //创建窗体
  6376. _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); } }
  6377. break;
  6378. }
  6379. }
  6380. switch (str) {
  6381. // AIprogram2 AI体验 aihub.cocorobo.cn
  6382. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6383. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6384. case "formulaEdi": //公式编辑
  6385. _formdiv = new U.UF.UI.form(
  6386. "公式编辑",
  6387. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6388. "id": "formulaEdi",
  6389. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6390. "onresize": function () { }
  6391. }, {
  6392. closecallback: function () { }
  6393. }, { "style": { "height": "36px" } }).form; //创建窗体
  6394. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/formulaEdi.png)" }, "name": "公式编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6395. break;
  6396. case "molStr": //分子结构
  6397. _formdiv = new U.UF.UI.form(
  6398. "分子结构",
  6399. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6400. "id": "molStr",
  6401. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6402. "onresize": function () { }
  6403. }, {
  6404. closecallback: function () { }
  6405. }, { "style": { "height": "36px" } }).form; //创建窗体
  6406. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/molStr.png)" }, "name": "分子结构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6407. break;
  6408. case "timeAxis": //时间轴
  6409. _formdiv = new U.UF.UI.form(
  6410. "时间轴",
  6411. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6412. "id": "timeAxis",
  6413. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6414. "onresize": function () { }
  6415. }, {
  6416. closecallback: function () { }
  6417. }, { "style": { "height": "36px" } }).form; //创建窗体
  6418. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/timeAxis.png)" }, "name": "时间轴", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6419. break;
  6420. case "AIprogram2": //AI体验
  6421. _formdiv = new U.UF.UI.form(
  6422. "AI体验",
  6423. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6424. "id": "AIprogram2",
  6425. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6426. "onresize": function () { }
  6427. }, {
  6428. closecallback: function () { }
  6429. }, { "style": { "height": "36px" } }).form; //创建窗体
  6430. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram2.png)" }, "name": "AI体验", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6431. break;
  6432. case "Pythonprogram": //python编程
  6433. _formdiv = new U.UF.UI.form(
  6434. "Python编程",
  6435. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6436. "id": "Pythonprogram",
  6437. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6438. "onresize": function () { }
  6439. }, {
  6440. closecallback: function () { }
  6441. }, { "style": { "height": "36px" } }).form; //创建窗体
  6442. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Pythonprogram.png)" }, "name": "Python编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6443. break;
  6444. case "AIprogram": //ai编程
  6445. _formdiv = new U.UF.UI.form(
  6446. "AI编程平台",
  6447. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6448. "id": "AIprogram",
  6449. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6450. "onresize": function () { }
  6451. }, {
  6452. closecallback: function () { }
  6453. }, { "style": { "height": "36px" } }).form; //创建窗体
  6454. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram.png)" }, "name": "AI编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6455. break;
  6456. case "CocoPi": //CocoPi
  6457. _formdiv = new U.UF.UI.form(
  6458. "CocoPi",
  6459. $$("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" }), {
  6460. "id": "CocoPi",
  6461. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6462. "onresize": function () { }
  6463. }, {
  6464. closecallback: function () { }
  6465. }, { "style": { "height": "36px" } }).form; //创建窗体
  6466. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/cocopi.png)" }, "name": "CocoPi", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6467. break;
  6468. case "Wood": //Wood
  6469. _formdiv = new U.UF.UI.form(
  6470. "海龟编程",
  6471. $$("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/" }), {
  6472. "id": "Wood",
  6473. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6474. "onresize": function () { }
  6475. }, {
  6476. closecallback: function () { }
  6477. }, { "style": { "height": "36px" } }).form; //创建窗体
  6478. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Wood.png)" }, "name": "海龟编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6479. break;
  6480. case "car": //模拟驾驶
  6481. _formdiv = new U.UF.UI.form(
  6482. "模拟驾驶",
  6483. $$("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/" }), {
  6484. "id": "car",
  6485. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6486. "onresize": function () { }
  6487. }, {
  6488. closecallback: function () { }
  6489. }, { "style": { "height": "36px" } }).form; //创建窗体
  6490. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/car.png)" }, "name": "模拟驾驶", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6491. break;
  6492. case "lineSearch": //路径搜索
  6493. _formdiv = new U.UF.UI.form(
  6494. "路径搜索",
  6495. $$("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/" }), {
  6496. "id": "lineSearch",
  6497. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6498. "onresize": function () { }
  6499. }, {
  6500. closecallback: function () { }
  6501. }, { "style": { "height": "36px" } }).form; //创建窗体
  6502. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/lineSearch.png)" }, "name": "路径搜索", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6503. break;
  6504. case "deepLearning": //深度学习
  6505. _formdiv = new U.UF.UI.form(
  6506. "深度学习",
  6507. $$("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/#" }), {
  6508. "id": "deepLearning",
  6509. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6510. "onresize": function () { }
  6511. }, {
  6512. closecallback: function () { }
  6513. }, { "style": { "height": "36px" } }).form; //创建窗体
  6514. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/deepLearning.png)" }, "name": "深度学习", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6515. break;
  6516. case "allHistory": //深度学习
  6517. _formdiv = new U.UF.UI.form(
  6518. "全历史",
  6519. $$("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/" }), {
  6520. "id": "allHistory",
  6521. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6522. "onresize": function () { }
  6523. }, {
  6524. closecallback: function () { }
  6525. }, { "style": { "height": "36px" } }).form; //创建窗体
  6526. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/allHistory.png)" }, "name": "全历史", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6527. break;
  6528. case "chatPDF": //ai编程
  6529. _formdiv = new U.UF.UI.form(
  6530. "chatPDF",
  6531. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6532. "id": "chatPDF",
  6533. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6534. "onresize": function () { }
  6535. }, {
  6536. closecallback: function () { }
  6537. }, { "style": { "height": "36px" } }).form; //创建窗体
  6538. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/chatPDF.png)" }, "name": "chatPDF", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6539. break;
  6540. case "resources": //国家教育
  6541. _formdiv = new U.UF.UI.form(
  6542. "国家教育",
  6543. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6544. "id": "resources",
  6545. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6546. "onresize": function () { }
  6547. }, {
  6548. closecallback: function () { }
  6549. }, { "style": { "height": "36px" } }).form; //创建窗体
  6550. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/resources.png)" }, "name": "国家教育", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6551. break;
  6552. case "codeEdit": //源码编辑
  6553. _formdiv = new U.UF.UI.form(
  6554. "源码编辑",
  6555. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6556. "id": "codeEdit",
  6557. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6558. "onresize": function () { }
  6559. }, {
  6560. closecallback: function () { }
  6561. }, { "style": { "height": "36px" } }).form; //创建窗体
  6562. _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); } }
  6563. break; //
  6564. case "MindMap": //MindMap
  6565. _formdiv = new U.UF.UI.form(
  6566. "MindMap",
  6567. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6568. "id": "MindMap",
  6569. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6570. "onresize": function () { }
  6571. }, {
  6572. closecallback: function () { }
  6573. }, { "style": { "height": "36px" } }).form; //创建窗体
  6574. _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); } }
  6575. break;
  6576. case "netWorkPanel": //netWorkPanel
  6577. _formdiv = new U.UF.UI.form(
  6578. "netWorkPanel",
  6579. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6580. "id": "netWorkPanel",
  6581. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6582. "onresize": function () { }
  6583. }, {
  6584. closecallback: function () { }
  6585. }, { "style": { "height": "36px" } }).form; //创建窗体
  6586. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/netWorkPanel.png)" }, "name": "netWorkPanel", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6587. break;
  6588. case "GeoGebra": //GeoGebra
  6589. _formdiv = new U.UF.UI.form(
  6590. "GeoGebra",
  6591. $$("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" }), {
  6592. "id": "GeoGebra",
  6593. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6594. "onresize": function () { }
  6595. }, {
  6596. closecallback: function () { }
  6597. }, { "style": { "height": "36px" } }).form; //创建窗体
  6598. _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); } }
  6599. break;
  6600. case "translation": //翻译
  6601. _formdiv = new U.UF.UI.form(
  6602. "翻译",
  6603. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6604. "id": "translation",
  6605. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6606. "onresize": function () { }
  6607. }, {
  6608. closecallback: function () { }
  6609. }, { "style": { "height": "36px" } }).form; //创建窗体
  6610. _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); } }
  6611. break;
  6612. case "mohe": //魔盒
  6613. _formdiv = new U.UF.UI.form(
  6614. "魔盒识字",
  6615. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6616. "id": "mohe",
  6617. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6618. "onresize": function () { }
  6619. }, {
  6620. closecallback: function () { }
  6621. }, { "style": { "height": "36px" } }).form; //创建窗体
  6622. _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); } }
  6623. break;
  6624. case "24game": //24点
  6625. _formdiv = new U.UF.UI.form(
  6626. "24点",
  6627. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6628. "id": "24game",
  6629. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6630. "onresize": function () { }
  6631. }, {
  6632. closecallback: function () { }
  6633. }, { "style": { "height": "36px" } }).form; //创建窗体
  6634. _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); } }
  6635. break;
  6636. case "case":
  6637. _formdiv = new U.UF.UI.form(
  6638. "课程进展",
  6639. $$("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 }), {
  6640. "id": "case",
  6641. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6642. "onresize": function () { }
  6643. }, {
  6644. closecallback: function () { }
  6645. }, { "style": { "height": "36px" } }).form; //创建窗体
  6646. _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); } }
  6647. break;
  6648. case "snf":
  6649. _formdiv = new U.UF.UI.form(
  6650. "赛诺梵",
  6651. $$("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" }), {
  6652. "id": "snf",
  6653. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6654. "onresize": function () { }
  6655. }, {
  6656. closecallback: function () { }
  6657. }, { "style": { "height": "36px" } }).form; //创建窗体
  6658. _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); } }
  6659. break;
  6660. case "hanFamily":
  6661. _formdiv = new U.UF.UI.form(
  6662. "汉字家族",
  6663. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6664. "id": "hanFamily",
  6665. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6666. "onresize": function () { }
  6667. }, {
  6668. closecallback: function () { }
  6669. }, { "style": { "height": "36px" } }).form; //创建窗体
  6670. _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); } }
  6671. break;
  6672. case "hanClassics":
  6673. _formdiv = new U.UF.UI.form(
  6674. "国学经典",
  6675. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6676. "id": "hanClassics",
  6677. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6678. "onresize": function () { }
  6679. }, {
  6680. closecallback: function () { }
  6681. }, { "style": { "height": "36px" } }).form; //创建窗体
  6682. _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); } }
  6683. break;
  6684. case "hanTraining":
  6685. _formdiv = new U.UF.UI.form(
  6686. "笔画训练",
  6687. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6688. "id": "hanTraining",
  6689. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6690. "onresize": function () { }
  6691. }, {
  6692. closecallback: function () { }
  6693. }, { "style": { "height": "36px" } }).form; //创建窗体
  6694. _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); } }
  6695. break;
  6696. case "hanClass":
  6697. _formdiv = new U.UF.UI.form(
  6698. "书法课堂",
  6699. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6700. "id": "hanClass",
  6701. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6702. "onresize": function () { }
  6703. }, {
  6704. closecallback: function () { }
  6705. }, { "style": { "height": "36px" } }).form; //创建窗体
  6706. _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); } }
  6707. break;
  6708. case "han":
  6709. _formdiv = new U.UF.UI.form(
  6710. "汉字宫",
  6711. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6712. "id": "han",
  6713. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6714. "onresize": function () { }
  6715. }, {
  6716. closecallback: function () { }
  6717. }, { "style": { "height": "36px" } }).form; //创建窗体
  6718. _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); } }
  6719. break;
  6720. case "projectGM": //课程管理
  6721. _formdiv = new U.UF.UI.form(
  6722. "课程管理",
  6723. $$("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 }), {
  6724. "id": "projectGM",
  6725. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6726. "onresize": function () { }
  6727. }, {
  6728. closecallback: function () { }
  6729. }, { "style": { "height": "36px" } }).form; //创建窗体
  6730. _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); } }
  6731. break;
  6732. case "studyGM": //课程中心
  6733. _formdiv = new U.UF.UI.form(
  6734. "课程中心",
  6735. $$("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
  6736. "id": "study",
  6737. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6738. "onresize": function () { }
  6739. }, {
  6740. closecallback: function () { }
  6741. }, { "style": { "height": "36px" } }).form; //创建窗体
  6742. _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); } }
  6743. break;
  6744. // studentGM
  6745. case "studentGM": //学生管理
  6746. _formdiv = new U.UF.UI.form(
  6747. "学生管理",
  6748. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studentGM?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org }), {
  6749. "id": "studentGM",
  6750. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6751. "onresize": function () { }
  6752. }, {
  6753. closecallback: function () { }
  6754. }, { "style": { "height": "36px" } }).form; //创建窗体
  6755. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6756. break;
  6757. case "evaluateGM": //学生评价
  6758. _formdiv = new U.UF.UI.form(
  6759. "学生评价",
  6760. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/worksGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6761. "id": "evaluateGM",
  6762. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6763. "onresize": function () { }
  6764. }, {
  6765. closecallback: function () { }
  6766. }, { "style": { "height": "36px" } }).form; //创建窗体
  6767. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6768. break;
  6769. // classGM
  6770. case "classGM": //班级管理
  6771. _formdiv = new U.UF.UI.form(
  6772. "班级管理",
  6773. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/classGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6774. "id": "classGM",
  6775. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6776. "onresize": function () { }
  6777. }, {
  6778. closecallback: function () { }
  6779. }, { "style": { "height": "36px" } }).form; //创建窗体
  6780. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6781. break;
  6782. // dataGM
  6783. case "dataGM":
  6784. _formdiv = new U.UF.UI.form(
  6785. "我的资料",
  6786. $$("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 }), {
  6787. "id": "dataGM",
  6788. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6789. "onresize": function () { }
  6790. }, {
  6791. closecallback: function () { }
  6792. }, { "style": { "height": "36px" } }).form; //创建窗体
  6793. _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); } }
  6794. break;
  6795. // caseGM
  6796. case "caseGM": //课程进展
  6797. _formdiv = new U.UF.UI.form(
  6798. "课程进展",
  6799. $$("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 }), {
  6800. "id": "caseGM",
  6801. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6802. "onresize": function () { }
  6803. }, {
  6804. closecallback: function () { }
  6805. }, { "style": { "height": "36px" } }).form; //创建窗体
  6806. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6807. break;
  6808. // meterialGM
  6809. case "meterialGM": //素材库
  6810. _formdiv = new U.UF.UI.form(
  6811. "素材库",
  6812. $$("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 }), {
  6813. "id": "meterialGM",
  6814. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6815. "onresize": function () { }
  6816. }, {
  6817. closecallback: function () { }
  6818. }, { "style": { "height": "36px" } }).form; //创建窗体
  6819. _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); } }
  6820. break;
  6821. // evaluateSGM
  6822. case "evaluateSGM": //我的评价
  6823. _formdiv = new U.UF.UI.form(
  6824. "我的评价",
  6825. $$("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 }), {
  6826. "id": "evaluateSGM",
  6827. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6828. "onresize": function () { }
  6829. }, {
  6830. closecallback: function () { }
  6831. }, { "style": { "height": "36px" } }).form; //创建窗体
  6832. _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); } }
  6833. break;
  6834. case "jupyter": //jupyter
  6835. _formdiv = new U.UF.UI.form(
  6836. "jupyter",
  6837. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6838. "id": "jupyter",
  6839. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6840. "onresize": function () { }
  6841. }, {
  6842. closecallback: function () { }
  6843. }, { "style": { "height": "36px" } }).form; //创建窗体
  6844. _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); } }
  6845. break;
  6846. case "number": //数字实验室
  6847. _formdiv = new U.UF.UI.form(
  6848. "数字实验室",
  6849. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6850. "id": "number",
  6851. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6852. "onresize": function () { }
  6853. }, {
  6854. closecallback: function () { }
  6855. }, { "style": { "height": "36px" } }).form; //创建窗体
  6856. _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); } }
  6857. break;
  6858. case "studentCourse": //项目管理 学生
  6859. _formdiv = new U.UF.UI.form(
  6860. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6861. $$("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 }), {
  6862. "id": "studentCourse",
  6863. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6864. "onresize": function () { }
  6865. }, {
  6866. closecallback: function () { }
  6867. }, { "style": { "height": "36px" } }).form; //创建窗体
  6868. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6869. break;
  6870. case "studentCourseS": //项目管理 老师
  6871. _formdiv = new U.UF.UI.form(
  6872. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6873. $$("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 }), {
  6874. "id": "studentCourseS",
  6875. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6876. "onresize": function () { }
  6877. }, {
  6878. closecallback: function () { }
  6879. }, { "style": { "height": "36px" } }).form; //创建窗体
  6880. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6881. break;
  6882. case "studentIndex": //项目中心
  6883. _formdiv = new U.UF.UI.form(
  6884. "项目中心",
  6885. $$("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 }), {
  6886. "id": "studentIndex",
  6887. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6888. "onresize": function () { }
  6889. }, {
  6890. closecallback: function () { }
  6891. }, { "style": { "height": "36px" } }).form; //创建窗体
  6892. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentIndex.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6893. break;
  6894. case "CaseDesignS":
  6895. _formdiv = new U.UF.UI.form(
  6896. "项目进展",
  6897. $$("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 }), {
  6898. "id": "case",
  6899. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6900. "onresize": function () { }
  6901. }, {
  6902. closecallback: function () { }
  6903. }, { "style": { "height": "36px" } }).form; //创建窗体
  6904. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/CaseDesignS.png)" }, "name": "项目进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6905. break;
  6906. case "tcStudent": //腾讯学生管理
  6907. _formdiv = new U.UF.UI.form(
  6908. "学生管理",
  6909. $$("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 }), {
  6910. "id": "tcStudent",
  6911. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6912. "onresize": function () { }
  6913. }, {
  6914. closecallback: function () { }
  6915. }, { "style": { "height": "36px" } }).form; //创建窗体
  6916. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6917. break;
  6918. case "tcSchool": //腾讯学校管理
  6919. _formdiv = new U.UF.UI.form(
  6920. "学校管理",
  6921. $$("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 }), {
  6922. "id": "tcSchool",
  6923. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6924. "onresize": function () { }
  6925. }, {
  6926. closecallback: function () { }
  6927. }, { "style": { "height": "36px" } }).form; //创建窗体
  6928. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/school.png)" }, "name": "学校管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6929. break;
  6930. case "tcTeacher": //腾讯学校管理
  6931. _formdiv = new U.UF.UI.form(
  6932. "教师管理",
  6933. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcTeacher?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6934. "id": "tcTeacher",
  6935. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6936. "onresize": function () { }
  6937. }, {
  6938. closecallback: function () { }
  6939. }, { "style": { "height": "36px" } }).form; //创建窗体
  6940. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6941. break;
  6942. case "teacher":
  6943. _formdiv = new U.UF.UI.form(
  6944. "教师管理",
  6945. $$("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 }), {
  6946. "id": "teacher",
  6947. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6948. "onresize": function () { }
  6949. }, {
  6950. closecallback: function () { }
  6951. }, { "style": { "height": "36px" } }).form; //创建窗体
  6952. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6953. break;
  6954. case "tcData": //腾讯我的资料
  6955. _formdiv = new U.UF.UI.form(
  6956. "我的资料",
  6957. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcData?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6958. "id": "tcData",
  6959. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6960. "onresize": function () { }
  6961. }, {
  6962. closecallback: function () { }
  6963. }, { "style": { "height": "36px" } }).form; //创建窗体
  6964. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6965. break;
  6966. case "tcNotice": //腾讯消息通知
  6967. _formdiv = new U.UF.UI.form(
  6968. "消息通知",
  6969. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcNotice?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6970. "id": "tcNotice",
  6971. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6972. "onresize": function () { }
  6973. }, {
  6974. closecallback: function () { }
  6975. }, { "style": { "height": "36px" } }).form; //创建窗体
  6976. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "消息通知", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6977. break;
  6978. case "myReport": //好友打开
  6979. _formdiv = new U.UF.UI.form(
  6980. "我的评价",
  6981. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/myReport?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&classid=" + _classId }), {
  6982. "id": "myReport",
  6983. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6984. "onresize": function () { }
  6985. }, {
  6986. closecallback: function () { }
  6987. }, { "style": { "height": "36px" } }).form; //创建窗体
  6988. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6989. break;
  6990. case "learnAna": //好友打开
  6991. _formdiv = new U.UF.UI.form(
  6992. "学习分析",
  6993. $$("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 }), {
  6994. "id": "learnAna",
  6995. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6996. "onresize": function () { }
  6997. }, {
  6998. closecallback: function () { }
  6999. }, { "style": { "height": "36px" } }).form; //创建窗体
  7000. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/learnAna.png)" }, "name": "学习分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7001. break;
  7002. case "AIChat": //AI共创
  7003. _formdiv = new U.UF.UI.form(
  7004. "AI共创",
  7005. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  7006. "id": "AIChat",
  7007. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  7008. "onresize": function () { }
  7009. }, {
  7010. istop: true,
  7011. closecallback: function () { $("#aichat_icon").remove(); },
  7012. narrowcallback: function () {
  7013. if (!$("#aichat_icon")[0]) {
  7014. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  7015. }
  7016. },
  7017. }, { "style": { "height": "36px" } }).form; //创建窗体
  7018. _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); } }
  7019. break;
  7020. case "ainew": //AI共创
  7021. _formdiv = new U.UF.UI.form(
  7022. "AI协同",
  7023. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  7024. "id": "ainew",
  7025. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7026. "onresize": function () { }
  7027. }, {
  7028. closecallback: function () { }
  7029. }, { "style": { "height": "36px" } }).form; //创建窗体
  7030. _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); } }
  7031. break;
  7032. case "gpt4": //gpt4
  7033. _formdiv = new U.UF.UI.form(
  7034. "AI助手",
  7035. $$("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 }), {
  7036. "id": "gpt4",
  7037. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7038. "onresize": function () { }
  7039. }, {
  7040. closecallback: function () { }
  7041. }, { "style": { "height": "36px" } }).form; //创建窗体
  7042. _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); } }
  7043. break;
  7044. case "aigpt": //gpt4
  7045. _formdiv = new U.UF.UI.form(
  7046. "AI助手+",
  7047. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7048. "id": "aigpt",
  7049. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7050. "onresize": function () { }
  7051. }, {
  7052. closecallback: function () {
  7053. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  7054. }
  7055. }, { "style": { "height": "36px" } }).form; //创建窗体
  7056. _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); } }
  7057. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7058. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  7059. })
  7060. break;
  7061. case "aiKnowledge": //aiKnowledge
  7062. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7063. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  7064. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7065. }
  7066. _formdiv = new U.UF.UI.form(
  7067. "知识建构",
  7068. $$("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 }), {
  7069. "id": "aiKnowledge",
  7070. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7071. "onresize": function () { }
  7072. }, {
  7073. closecallback: function () { }
  7074. }, { "style": { "height": "36px" } }).form; //创建窗体
  7075. _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); } }
  7076. break;
  7077. case "futureClass": //AI共创
  7078. _formdiv = new U.UF.UI.form(
  7079. "协同建构",
  7080. $$("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
  7081. "id": "synergyCourse",
  7082. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7083. "onresize": function () { }
  7084. }, {
  7085. closecallback: function () {
  7086. $("iframe", _formdiv)[0].contentWindow.loginout();
  7087. }
  7088. }, { "style": { "height": "36px" } }).form; //创建窗体
  7089. _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); } }
  7090. break;
  7091. case "aiagent": //ai agent
  7092. _formdiv = new U.UF.UI.form(
  7093. "AI Agent",
  7094. $$("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" }), {
  7095. "id": "AIAgent",
  7096. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7097. "onresize": function () { }
  7098. }, {
  7099. closecallback: function () { }
  7100. }, { "style": { "height": "36px" } }).form; //创建窗体
  7101. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram2.png)" }, "name": "AI Agent", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7102. break;
  7103. case "dataBoard": //数据看板
  7104. _formdiv = new U.UF.UI.form(
  7105. "数据看板",
  7106. $$("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 }), {
  7107. "id": "dataBoard",
  7108. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7109. "onresize": function () { }
  7110. }, {
  7111. closecallback: function () { }
  7112. }, { "style": { "height": "36px" } }).form; //创建窗体
  7113. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoard.png)" }, "name": "数据看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7114. break;
  7115. case "dataBoardSies": //数据融合
  7116. _formdiv = new U.UF.UI.form(
  7117. "数据融合",
  7118. $$("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 }), {
  7119. "id": "dataBoardSies",
  7120. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7121. "onresize": function () { }
  7122. }, {
  7123. closecallback: function () { }
  7124. }, { "style": { "height": "36px" } }).form; //创建窗体
  7125. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardSies.png)" }, "name": "数据融合", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7126. break;
  7127. case "dataBoardNew": //数据看板
  7128. _formdiv = new U.UF.UI.form(
  7129. "综合看板",
  7130. $$("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 }), {
  7131. "id": "dataBoardNew",
  7132. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7133. "onresize": function () { }
  7134. }, {
  7135. closecallback: function () { }
  7136. }, { "style": { "height": "36px" } }).form; //创建窗体
  7137. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardNew.png)" }, "name": "综合看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7138. break;
  7139. case "dataBoardTest": //数据看板
  7140. _formdiv = new U.UF.UI.form(
  7141. "评测看板",
  7142. $$("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 }), {
  7143. "id": "dataBoardTest",
  7144. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7145. "onresize": function () { }
  7146. }, {
  7147. closecallback: function () { }
  7148. }, { "style": { "height": "36px" } }).form; //创建窗体
  7149. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardTest.png)" }, "name": "评测看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7150. break;
  7151. case "AIAnalyse": //AI共创
  7152. _formdiv = new U.UF.UI.form(
  7153. "AI分析",
  7154. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  7155. "id": "AIAnalyse",
  7156. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7157. "onresize": function () { }
  7158. }, {
  7159. closecallback: function () { }
  7160. }, { "style": { "height": "36px" } }).form; //创建窗体
  7161. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIChat.png)" }, "name": "AI分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7162. break;
  7163. case "studioCourse": //AI共创
  7164. _formdiv = new U.UF.UI.form(
  7165. "工作管理",
  7166. $$("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 }), {
  7167. "id": "studioCourse",
  7168. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7169. "onresize": function () { }
  7170. }, {
  7171. closecallback: function () { }
  7172. }, { "style": { "height": "36px" } }).form; //创建窗体
  7173. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioCourse.png)" }, "name": "工作管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7174. break;
  7175. case "studioIndex": //AI共创
  7176. _formdiv = new U.UF.UI.form(
  7177. "工作中心",
  7178. $$("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 }), {
  7179. "id": "studioIndex",
  7180. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7181. "onresize": function () { }
  7182. }, {
  7183. closecallback: function () { }
  7184. }, { "style": { "height": "36px" } }).form; //创建窗体
  7185. _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); } }
  7186. break;
  7187. case "source":
  7188. _formdiv = new U.UF.UI.form(
  7189. "教学资源",
  7190. $$("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 }), {
  7191. "id": "source",
  7192. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7193. "onresize": function () { }
  7194. }, {
  7195. closecallback: function () { }
  7196. }, { "style": { "height": "36px" } }).form; //创建窗体
  7197. _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); } }
  7198. break;
  7199. case "testTeacher":
  7200. _formdiv = new U.UF.UI.form(
  7201. "智能表单",
  7202. $$("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 }), {
  7203. "id": "testTeacher",
  7204. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7205. "onresize": function () { }
  7206. }, {
  7207. closecallback: function () { }
  7208. }, { "style": { "height": "36px" } }).form; //创建窗体
  7209. _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); } }
  7210. break;
  7211. case "testStudent":
  7212. _formdiv = new U.UF.UI.form(
  7213. "教师中心",
  7214. $$("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 }), {
  7215. "id": "testStudent",
  7216. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7217. "onresize": function () { }
  7218. }, {
  7219. closecallback: function () { }
  7220. }, { "style": { "height": "36px" } }).form; //创建窗体
  7221. _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); } }
  7222. break;
  7223. case "testTeacherSies":
  7224. _formdiv = new U.UF.UI.form(
  7225. "教师管理",
  7226. $$("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 }), {
  7227. "id": "testTeacherSies",
  7228. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7229. "onresize": function () { }
  7230. }, {
  7231. closecallback: function () { }
  7232. }, { "style": { "height": "36px" } }).form; //创建窗体
  7233. _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); } }
  7234. break;
  7235. case "testStudentSies":
  7236. _formdiv = new U.UF.UI.form(
  7237. "教师中心",
  7238. $$("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 }), {
  7239. "id": "testStudentSies",
  7240. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7241. "onresize": function () { }
  7242. }, {
  7243. closecallback: function () { }
  7244. }, { "style": { "height": "36px" } }).form; //创建窗体
  7245. _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); } }
  7246. break;
  7247. case "ytpbl": //消息通知
  7248. _formdiv = new U.UF.UI.form(
  7249. "案例征集",
  7250. $$("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 }), {
  7251. "id": "ytpbl",
  7252. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7253. "onresize": function () { }
  7254. }, {
  7255. closecallback: function () { }
  7256. }, { "style": { "height": "36px" } }).form; //创建窗体
  7257. _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); } }
  7258. // 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");
  7259. break;
  7260. case "aiCourseResource": //人工智能窗体
  7261. _formdiv = new U.UF.UI.form(
  7262. false,
  7263. $$("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 }), {
  7264. "id": "aiCourseResource",
  7265. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7266. "onresize": function () { },
  7267. "isdrag": false,
  7268. }, {
  7269. closecallback: function () { }
  7270. }, { "style": { "height": "36px" } }).form; //创建窗体
  7271. _taskbar = ''
  7272. break;
  7273. case "szdjgCocooroboX": //图形化编程
  7274. _formdiv = new U.UF.UI.form(
  7275. "图形化编程",
  7276. $$("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" }), {
  7277. "id": "szdjgCocooroboX",
  7278. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7279. "onresize": function () { }
  7280. }, {
  7281. closecallback: function () { }
  7282. }, { "style": { "height": "36px" } }).form; //创建窗体
  7283. _taskbar = ''
  7284. break;
  7285. case "szdjgPython": //python编程
  7286. _formdiv = new U.UF.UI.form(
  7287. "Python编程",
  7288. $$("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" }), {
  7289. "id": "szdjgPython",
  7290. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7291. "onresize": function () { }
  7292. }, {
  7293. closecallback: function () { }
  7294. }, { "style": { "height": "36px" } }).form; //创建窗体
  7295. _taskbar = ''
  7296. break;
  7297. case "Record":
  7298. _formdiv = new U.UF.UI.form(
  7299. "观察记录",
  7300. $$("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 }), {
  7301. "id": "Record",
  7302. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7303. "onresize": function () { }
  7304. }, {
  7305. closecallback: function () { }
  7306. }, { "style": { "height": "36px" } }).form; //创建窗体
  7307. _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); } }
  7308. break;
  7309. case "aigptCourse":
  7310. _formdiv = new U.UF.UI.form(
  7311. "AI智能体",
  7312. $$("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' }), {
  7313. "id": "aigptCourse",
  7314. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7315. "onresize": function () { }
  7316. }, {
  7317. closecallback: function () { }
  7318. }, { "style": { "height": "36px" } }).form; //创建窗体
  7319. _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); } }
  7320. break;
  7321. case "classroomObservation":
  7322. _formdiv = new U.UF.UI.form(
  7323. "课堂观察",
  7324. $$("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 }), {
  7325. "id": "classroomObservation",
  7326. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7327. "onresize": function () { }
  7328. }, {
  7329. closecallback: function () { }
  7330. }, { "style": { "height": "36px" } }).form; //创建窗体
  7331. _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); } }
  7332. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7333. break;
  7334. case "pblCourse":
  7335. _formdiv = new U.UF.UI.form(
  7336. "学生PBL",
  7337. $$("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 }), {
  7338. "id": "pblCourse",
  7339. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7340. "onresize": function () { }
  7341. }, {
  7342. closecallback: function () { }
  7343. }, { "style": { "height": "36px" } }).form; //创建窗体
  7344. _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); } }
  7345. break;
  7346. case "appStore":
  7347. U.MD.D.addOp('','cocoflowOpen','')
  7348. _formdiv = new U.UF.UI.form(
  7349. "CocoFlow",
  7350. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//beta.app.cocorobo.cn/#/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7351. "id": "appStore",
  7352. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7353. "onresize": function () { }
  7354. }, {
  7355. closecallback: function () { }
  7356. }, { "style": { "height": "36px" } }).form; //创建窗体
  7357. _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); } }
  7358. break;
  7359. case "sassPlatform":
  7360. _formdiv = new U.UF.UI.form(
  7361. "Sass通用后台管理",
  7362. $$("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 }), {
  7363. "id": "sassPlatform",
  7364. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7365. "onresize": function () { }
  7366. }, {
  7367. closecallback: function () { }
  7368. }, { "style": { "height": "36px" } }).form; //创建窗体
  7369. _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); } }
  7370. break;
  7371. case "EDU":
  7372. _formdiv = new U.UF.UI.form(
  7373. "EDU",
  7374. $$("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" }), {
  7375. "id": "EDU",
  7376. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7377. "onresize": function () { }
  7378. }, {
  7379. closecallback: function () { }
  7380. }, { "style": { "height": "36px" } }).form; //创建窗体
  7381. _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); } }
  7382. break;
  7383. case "knowledge":
  7384. _formdiv = new U.UF.UI.form(
  7385. "知识库",
  7386. $$("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 }), {
  7387. "id": "knowledge",
  7388. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7389. "onresize": function () { }
  7390. }, {
  7391. closecallback: function () { }
  7392. }, { "style": { "height": "36px" } }).form; //创建窗体
  7393. _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); } }
  7394. break;
  7395. case "userExamine":
  7396. _formdiv = new U.UF.UI.form(
  7397. "账号申请",
  7398. $$("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" }), {
  7399. "id": "userExamine",
  7400. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7401. "onresize": function () { }
  7402. }, {
  7403. closecallback: function () { }
  7404. }, { "style": { "height": "36px" } }).form; //创建窗体
  7405. break;
  7406. case "cocoflowDeskTop": //cocoflowDeskTop
  7407. _formdiv = new U.UF.UI.form(
  7408. false,
  7409. $$("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 }), {
  7410. "id": "cocoflowDeskTop",
  7411. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7412. "onresize": function () { },
  7413. "isdrag": false,
  7414. }, {
  7415. closecallback: function () { }
  7416. }, { "style": { "height": "36px" } }).form; //创建窗体
  7417. _taskbar = ''
  7418. break;
  7419. case "liyuanLogin": //liyuanLogin
  7420. _formdiv = new U.UF.UI.form(
  7421. false,
  7422. $$("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" }), {
  7423. "id": "liyuanLogin",
  7424. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7425. "onresize": function () { },
  7426. isdrag: false,
  7427. isstretching: false,
  7428. isenlarge: false,
  7429. isnarrow: false
  7430. }, {
  7431. closecallback: function () { }
  7432. }, { "style": { "height": "36px" } }).form; //创建窗体
  7433. _taskbar = ''
  7434. break;
  7435. case "updatePaDialog":
  7436. _formdiv = new U.UF.UI.form(
  7437. "密码修改",
  7438. $$("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 }), {
  7439. "id": "updatePaDialog",
  7440. "style": { "width": "490px", "height": "600px", "overflow": 'hidden' },
  7441. "onresize": function () { },
  7442. isclose: false,
  7443. }, {
  7444. closecallback: function () { }
  7445. }, { "style": { "height": "36px" } }).form; //创建窗体
  7446. break;
  7447. }
  7448. //U.MD.D.I.openClick(str);
  7449. //如果有任务栏信息
  7450. if (_taskbar) {
  7451. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7452. }
  7453. if(iframeBool){
  7454. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7455. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7456. // console.log("iframe进入");
  7457. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7458. // };
  7459. setTimeout(() => {
  7460. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7461. }, 2000);
  7462. }
  7463. }
  7464. U.MD.D.I.openApplicationWai = function (id, url, dom, array) {
  7465. var _formdiv, //创建任务栏时同时弹出的窗体元素。
  7466. _userinfo = US.userInfo, //登录用户信息
  7467. { userid: _userid, organizeid: _oid, type: _type, org: _org, role: _role, classid: _classId } = _userinfo; // 解构赋值获取用户信息
  7468. const _TscreenType = 1, _screenType = 2, _SscreenType = 3; // 常量定义
  7469. let iframeBool = true;
  7470. let queryString = ''
  7471. if(array && array.length){
  7472. const paramsMap = {
  7473. userid: _userid,
  7474. org: _org,
  7475. oid: _oid,
  7476. type: _type,
  7477. role: _role,
  7478. classId: _classId,
  7479. TscreenType: _TscreenType,
  7480. SscreenType: _SscreenType
  7481. };
  7482. const canshu = array
  7483. .filter(param => paramsMap[param] !== undefined)
  7484. .map(param => `${param}=${paramsMap[param]}`);
  7485. queryString = canshu.length ? (url.includes('?') ? '&' : '?') + canshu.join('&') : ''; // 生成查询字符串
  7486. }
  7487. let _url = url + queryString
  7488. if(U.UF.UI.form.allForm[id]){
  7489. iframeBool = false
  7490. }
  7491. _formdiv = new U.UF.UI.form(
  7492. false,
  7493. $$("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 }),
  7494. {
  7495. "id": id,
  7496. "style": { "width": "100%", "height": "100%", "overflow": 'hidden',"position": 'unset',"boxShadow": "unset" },
  7497. "onresize": function () { },
  7498. isdrag: false,
  7499. isstretching: false,
  7500. isenlarge: false,
  7501. isnarrow: false
  7502. },
  7503. {
  7504. closecallback: function () { }
  7505. },
  7506. { "style": { "height": "36px" } },
  7507. undefined,
  7508. undefined,
  7509. dom
  7510. ).form
  7511. }
  7512. // U.MD.D.I.openClick = function(str){
  7513. // var click = '';
  7514. // switch(str){
  7515. // case 'friend':
  7516. // click = '我的好友';
  7517. // break;
  7518. // case 'domain':
  7519. // click = '域名管理';
  7520. // break;
  7521. // case 'disk':
  7522. // click = '我的云盘';
  7523. // break;
  7524. // case 'word':
  7525. // click = 'Word';
  7526. // break;
  7527. // case 'excel':
  7528. // click = 'Execl';
  7529. // break;
  7530. // case 'txt':
  7531. // click = '文本文件';
  7532. // break;
  7533. // case 'lookupFriend':
  7534. // click = '查找好友';
  7535. // break;
  7536. // case 'ftp':
  7537. // click = 'FTP';
  7538. // break;
  7539. // case 'group':
  7540. // click = '群组';
  7541. // break;
  7542. // case 'set':
  7543. // click = '我的设置';
  7544. // break;
  7545. // case 'systemSet':
  7546. // click = '系统设置';
  7547. // break;
  7548. // case 'boomYun':
  7549. // click = '互联办公';
  7550. // break;
  7551. // case 'xz':
  7552. // click = '云端下载';
  7553. // break;
  7554. // case 'client':
  7555. // click = '有思浏览器';
  7556. // break;
  7557. // case 'backEndProgramming':
  7558. // click = '在线后台编程';
  7559. // break;
  7560. // case 'frontEndProgramming':
  7561. // click = '在线前端编程';
  7562. // break;
  7563. // default: break;
  7564. // }
  7565. // if(U.MD.D.I.Ip && click){
  7566. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7567. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7568. // })
  7569. // }
  7570. // }
  7571. /**
  7572. *函数作用:ajax简易函数,使用post格式
  7573. *@param url {data} 后台地址
  7574. *@param data {data} 参数json
  7575. *@param fn {data} 回调函数
  7576. *
  7577. */
  7578. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7579. // var xhr = new XMLHttpRequest();
  7580. // xhr.open("GET",url,true);
  7581. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7582. // xhr.onreadystatechange = function(){
  7583. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7584. // fn.call(this,xhr.responseText);
  7585. // }
  7586. // };
  7587. // xhr.send();
  7588. // }
  7589. /*判断是否是内网IP*/
  7590. // U.MD.D.I.isInnerIPFn = function(str){
  7591. // var curPageUrl = str;
  7592. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7593. // curPageUrl =curPageUrl.replace(reg1,'');
  7594. // // console.log('curPageUrl-1 '+curPageUrl);
  7595. // var reg2 = /\:+/g;//替换冒号为一点
  7596. // curPageUrl =curPageUrl.replace(reg2,'.');
  7597. // // console.log('curPageUrl-2 '+curPageUrl);
  7598. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7599. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7600. // if(curPageUrl[2] != '16'){
  7601. // return ipAddress;
  7602. // }else{
  7603. // return false;
  7604. // }
  7605. // }
  7606. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7607. // //compatibility for firefox and chrome
  7608. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7609. // var pc = new myPeerConnection({
  7610. // iceServers: []
  7611. // }),
  7612. // noop = function() {},
  7613. // localIPs = {},
  7614. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7615. // key;
  7616. // function iterateIP(ip) {
  7617. // if (!localIPs[ip]) onNewIP(ip);
  7618. // localIPs[ip] = true;
  7619. // }
  7620. // //create a bogus data channel
  7621. // pc.createDataChannel("");
  7622. // // create offer and set local description
  7623. // pc.createOffer().then(function(sdp) {
  7624. // sdp.sdp.split('\n').forEach(function(line) {
  7625. // if (line.indexOf('candidate') < 0) return;
  7626. // line.match(ipRegex).forEach(iterateIP);
  7627. // });
  7628. // pc.setLocalDescription(sdp, noop, noop);
  7629. // }).catch(function(reason) {
  7630. // // An error occurred, so handle the failure to connect
  7631. // });
  7632. // //sten for candidate events
  7633. // pc.onicecandidate = function(ice) {
  7634. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7635. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7636. // };
  7637. // }
  7638. // U.MD.D.I.getUserIpBool = function(callback){
  7639. // U.MD.D.I.getUserIP(function(ip){
  7640. // alert("Got IP! :" + ip);
  7641. // });
  7642. //}
  7643. //#endregion
  7644. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7645. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7646. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7647. _userinfo = US.userInfo, //登录用户信息
  7648. _userid = US.userInfo.userid //登录用户id
  7649. let _iframe;
  7650. let _cid = cid,
  7651. _stage = stage,
  7652. _task = task,
  7653. _tool = tool;
  7654. var _jie = $$("div", {
  7655. "style": {
  7656. "position": "absolute",
  7657. "bottom": "50px",
  7658. "right": "50px",
  7659. "zIndex": "9999",
  7660. "backgroundColor": "#2268bc",
  7661. "color": "#fff",
  7662. "padding": "12px 20px",
  7663. "cursor": "pointer",
  7664. "borderRadius": "4px",
  7665. },
  7666. "innerHTML": "提交作业"
  7667. })
  7668. let aTool = ''
  7669. let _loading = document.createElement('div')
  7670. _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;"
  7671. // _loading.id = "";
  7672. let _lchild = document.createElement('div')
  7673. let _limg = document.createElement('img')
  7674. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7675. _limg.style = "width: 26px;margin-right: 10px;"
  7676. _lchild.appendChild(_limg)
  7677. let _lspan = document.createElement('span')
  7678. _lspan.innerHTML = "上传中..."
  7679. _lchild.appendChild(_lspan)
  7680. _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%);"
  7681. _loading.appendChild(_lchild)
  7682. var _box = $$('div', {
  7683. "style": {
  7684. "position": "relative",
  7685. "width": "100%",
  7686. "height": "100%",
  7687. },
  7688. })
  7689. _box.appendChild(_loading)
  7690. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7691. switch (str) {
  7692. case "whiteboard":
  7693. aTool = 1;
  7694. _iframe = $$("iframe", {
  7695. "frameborder": "no",
  7696. "border": "0",
  7697. "scrolling ": "no",
  7698. "style": {
  7699. "cssText": "border:0;width:100%;height:100%"
  7700. },
  7701. "src": "https://beta.iwb.cocorobo.cn/"
  7702. })
  7703. _box.appendChild(_iframe);
  7704. _box.appendChild(_jie);
  7705. _formdiv = new U.UF.UI.form(
  7706. "电子白板",
  7707. _box, {
  7708. "id": "whiteboard" + cid + stage + task + tool,
  7709. "style": {
  7710. "width": "90%",
  7711. "height": "90%",
  7712. "overflow": 'hidden'
  7713. },
  7714. "onresize": function () { }
  7715. }, {
  7716. closecallback: function () { }
  7717. }, {
  7718. "style": {
  7719. "height": "36px"
  7720. }
  7721. }).form; //创建窗体
  7722. _taskbar = {
  7723. "id": str + _formdiv.id,
  7724. "style": {
  7725. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7726. },
  7727. "name": "电子白板",
  7728. "forms": _formdiv,
  7729. "click": function () {
  7730. U.MD.D.I.openApplication(str, obj, info);
  7731. }
  7732. }
  7733. break;
  7734. case "mind":
  7735. aTool = 3;
  7736. _iframe = $$("iframe", {
  7737. "frameborder": "no",
  7738. "border": "0",
  7739. "scrolling ": "no",
  7740. "style": {
  7741. "cssText": "border:0;width:100%;height:100%"
  7742. },
  7743. "src": "/kityminder-editor/dist/index.html"
  7744. })
  7745. _box.appendChild(_iframe);
  7746. _box.appendChild(_jie);
  7747. _formdiv = new U.UF.UI.form(
  7748. "思维导图",
  7749. _box, { //"/jsmind/example/demo.html"
  7750. "id": "mind" + cid + stage + task + tool,
  7751. "style": {
  7752. "width": "90%",
  7753. "height": "90%",
  7754. "overflow": 'hidden'
  7755. },
  7756. "onresize": function () { }
  7757. }, {
  7758. closecallback: function () { }
  7759. }, {
  7760. "style": {
  7761. "height": "36px"
  7762. }
  7763. }).form; //创建窗体
  7764. _taskbar = {
  7765. "id": str + _formdiv.id,
  7766. "style": {
  7767. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7768. },
  7769. "name": "思维导图",
  7770. "forms": _formdiv,
  7771. "click": function () {
  7772. U.MD.D.I.openApplication(str, obj, info);
  7773. }
  7774. }
  7775. break;
  7776. case "MindMap":
  7777. aTool = 3;
  7778. _iframe = $$("iframe", {
  7779. "frameborder": "no",
  7780. "border": "0",
  7781. "scrolling ": "no",
  7782. "style": {
  7783. "cssText": "border:0;width:100%;height:100%"
  7784. },
  7785. "src": "//cloud.cocorobo.cn/mind/"
  7786. })
  7787. _box.appendChild(_iframe);
  7788. _box.appendChild(_jie);
  7789. _formdiv = new U.UF.UI.form(
  7790. "思维导图",
  7791. _box, { //"/jsmind/example/demo.html"
  7792. "id": "mind" + cid + stage + task + tool,
  7793. "style": {
  7794. "width": "90%",
  7795. "height": "90%",
  7796. "overflow": 'hidden'
  7797. },
  7798. "onresize": function () { }
  7799. }, {
  7800. closecallback: function () { }
  7801. }, {
  7802. "style": {
  7803. "height": "36px"
  7804. }
  7805. }).form; //创建窗体
  7806. _taskbar = {
  7807. "id": str + _formdiv.id,
  7808. "style": {
  7809. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7810. },
  7811. "name": "思维导图",
  7812. "forms": _formdiv,
  7813. "click": function () {
  7814. U.MD.D.I.openApplication(str, obj, info);
  7815. }
  7816. }
  7817. break;
  7818. case "doc":
  7819. aTool = 6;
  7820. _iframe = $$("iframe", {
  7821. "frameborder": "no",
  7822. "border": "0",
  7823. "scrolling ": "no",
  7824. "style": {
  7825. "cssText": "border:0;width:100%;height:100%"
  7826. },
  7827. "src": "/Office/Word/WordEditArea.htm"
  7828. })
  7829. _box.appendChild(_iframe);
  7830. _box.appendChild(_jie);
  7831. _formdiv = new U.UF.UI.form(
  7832. "协同文档",
  7833. _box, {
  7834. "id": "doc" + cid + stage + task + tool,
  7835. "style": {
  7836. "width": "90%",
  7837. "height": "90%",
  7838. "overflow": 'hidden'
  7839. },
  7840. "onresize": function () { }
  7841. }, {
  7842. closecallback: function () { }
  7843. }, {
  7844. "style": {
  7845. "height": "36px"
  7846. }
  7847. }).form; //创建窗体
  7848. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7849. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7850. })
  7851. _taskbar = {
  7852. "id": str + _formdiv.id,
  7853. "style": {
  7854. "backgroundImage": "url(/img/icon/doc.png)"
  7855. },
  7856. "name": "协同文档",
  7857. "forms": _formdiv,
  7858. "click": function () {
  7859. U.MD.D.I.openApplication(str, obj, info);
  7860. }
  7861. }
  7862. break;
  7863. case "mindNetwork": //好友打开
  7864. aTool = 7;
  7865. _iframe = $$("iframe", {
  7866. "webkitallowfullscreen": "",
  7867. "mozallowfullscreen": "",
  7868. "allowfullscreen": "",
  7869. "frameborder": "no",
  7870. "border": "0",
  7871. "scrolling ": "no",
  7872. "style": {
  7873. "cssText": "border:0; width:100%; height:100%;"
  7874. },
  7875. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7876. })
  7877. _box.appendChild(_iframe);
  7878. _box.appendChild(_jie);
  7879. _formdiv = new U.UF.UI.form(
  7880. "思维网格",
  7881. _box, {
  7882. "id": "mindNetwork" + cid + stage + task + tool,
  7883. "style": {
  7884. "width": "90%",
  7885. "height": "90%",
  7886. "overflow": 'hidden'
  7887. },
  7888. "onresize": function () { }
  7889. }, {
  7890. closecallback: function () { }
  7891. }, {
  7892. "style": {
  7893. "height": "36px"
  7894. }
  7895. }).form; //创建窗体
  7896. _taskbar = {
  7897. "id": str + _formdiv.id,
  7898. "style": {
  7899. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7900. },
  7901. "name": "思维网格",
  7902. "forms": _formdiv,
  7903. "click": function () {
  7904. U.MD.D.I.openApplication(str, obj, info);
  7905. }
  7906. }
  7907. break;
  7908. case "courseDesign":
  7909. _iframe = $$("iframe", {
  7910. "webkitallowfullscreen": "",
  7911. "mozallowfullscreen": "",
  7912. "allowfullscreen": "",
  7913. "frameborder": "no",
  7914. "border": "0",
  7915. "scrolling ": "no",
  7916. "style": {
  7917. "cssText": "border:0; width:100%; height:100%;"
  7918. },
  7919. "src": "/course-design-vue"
  7920. })
  7921. _box.appendChild(_iframe);
  7922. _box.appendChild(_jie);
  7923. _formdiv = new U.UF.UI.form(
  7924. "项目设计",
  7925. _box, {
  7926. "id": "courseDesign" + cid + stage + task + tool,
  7927. "style": {
  7928. "width": "90%",
  7929. "height": "90%",
  7930. "overflow": 'hidden'
  7931. },
  7932. "onresize": function () { }
  7933. }, {
  7934. closecallback: function () { }
  7935. }, {
  7936. "style": {
  7937. "height": "36px"
  7938. }
  7939. }).form; //创建窗体
  7940. _taskbar = {
  7941. "id": str + _formdiv.id,
  7942. "style": {
  7943. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7944. },
  7945. "name": "项目设计",
  7946. "forms": _formdiv,
  7947. "click": function () {
  7948. U.MD.D.I.openApplication(str, obj, info);
  7949. }
  7950. }
  7951. break;
  7952. }
  7953. const script1 = document.createElement("script");
  7954. script1.type = "text/javascript";
  7955. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7956. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7957. const script2 = document.createElement("script");
  7958. script2.type = "text/javascript";
  7959. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7960. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7961. const script3 = document.createElement("script");
  7962. script3.type = "text/javascript";
  7963. script3.charset = "UTF-8";
  7964. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7965. const script4 = document.createElement("script");
  7966. script4.type = "text/javascript";
  7967. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7968. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7969. if (_iframe) {
  7970. if (str == 'doc') {
  7971. _iframe = _formdiv.querySelector('iframe')
  7972. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7973. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7974. _iframe.contentWindow.document.body.appendChild(script1);
  7975. _iframe.contentWindow.document.body.appendChild(script2);
  7976. // _iframe.contentWindow.document.body.appendChild(script3);
  7977. _iframe.contentWindow.document.body.appendChild(script4);
  7978. })
  7979. if (onloadListener) {
  7980. _iframe.contentDocument.location.reload()
  7981. } else {
  7982. _iframe.contentDocument.location.reload()
  7983. }
  7984. } else if (str == 'courseDesign') {
  7985. U.UF.DL.iframeLoad(_iframe, function () {
  7986. // _iframe.contentWindow.U.MD.O.W.load();
  7987. // _iframe.contentWindow.document.body.appendChild(script1);
  7988. _iframe.contentWindow.document.body.appendChild(script2);
  7989. _iframe.contentWindow.document.body.appendChild(script4);
  7990. })
  7991. } else if (str == 'mind') {
  7992. _iframe = _formdiv.querySelector('iframe')
  7993. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7994. //
  7995. _iframe.contentWindow.document.body.appendChild(script1);
  7996. _iframe.contentWindow.document.body.appendChild(script2);
  7997. _iframe.contentWindow.document.body.appendChild(script4);
  7998. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7999. })
  8000. if (onloadListener) {
  8001. _iframe.contentDocument.location.reload()
  8002. } else {
  8003. _iframe.contentDocument.location.reload()
  8004. }
  8005. } else if (str == 'whiteboard') {
  8006. _iframe = _formdiv.querySelector('iframe')
  8007. let onloadListener = _iframe.onload = () => {
  8008. _iframe.contentWindow.document.body.appendChild(script1);
  8009. _iframe.contentWindow.document.body.appendChild(script2);
  8010. _iframe.contentWindow.document.body.appendChild(script4);
  8011. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8012. };
  8013. // if (onloadListener) {
  8014. // try {
  8015. // _iframe.src += "?cocorobo="+new Date().getTime()
  8016. // _iframe.contentWindow.document.location.reload()
  8017. // } catch (error) {
  8018. // }
  8019. // } else {
  8020. // _iframe.contentDocument.location.reload()
  8021. // }
  8022. } else {
  8023. _iframe.onload = () => {
  8024. _iframe.contentWindow.document.body.appendChild(script1);
  8025. _iframe.contentWindow.document.body.appendChild(script2);
  8026. // _iframe.contentWindow.document.body.appendChild(script3);
  8027. _iframe.contentWindow.document.body.appendChild(script4);
  8028. };
  8029. }
  8030. _jie.onclick = async () => {
  8031. let text = ''
  8032. if (aTool == 1) {
  8033. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8034. } else if (aTool == 6) {
  8035. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8036. } else if (aTool == 3) {
  8037. text = await U.MD.D.I.getEditorContent(_iframe);
  8038. }
  8039. _loading.style.display = 'flex'
  8040. console.log(_loading);
  8041. var _ajs = _iframe.contentWindow.document.createElement("script");
  8042. _ajs.type = "text/javascript";
  8043. _ajs.innerHTML =
  8044. // 'console.log(' + _loading + ');\n' +
  8045. 'var _js = document.createElement("script");\n' +
  8046. '_js.type="text/javascript";\n' +
  8047. '_js.charset="UTF-8";\n' +
  8048. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8049. "_js.onload = function(){\n" +
  8050. ' var a = document.getElementsByTagName("img")\n' +
  8051. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8052. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8053. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8054. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8055. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8056. "beforeUpload_shishi(file," +
  8057. "'" +
  8058. _userid +
  8059. "'" +
  8060. ", " +
  8061. "'" +
  8062. _cid +
  8063. "'" +
  8064. ", " +
  8065. "'" +
  8066. _stage +
  8067. "'" +
  8068. ", " +
  8069. "'" +
  8070. _task +
  8071. "'" +
  8072. ", " +
  8073. "'" +
  8074. _tool +
  8075. "'" +
  8076. ", " +
  8077. "'" +
  8078. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  8079. "'" +
  8080. ", " +
  8081. "'" +
  8082. aTool +
  8083. "'" +
  8084. ", " +
  8085. "`" +
  8086. text +
  8087. "`" +
  8088. ")\n" +
  8089. " });\n" +
  8090. "}\n" +
  8091. "document.head.appendChild(_js);\n";
  8092. _iframe.contentWindow.document.head.appendChild(_ajs);
  8093. }
  8094. }
  8095. //U.MD.D.I.openClick(str);
  8096. //如果有任务栏信息
  8097. // if (_taskbar) {
  8098. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8099. // }
  8100. }
  8101. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  8102. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8103. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8104. _userinfo = US.userInfo, //登录用户信息
  8105. _userid = US.userInfo.userid //登录用户id
  8106. let _iframe;
  8107. let _cid = cid,
  8108. _stage = stage,
  8109. _task = task,
  8110. _tool = tool;
  8111. var _jie = $$("div", {
  8112. "style": {
  8113. "position": "absolute",
  8114. "bottom": "50px",
  8115. "right": "50px",
  8116. "zIndex": "9999",
  8117. "backgroundColor": "#2268bc",
  8118. "color": "#fff",
  8119. "padding": "12px 20px",
  8120. "cursor": "pointer",
  8121. "borderRadius": "4px",
  8122. },
  8123. "innerHTML": "提交作业"
  8124. })
  8125. let aTool = ''
  8126. let _loading = document.createElement('div')
  8127. _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;"
  8128. // _loading.id = "";
  8129. let _lchild = document.createElement('div')
  8130. let _limg = document.createElement('img')
  8131. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8132. _limg.style = "width: 26px;margin-right: 10px;"
  8133. _lchild.appendChild(_limg)
  8134. let _lspan = document.createElement('span')
  8135. _lspan.innerHTML = "上传中..."
  8136. _lchild.appendChild(_lspan)
  8137. _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%);"
  8138. _loading.appendChild(_lchild)
  8139. let _box = $$('div', {
  8140. "style": {
  8141. "position": "relative",
  8142. "width": "100%",
  8143. "height": "100%",
  8144. },
  8145. })
  8146. _box.appendChild(_loading)
  8147. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  8148. switch (str) {
  8149. case "whiteboard":
  8150. aTool = 1;
  8151. _iframe = $$("iframe", {
  8152. "frameborder": "no",
  8153. "border": "0",
  8154. "scrolling ": "no",
  8155. "style": {
  8156. "cssText": "border:0;width:100%;height:100%"
  8157. },
  8158. "src": "https://beta.iwb.cocorobo.cn/"
  8159. })
  8160. _box.appendChild(_iframe);
  8161. _box.appendChild(_jie);
  8162. _formdiv = new U.UF.UI.form(
  8163. "电子白板",
  8164. _box, {
  8165. "id": "whiteboard" + cid + stage + task + tool,
  8166. "style": {
  8167. "width": "90%",
  8168. "height": "90%",
  8169. "overflow": 'hidden'
  8170. },
  8171. "onresize": function () { }
  8172. }, {
  8173. closecallback: function () { }
  8174. }, {
  8175. "style": {
  8176. "height": "36px"
  8177. }
  8178. }).form; //创建窗体
  8179. _taskbar = {
  8180. "id": str + _formdiv.id,
  8181. "style": {
  8182. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8183. },
  8184. "name": "电子白板",
  8185. "forms": _formdiv,
  8186. "click": function () {
  8187. U.MD.D.I.openApplication(str, obj, info);
  8188. }
  8189. }
  8190. break;
  8191. case "mind":
  8192. aTool = 3;
  8193. _iframe = $$("iframe", {
  8194. "frameborder": "no",
  8195. "border": "0",
  8196. "scrolling ": "no",
  8197. "style": {
  8198. "cssText": "border:0;width:100%;height:100%"
  8199. },
  8200. "src": "/kityminder-editor/dist/index.html"
  8201. })
  8202. _box.appendChild(_iframe);
  8203. _box.appendChild(_jie);
  8204. _formdiv = new U.UF.UI.form(
  8205. "思维导图",
  8206. _box, { //"/jsmind/example/demo.html"
  8207. "id": "mind" + cid + stage + task + tool,
  8208. "style": {
  8209. "width": "90%",
  8210. "height": "90%",
  8211. "overflow": 'hidden'
  8212. },
  8213. "onresize": function () { }
  8214. }, {
  8215. closecallback: function () { }
  8216. }, {
  8217. "style": {
  8218. "height": "36px"
  8219. }
  8220. }).form; //创建窗体
  8221. _taskbar = {
  8222. "id": str + _formdiv.id,
  8223. "style": {
  8224. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8225. },
  8226. "name": "思维导图",
  8227. "forms": _formdiv,
  8228. "click": function () {
  8229. U.MD.D.I.openApplication(str, obj, info);
  8230. }
  8231. }
  8232. break;
  8233. case "MindMap":
  8234. aTool = 3;
  8235. _iframe = $$("iframe", {
  8236. "frameborder": "no",
  8237. "border": "0",
  8238. "scrolling ": "no",
  8239. "style": {
  8240. "cssText": "border:0;width:100%;height:100%"
  8241. },
  8242. "src": "//cloud.cocorobo.cn/mind/"
  8243. })
  8244. _box.appendChild(_iframe);
  8245. _box.appendChild(_jie);
  8246. _formdiv = new U.UF.UI.form(
  8247. "思维导图",
  8248. _box, { //"/jsmind/example/demo.html"
  8249. "id": "mind" + cid + stage + task + tool,
  8250. "style": {
  8251. "width": "90%",
  8252. "height": "90%",
  8253. "overflow": 'hidden'
  8254. },
  8255. "onresize": function () { }
  8256. }, {
  8257. closecallback: function () { }
  8258. }, {
  8259. "style": {
  8260. "height": "36px"
  8261. }
  8262. }).form; //创建窗体
  8263. _taskbar = {
  8264. "id": str + _formdiv.id,
  8265. "style": {
  8266. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8267. },
  8268. "name": "思维导图",
  8269. "forms": _formdiv,
  8270. "click": function () {
  8271. U.MD.D.I.openApplication(str, obj, info);
  8272. }
  8273. }
  8274. break;
  8275. case "doc":
  8276. aTool = 6;
  8277. _iframe = $$("iframe", {
  8278. "frameborder": "no",
  8279. "border": "0",
  8280. "scrolling ": "no",
  8281. "style": {
  8282. "cssText": "border:0;width:100%;height:100%"
  8283. },
  8284. "src": "/Office/Word/WordEditArea.htm"
  8285. })
  8286. _box.appendChild(_iframe);
  8287. _box.appendChild(_jie);
  8288. _formdiv = new U.UF.UI.form(
  8289. "协同文档",
  8290. _box, {
  8291. "id": "doc" + cid + stage + task + tool,
  8292. "style": {
  8293. "width": "90%",
  8294. "height": "90%",
  8295. "overflow": 'hidden'
  8296. },
  8297. "onresize": function () { }
  8298. }, {
  8299. closecallback: function () { }
  8300. }, {
  8301. "style": {
  8302. "height": "36px"
  8303. }
  8304. }).form; //创建窗体
  8305. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8306. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8307. })
  8308. _taskbar = {
  8309. "id": str + _formdiv.id,
  8310. "style": {
  8311. "backgroundImage": "url(/img/icon/doc.png)"
  8312. },
  8313. "name": "协同文档",
  8314. "forms": _formdiv,
  8315. "click": function () {
  8316. U.MD.D.I.openApplication(str, obj, info);
  8317. }
  8318. }
  8319. break;
  8320. case "mindNetwork": //好友打开
  8321. aTool = 7;
  8322. _iframe = $$("iframe", {
  8323. "webkitallowfullscreen": "",
  8324. "mozallowfullscreen": "",
  8325. "allowfullscreen": "",
  8326. "frameborder": "no",
  8327. "border": "0",
  8328. "scrolling ": "no",
  8329. "style": {
  8330. "cssText": "border:0; width:100%; height:100%;"
  8331. },
  8332. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8333. })
  8334. _box.appendChild(_iframe);
  8335. _box.appendChild(_jie);
  8336. _formdiv = new U.UF.UI.form(
  8337. "思维网格",
  8338. _box, {
  8339. "id": "mindNetwork" + cid + stage + task + tool,
  8340. "style": {
  8341. "width": "90%",
  8342. "height": "90%",
  8343. "overflow": 'hidden'
  8344. },
  8345. "onresize": function () { }
  8346. }, {
  8347. closecallback: function () { }
  8348. }, {
  8349. "style": {
  8350. "height": "36px"
  8351. }
  8352. }).form; //创建窗体
  8353. _taskbar = {
  8354. "id": str + _formdiv.id,
  8355. "style": {
  8356. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8357. },
  8358. "name": "思维网格",
  8359. "forms": _formdiv,
  8360. "click": function () {
  8361. U.MD.D.I.openApplication(str, obj, info);
  8362. }
  8363. }
  8364. break;
  8365. case "courseDesign":
  8366. _iframe = $$("iframe", {
  8367. "webkitallowfullscreen": "",
  8368. "mozallowfullscreen": "",
  8369. "allowfullscreen": "",
  8370. "frameborder": "no",
  8371. "border": "0",
  8372. "scrolling ": "no",
  8373. "style": {
  8374. "cssText": "border:0; width:100%; height:100%;"
  8375. },
  8376. "src": "/course-design-vue"
  8377. })
  8378. _box.appendChild(_iframe);
  8379. _box.appendChild(_jie);
  8380. _formdiv = new U.UF.UI.form(
  8381. "项目设计",
  8382. _box, {
  8383. "id": "courseDesign" + cid + stage + task + tool,
  8384. "style": {
  8385. "width": "90%",
  8386. "height": "90%",
  8387. "overflow": 'hidden'
  8388. },
  8389. "onresize": function () { }
  8390. }, {
  8391. closecallback: function () { }
  8392. }, {
  8393. "style": {
  8394. "height": "36px"
  8395. }
  8396. }).form; //创建窗体
  8397. _taskbar = {
  8398. "id": str + _formdiv.id,
  8399. "style": {
  8400. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8401. },
  8402. "name": "项目设计",
  8403. "forms": _formdiv,
  8404. "click": function () {
  8405. U.MD.D.I.openApplication(str, obj, info);
  8406. }
  8407. }
  8408. break;
  8409. }
  8410. const script1 = document.createElement("script");
  8411. script1.type = "text/javascript";
  8412. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8413. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8414. const script2 = document.createElement("script");
  8415. script2.type = "text/javascript";
  8416. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8417. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8418. const script3 = document.createElement("script");
  8419. script3.type = "text/javascript";
  8420. script3.charset = "UTF-8";
  8421. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8422. const script4 = document.createElement("script");
  8423. script4.type = "text/javascript";
  8424. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8425. script4.src = window.origin + "/js/Common/jietu2E.js";
  8426. if (_iframe) {
  8427. if (str == 'doc') {
  8428. _iframe = _formdiv.querySelector('iframe')
  8429. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8430. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8431. _iframe.contentWindow.document.body.appendChild(script1);
  8432. _iframe.contentWindow.document.body.appendChild(script2);
  8433. // _iframe.contentWindow.document.body.appendChild(script3);
  8434. _iframe.contentWindow.document.body.appendChild(script4);
  8435. })
  8436. if (onloadListener) {
  8437. _iframe.contentDocument.location.reload()
  8438. } else {
  8439. _iframe.contentDocument.location.reload()
  8440. }
  8441. } else if (str == 'courseDesign') {
  8442. U.UF.DL.iframeLoad(_iframe, function () {
  8443. // _iframe.contentWindow.U.MD.O.W.load();
  8444. // _iframe.contentWindow.document.body.appendChild(script1);
  8445. _iframe.contentWindow.document.body.appendChild(script2);
  8446. _iframe.contentWindow.document.body.appendChild(script4);
  8447. })
  8448. } else if (str == 'mind') {
  8449. _iframe = _formdiv.querySelector('iframe')
  8450. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8451. //
  8452. _iframe.contentWindow.document.body.appendChild(script1);
  8453. _iframe.contentWindow.document.body.appendChild(script2);
  8454. _iframe.contentWindow.document.body.appendChild(script4);
  8455. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8456. })
  8457. if (onloadListener) {
  8458. _iframe.contentDocument.location.reload()
  8459. } else {
  8460. _iframe.contentDocument.location.reload()
  8461. }
  8462. } else if (str == 'whiteboard') {
  8463. _iframe = _formdiv.querySelector('iframe')
  8464. let onloadListener = _iframe.onload = () => {
  8465. _iframe.contentWindow.document.body.appendChild(script1);
  8466. _iframe.contentWindow.document.body.appendChild(script2);
  8467. _iframe.contentWindow.document.body.appendChild(script4);
  8468. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8469. };
  8470. // if (onloadListener) {
  8471. // try {
  8472. // _iframe.src += "?cocorobo="+new Date().getTime()
  8473. // _iframe.contentWindow.document.location.reload()
  8474. // } catch (error) {
  8475. // }
  8476. // } else {
  8477. // _iframe.contentDocument.location.reload()
  8478. // }
  8479. } else {
  8480. _iframe.onload = () => {
  8481. _iframe.contentWindow.document.body.appendChild(script1);
  8482. _iframe.contentWindow.document.body.appendChild(script2);
  8483. // _iframe.contentWindow.document.body.appendChild(script3);
  8484. _iframe.contentWindow.document.body.appendChild(script4);
  8485. };
  8486. }
  8487. _jie.onclick = async () => {
  8488. let text = ''
  8489. if (aTool == 1) {
  8490. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8491. } else if (aTool == 6) {
  8492. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8493. } else if (aTool == 3) {
  8494. text = await U.MD.D.I.getEditorContent(_iframe);
  8495. }
  8496. _loading.style.display = 'flex'
  8497. console.log(_loading);
  8498. var _ajs = _iframe.contentWindow.document.createElement("script");
  8499. _ajs.type = "text/javascript";
  8500. _ajs.innerHTML =
  8501. // 'console.log(' + _loading + ');\n' +
  8502. 'var _js = document.createElement("script");\n' +
  8503. '_js.type="text/javascript";\n' +
  8504. '_js.charset="UTF-8";\n' +
  8505. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8506. "_js.onload = function(){\n" +
  8507. ' var a = document.getElementsByTagName("img")\n' +
  8508. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8509. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8510. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8511. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8512. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8513. "beforeUpload_shishi(file," +
  8514. "'" +
  8515. _userid +
  8516. "'" +
  8517. ", " +
  8518. "'" +
  8519. _cid +
  8520. "'" +
  8521. ", " +
  8522. "'" +
  8523. _stage +
  8524. "'" +
  8525. ", " +
  8526. "'" +
  8527. _task +
  8528. "'" +
  8529. ", " +
  8530. "'" +
  8531. _tool +
  8532. "'" +
  8533. ", " +
  8534. "'" +
  8535. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8536. "'" +
  8537. ", " +
  8538. "'" +
  8539. aTool +
  8540. "'" +
  8541. ", " +
  8542. "`" +
  8543. text +
  8544. "`" +
  8545. ")\n" +
  8546. " });\n" +
  8547. "}\n" +
  8548. "document.head.appendChild(_js);\n";
  8549. _iframe.contentWindow.document.head.appendChild(_ajs);
  8550. }
  8551. }
  8552. //U.MD.D.I.openClick(str);
  8553. //如果有任务栏信息
  8554. // if (_taskbar) {
  8555. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8556. // }
  8557. }
  8558. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8559. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8560. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8561. _userid = student.userid, //登录用户id
  8562. _username = student.student //用户名字
  8563. let _iframe;
  8564. let _cid = cid,
  8565. _stage = stage,
  8566. _task = task,
  8567. _tool = tool;
  8568. var _jie = $$("div", {
  8569. "style": {
  8570. "position": "absolute",
  8571. "bottom": "50px",
  8572. "right": "50px",
  8573. "zIndex": "9999",
  8574. "backgroundColor": "#2268bc",
  8575. "color": "#fff",
  8576. "padding": "12px 20px",
  8577. "cursor": "pointer",
  8578. "borderRadius": "4px",
  8579. },
  8580. "innerHTML": "提交作业"
  8581. })
  8582. let aTool = ''
  8583. let _loading = document.createElement('div')
  8584. _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;"
  8585. // _loading.id = "";
  8586. let _lchild = document.createElement('div')
  8587. let _limg = document.createElement('img')
  8588. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8589. _limg.style = "width: 26px;margin-right: 10px;"
  8590. _lchild.appendChild(_limg)
  8591. let _lspan = document.createElement('span')
  8592. _lspan.innerHTML = "上传中..."
  8593. _lchild.appendChild(_lspan)
  8594. _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%);"
  8595. _loading.appendChild(_lchild)
  8596. var _box = $$('div', {
  8597. "style": {
  8598. "position": "relative",
  8599. "width": "100%",
  8600. "height": "100%",
  8601. },
  8602. })
  8603. _box.appendChild(_loading)
  8604. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8605. switch (str) {
  8606. case "whiteboard":
  8607. aTool = 1;
  8608. _iframe = $$("iframe", {
  8609. "frameborder": "no",
  8610. "border": "0",
  8611. "scrolling ": "no",
  8612. "style": {
  8613. "cssText": "border:0;width:100%;height:100%"
  8614. },
  8615. "src": "https://beta.iwb.cocorobo.cn/"
  8616. })
  8617. _box.appendChild(_iframe);
  8618. _box.appendChild(_jie);
  8619. _formdiv = new U.UF.UI.form(
  8620. "电子白板-" + _username,
  8621. _box, {
  8622. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8623. "style": {
  8624. "width": "90%",
  8625. "height": "90%",
  8626. "overflow": 'hidden'
  8627. },
  8628. "onresize": function () { }
  8629. }, {
  8630. closecallback: function () { }
  8631. }, {
  8632. "style": {
  8633. "height": "36px"
  8634. }
  8635. }).form; //创建窗体
  8636. _taskbar = {
  8637. "id": str + _formdiv.id,
  8638. "style": {
  8639. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8640. },
  8641. "name": "电子白板",
  8642. "forms": _formdiv,
  8643. "click": function () {
  8644. U.MD.D.I.openApplication(str, obj, info);
  8645. }
  8646. }
  8647. break;
  8648. case "mind":
  8649. aTool = 3;
  8650. _iframe = $$("iframe", {
  8651. "frameborder": "no",
  8652. "border": "0",
  8653. "scrolling ": "no",
  8654. "style": {
  8655. "cssText": "border:0;width:100%;height:100%"
  8656. },
  8657. "src": "/kityminder-editor/dist/index.html"
  8658. })
  8659. _box.appendChild(_iframe);
  8660. _box.appendChild(_jie);
  8661. _formdiv = new U.UF.UI.form(
  8662. "思维导图-" + _username,
  8663. _box, { //"/jsmind/example/demo.html"
  8664. "id": "mind" + cid + stage + task + tool + _userid,
  8665. "style": {
  8666. "width": "90%",
  8667. "height": "90%",
  8668. "overflow": 'hidden'
  8669. },
  8670. "onresize": function () { }
  8671. }, {
  8672. closecallback: function () { }
  8673. }, {
  8674. "style": {
  8675. "height": "36px"
  8676. }
  8677. }).form; //创建窗体
  8678. _taskbar = {
  8679. "id": str + _formdiv.id,
  8680. "style": {
  8681. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8682. },
  8683. "name": "思维导图",
  8684. "forms": _formdiv,
  8685. "click": function () {
  8686. U.MD.D.I.openApplication(str, obj, info);
  8687. }
  8688. }
  8689. break;
  8690. case "MindMap":
  8691. aTool = 3;
  8692. _iframe = $$("iframe", {
  8693. "frameborder": "no",
  8694. "border": "0",
  8695. "scrolling ": "no",
  8696. "style": {
  8697. "cssText": "border:0;width:100%;height:100%"
  8698. },
  8699. "src": "//cloud.cocorobo.cn/mind/"
  8700. })
  8701. _box.appendChild(_iframe);
  8702. _box.appendChild(_jie);
  8703. _formdiv = new U.UF.UI.form(
  8704. "思维导图-" + _username,
  8705. _box, { //"/jsmind/example/demo.html"
  8706. "id": "mind" + cid + stage + task + tool + _userid,
  8707. "style": {
  8708. "width": "90%",
  8709. "height": "90%",
  8710. "overflow": 'hidden'
  8711. },
  8712. "onresize": function () { }
  8713. }, {
  8714. closecallback: function () { }
  8715. }, {
  8716. "style": {
  8717. "height": "36px"
  8718. }
  8719. }).form; //创建窗体
  8720. _taskbar = {
  8721. "id": str + _formdiv.id,
  8722. "style": {
  8723. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8724. },
  8725. "name": "思维导图",
  8726. "forms": _formdiv,
  8727. "click": function () {
  8728. U.MD.D.I.openApplication(str, obj, info);
  8729. }
  8730. }
  8731. break;
  8732. case "doc":
  8733. aTool = 6;
  8734. _iframe = $$("iframe", {
  8735. "frameborder": "no",
  8736. "border": "0",
  8737. "scrolling ": "no",
  8738. "style": {
  8739. "cssText": "border:0;width:100%;height:100%"
  8740. },
  8741. "src": "/Office/Word/WordEditArea.htm"
  8742. })
  8743. _box.appendChild(_iframe);
  8744. _box.appendChild(_jie);
  8745. _formdiv = new U.UF.UI.form(
  8746. "协同文档-" + _username,
  8747. _box, {
  8748. "id": "doc" + cid + stage + task + tool + _userid,
  8749. "style": {
  8750. "width": "90%",
  8751. "height": "90%",
  8752. "overflow": 'hidden'
  8753. },
  8754. "onresize": function () { }
  8755. }, {
  8756. closecallback: function () { }
  8757. }, {
  8758. "style": {
  8759. "height": "36px"
  8760. }
  8761. }).form; //创建窗体
  8762. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8763. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8764. })
  8765. _taskbar = {
  8766. "id": str + _formdiv.id,
  8767. "style": {
  8768. "backgroundImage": "url(/img/icon/doc.png)"
  8769. },
  8770. "name": "协同文档",
  8771. "forms": _formdiv,
  8772. "click": function () {
  8773. U.MD.D.I.openApplication(str, obj, info);
  8774. }
  8775. }
  8776. break;
  8777. case "mindNetwork": //好友打开
  8778. aTool = 7;
  8779. _iframe = $$("iframe", {
  8780. "webkitallowfullscreen": "",
  8781. "mozallowfullscreen": "",
  8782. "allowfullscreen": "",
  8783. "frameborder": "no",
  8784. "border": "0",
  8785. "scrolling ": "no",
  8786. "style": {
  8787. "cssText": "border:0; width:100%; height:100%;"
  8788. },
  8789. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8790. })
  8791. _box.appendChild(_iframe);
  8792. _box.appendChild(_jie);
  8793. _formdiv = new U.UF.UI.form(
  8794. "思维网格-" + _username,
  8795. _box, {
  8796. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8797. "style": {
  8798. "width": "90%",
  8799. "height": "90%",
  8800. "overflow": 'hidden'
  8801. },
  8802. "onresize": function () { }
  8803. }, {
  8804. closecallback: function () { }
  8805. }, {
  8806. "style": {
  8807. "height": "36px"
  8808. }
  8809. }).form; //创建窗体
  8810. _taskbar = {
  8811. "id": str + _formdiv.id,
  8812. "style": {
  8813. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8814. },
  8815. "name": "思维网格",
  8816. "forms": _formdiv,
  8817. "click": function () {
  8818. U.MD.D.I.openApplication(str, obj, info);
  8819. }
  8820. }
  8821. break;
  8822. case "courseDesign":
  8823. _iframe = $$("iframe", {
  8824. "webkitallowfullscreen": "",
  8825. "mozallowfullscreen": "",
  8826. "allowfullscreen": "",
  8827. "frameborder": "no",
  8828. "border": "0",
  8829. "scrolling ": "no",
  8830. "style": {
  8831. "cssText": "border:0; width:100%; height:100%;"
  8832. },
  8833. "src": "/course-design-vue"
  8834. })
  8835. _box.appendChild(_iframe);
  8836. _box.appendChild(_jie);
  8837. _formdiv = new U.UF.UI.form(
  8838. "项目设计-" + _username,
  8839. _box, {
  8840. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8841. "style": {
  8842. "width": "90%",
  8843. "height": "90%",
  8844. "overflow": 'hidden'
  8845. },
  8846. "onresize": function () { }
  8847. }, {
  8848. closecallback: function () { }
  8849. }, {
  8850. "style": {
  8851. "height": "36px"
  8852. }
  8853. }).form; //创建窗体
  8854. _taskbar = {
  8855. "id": str + _formdiv.id,
  8856. "style": {
  8857. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8858. },
  8859. "name": "项目设计",
  8860. "forms": _formdiv,
  8861. "click": function () {
  8862. U.MD.D.I.openApplication(str, obj, info);
  8863. }
  8864. }
  8865. break;
  8866. }
  8867. const script1 = document.createElement("script");
  8868. script1.type = "text/javascript";
  8869. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8870. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8871. const script2 = document.createElement("script");
  8872. script2.type = "text/javascript";
  8873. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8874. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8875. const script3 = document.createElement("script");
  8876. script3.type = "text/javascript";
  8877. script3.charset = "UTF-8";
  8878. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8879. const script4 = document.createElement("script");
  8880. script4.type = "text/javascript";
  8881. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8882. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8883. if (_iframe) {
  8884. if (str == 'doc') {
  8885. _iframe = _formdiv.querySelector('iframe')
  8886. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8887. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8888. _iframe.contentWindow.document.body.appendChild(script1);
  8889. _iframe.contentWindow.document.body.appendChild(script2);
  8890. // _iframe.contentWindow.document.body.appendChild(script3);
  8891. _iframe.contentWindow.document.body.appendChild(script4);
  8892. })
  8893. if (onloadListener) {
  8894. _iframe.contentDocument.location.reload()
  8895. } else {
  8896. _iframe.contentDocument.location.reload()
  8897. }
  8898. } else if (str == 'courseDesign') {
  8899. U.UF.DL.iframeLoad(_iframe, function () {
  8900. // _iframe.contentWindow.U.MD.O.W.load();
  8901. // _iframe.contentWindow.document.body.appendChild(script1);
  8902. _iframe.contentWindow.document.body.appendChild(script2);
  8903. _iframe.contentWindow.document.body.appendChild(script4);
  8904. })
  8905. } else if (str == 'mind') {
  8906. _iframe = _formdiv.querySelector('iframe')
  8907. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8908. //
  8909. _iframe.contentWindow.document.body.appendChild(script1);
  8910. _iframe.contentWindow.document.body.appendChild(script2);
  8911. _iframe.contentWindow.document.body.appendChild(script4);
  8912. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8913. })
  8914. if (onloadListener) {
  8915. _iframe.contentDocument.location.reload()
  8916. } else {
  8917. _iframe.contentDocument.location.reload()
  8918. }
  8919. } else if (str == 'whiteboard') {
  8920. _iframe = _formdiv.querySelector('iframe')
  8921. let onloadListener = _iframe.onload = () => {
  8922. _iframe.contentWindow.document.body.appendChild(script1);
  8923. _iframe.contentWindow.document.body.appendChild(script2);
  8924. _iframe.contentWindow.document.body.appendChild(script4);
  8925. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8926. };
  8927. // if (onloadListener) {
  8928. // try {
  8929. // _iframe.src += "?cocorobo="+new Date().getTime()
  8930. // _iframe.contentWindow.document.location.reload()
  8931. // } catch (error) {
  8932. // }
  8933. // } else {
  8934. // _iframe.contentDocument.location.reload()
  8935. // }
  8936. } else {
  8937. _iframe.onload = () => {
  8938. _iframe.contentWindow.document.body.appendChild(script1);
  8939. _iframe.contentWindow.document.body.appendChild(script2);
  8940. // _iframe.contentWindow.document.body.appendChild(script3);
  8941. _iframe.contentWindow.document.body.appendChild(script4);
  8942. };
  8943. }
  8944. _jie.onclick = async () => {
  8945. let text = ''
  8946. if (aTool == 1) {
  8947. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8948. } else if (aTool == 6) {
  8949. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8950. } else if (aTool == 3) {
  8951. text = await U.MD.D.I.getEditorContent(_iframe);
  8952. }
  8953. _loading.style.display = 'flex'
  8954. console.log(_loading);
  8955. var _ajs = _iframe.contentWindow.document.createElement("script");
  8956. _ajs.type = "text/javascript";
  8957. _ajs.innerHTML =
  8958. // 'console.log(' + _loading + ');\n' +
  8959. 'var _js = document.createElement("script");\n' +
  8960. '_js.type="text/javascript";\n' +
  8961. '_js.charset="UTF-8";\n' +
  8962. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8963. "_js.onload = function(){\n" +
  8964. ' var a = document.getElementsByTagName("img")\n' +
  8965. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8966. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8967. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8968. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8969. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8970. "beforeUpload_shishi(file," +
  8971. "'" +
  8972. _userid +
  8973. "'" +
  8974. ", " +
  8975. "'" +
  8976. _cid +
  8977. "'" +
  8978. ", " +
  8979. "'" +
  8980. _stage +
  8981. "'" +
  8982. ", " +
  8983. "'" +
  8984. _task +
  8985. "'" +
  8986. ", " +
  8987. "'" +
  8988. _tool +
  8989. "'" +
  8990. ", " +
  8991. "'" +
  8992. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8993. "'" +
  8994. ", " +
  8995. "'" +
  8996. aTool +
  8997. "'" +
  8998. ", " +
  8999. "`" +
  9000. text +
  9001. "`" +
  9002. ")\n" +
  9003. " });\n" +
  9004. "}\n" +
  9005. "document.head.appendChild(_js);\n";
  9006. _iframe.contentWindow.document.head.appendChild(_ajs);
  9007. }
  9008. }
  9009. }
  9010. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  9011. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9012. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9013. _userid = student.userid, //登录用户id
  9014. _username = student.student //用户名字
  9015. let _iframe;
  9016. let _cid = cid,
  9017. _stage = stage,
  9018. _task = task,
  9019. _tool = tool;
  9020. var _jie = $$("div", {
  9021. "style": {
  9022. "position": "absolute",
  9023. "bottom": "50px",
  9024. "right": "50px",
  9025. "zIndex": "9999",
  9026. "backgroundColor": "#2268bc",
  9027. "color": "#fff",
  9028. "padding": "12px 20px",
  9029. "cursor": "pointer",
  9030. "borderRadius": "4px",
  9031. },
  9032. "innerHTML": "提交作业"
  9033. })
  9034. let aTool = ''
  9035. let _loading = document.createElement('div')
  9036. _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;"
  9037. // _loading.id = "";
  9038. let _lchild = document.createElement('div')
  9039. let _limg = document.createElement('img')
  9040. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9041. _limg.style = "width: 26px;margin-right: 10px;"
  9042. _lchild.appendChild(_limg)
  9043. let _lspan = document.createElement('span')
  9044. _lspan.innerHTML = "上传中..."
  9045. _lchild.appendChild(_lspan)
  9046. _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%);"
  9047. _loading.appendChild(_lchild)
  9048. var _box = $$('div', {
  9049. "style": {
  9050. "position": "relative",
  9051. "width": "100%",
  9052. "height": "100%",
  9053. },
  9054. })
  9055. _box.appendChild(_loading)
  9056. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  9057. switch (str) {
  9058. case "whiteboard":
  9059. aTool = 1;
  9060. _iframe = $$("iframe", {
  9061. "frameborder": "no",
  9062. "border": "0",
  9063. "scrolling ": "no",
  9064. "style": {
  9065. "cssText": "border:0;width:100%;height:100%"
  9066. },
  9067. "src": "https://beta.iwb.cocorobo.cn/"
  9068. })
  9069. _box.appendChild(_iframe);
  9070. _box.appendChild(_jie);
  9071. _formdiv = new U.UF.UI.form(
  9072. "电子白板-" + _username,
  9073. _box, {
  9074. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9075. "style": {
  9076. "width": "90%",
  9077. "height": "90%",
  9078. "overflow": 'hidden'
  9079. },
  9080. "onresize": function () { }
  9081. }, {
  9082. closecallback: function () { }
  9083. }, {
  9084. "style": {
  9085. "height": "36px"
  9086. }
  9087. }).form; //创建窗体
  9088. _taskbar = {
  9089. "id": str + _formdiv.id,
  9090. "style": {
  9091. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9092. },
  9093. "name": "电子白板",
  9094. "forms": _formdiv,
  9095. "click": function () {
  9096. U.MD.D.I.openApplication(str, obj, info);
  9097. }
  9098. }
  9099. break;
  9100. case "mind":
  9101. aTool = 3;
  9102. _iframe = $$("iframe", {
  9103. "frameborder": "no",
  9104. "border": "0",
  9105. "scrolling ": "no",
  9106. "style": {
  9107. "cssText": "border:0;width:100%;height:100%"
  9108. },
  9109. "src": "/kityminder-editor/dist/index.html"
  9110. })
  9111. _box.appendChild(_iframe);
  9112. _box.appendChild(_jie);
  9113. _formdiv = new U.UF.UI.form(
  9114. "思维导图-" + _username,
  9115. _box, { //"/jsmind/example/demo.html"
  9116. "id": "mind" + cid + stage + task + tool + _userid,
  9117. "style": {
  9118. "width": "90%",
  9119. "height": "90%",
  9120. "overflow": 'hidden'
  9121. },
  9122. "onresize": function () { }
  9123. }, {
  9124. closecallback: function () { }
  9125. }, {
  9126. "style": {
  9127. "height": "36px"
  9128. }
  9129. }).form; //创建窗体
  9130. _taskbar = {
  9131. "id": str + _formdiv.id,
  9132. "style": {
  9133. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9134. },
  9135. "name": "思维导图",
  9136. "forms": _formdiv,
  9137. "click": function () {
  9138. U.MD.D.I.openApplication(str, obj, info);
  9139. }
  9140. }
  9141. break;
  9142. case "MindMap":
  9143. aTool = 3;
  9144. _iframe = $$("iframe", {
  9145. "frameborder": "no",
  9146. "border": "0",
  9147. "scrolling ": "no",
  9148. "style": {
  9149. "cssText": "border:0;width:100%;height:100%"
  9150. },
  9151. "src": "//cloud.cocorobo.cn/mind/"
  9152. })
  9153. _box.appendChild(_iframe);
  9154. _box.appendChild(_jie);
  9155. _formdiv = new U.UF.UI.form(
  9156. "思维导图-" + _username,
  9157. _box, { //"/jsmind/example/demo.html"
  9158. "id": "mind" + cid + stage + task + tool + _userid,
  9159. "style": {
  9160. "width": "90%",
  9161. "height": "90%",
  9162. "overflow": 'hidden'
  9163. },
  9164. "onresize": function () { }
  9165. }, {
  9166. closecallback: function () { }
  9167. }, {
  9168. "style": {
  9169. "height": "36px"
  9170. }
  9171. }).form; //创建窗体
  9172. _taskbar = {
  9173. "id": str + _formdiv.id,
  9174. "style": {
  9175. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9176. },
  9177. "name": "思维导图",
  9178. "forms": _formdiv,
  9179. "click": function () {
  9180. U.MD.D.I.openApplication(str, obj, info);
  9181. }
  9182. }
  9183. break;
  9184. case "doc":
  9185. aTool = 6;
  9186. _iframe = $$("iframe", {
  9187. "frameborder": "no",
  9188. "border": "0",
  9189. "scrolling ": "no",
  9190. "style": {
  9191. "cssText": "border:0;width:100%;height:100%"
  9192. },
  9193. "src": "/Office/Word/WordEditArea.htm"
  9194. })
  9195. _box.appendChild(_iframe);
  9196. _box.appendChild(_jie);
  9197. _formdiv = new U.UF.UI.form(
  9198. "协同文档-" + _username,
  9199. _box, {
  9200. "id": "doc" + cid + stage + task + tool + _userid,
  9201. "style": {
  9202. "width": "90%",
  9203. "height": "90%",
  9204. "overflow": 'hidden'
  9205. },
  9206. "onresize": function () { }
  9207. }, {
  9208. closecallback: function () { }
  9209. }, {
  9210. "style": {
  9211. "height": "36px"
  9212. }
  9213. }).form; //创建窗体
  9214. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9215. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9216. })
  9217. _taskbar = {
  9218. "id": str + _formdiv.id,
  9219. "style": {
  9220. "backgroundImage": "url(/img/icon/doc.png)"
  9221. },
  9222. "name": "协同文档",
  9223. "forms": _formdiv,
  9224. "click": function () {
  9225. U.MD.D.I.openApplication(str, obj, info);
  9226. }
  9227. }
  9228. break;
  9229. case "mindNetwork": //好友打开
  9230. aTool = 7;
  9231. _iframe = $$("iframe", {
  9232. "webkitallowfullscreen": "",
  9233. "mozallowfullscreen": "",
  9234. "allowfullscreen": "",
  9235. "frameborder": "no",
  9236. "border": "0",
  9237. "scrolling ": "no",
  9238. "style": {
  9239. "cssText": "border:0; width:100%; height:100%;"
  9240. },
  9241. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9242. })
  9243. _box.appendChild(_iframe);
  9244. _box.appendChild(_jie);
  9245. _formdiv = new U.UF.UI.form(
  9246. "思维网格-" + _username,
  9247. _box, {
  9248. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9249. "style": {
  9250. "width": "90%",
  9251. "height": "90%",
  9252. "overflow": 'hidden'
  9253. },
  9254. "onresize": function () { }
  9255. }, {
  9256. closecallback: function () { }
  9257. }, {
  9258. "style": {
  9259. "height": "36px"
  9260. }
  9261. }).form; //创建窗体
  9262. _taskbar = {
  9263. "id": str + _formdiv.id,
  9264. "style": {
  9265. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9266. },
  9267. "name": "思维网格",
  9268. "forms": _formdiv,
  9269. "click": function () {
  9270. U.MD.D.I.openApplication(str, obj, info);
  9271. }
  9272. }
  9273. break;
  9274. case "courseDesign":
  9275. _iframe = $$("iframe", {
  9276. "webkitallowfullscreen": "",
  9277. "mozallowfullscreen": "",
  9278. "allowfullscreen": "",
  9279. "frameborder": "no",
  9280. "border": "0",
  9281. "scrolling ": "no",
  9282. "style": {
  9283. "cssText": "border:0; width:100%; height:100%;"
  9284. },
  9285. "src": "/course-design-vue"
  9286. })
  9287. _box.appendChild(_iframe);
  9288. _box.appendChild(_jie);
  9289. _formdiv = new U.UF.UI.form(
  9290. "项目设计-" + _username,
  9291. _box, {
  9292. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9293. "style": {
  9294. "width": "90%",
  9295. "height": "90%",
  9296. "overflow": 'hidden'
  9297. },
  9298. "onresize": function () { }
  9299. }, {
  9300. closecallback: function () { }
  9301. }, {
  9302. "style": {
  9303. "height": "36px"
  9304. }
  9305. }).form; //创建窗体
  9306. _taskbar = {
  9307. "id": str + _formdiv.id,
  9308. "style": {
  9309. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9310. },
  9311. "name": "项目设计",
  9312. "forms": _formdiv,
  9313. "click": function () {
  9314. U.MD.D.I.openApplication(str, obj, info);
  9315. }
  9316. }
  9317. break;
  9318. }
  9319. const script1 = document.createElement("script");
  9320. script1.type = "text/javascript";
  9321. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9322. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9323. const script2 = document.createElement("script");
  9324. script2.type = "text/javascript";
  9325. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9326. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9327. const script3 = document.createElement("script");
  9328. script3.type = "text/javascript";
  9329. script3.charset = "UTF-8";
  9330. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9331. const script4 = document.createElement("script");
  9332. script4.type = "text/javascript";
  9333. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9334. script4.src = window.origin + "/js/Common/jietu2E.js";
  9335. if (_iframe) {
  9336. if (str == 'doc') {
  9337. _iframe = _formdiv.querySelector('iframe')
  9338. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9339. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9340. _iframe.contentWindow.document.body.appendChild(script1);
  9341. _iframe.contentWindow.document.body.appendChild(script2);
  9342. // _iframe.contentWindow.document.body.appendChild(script3);
  9343. _iframe.contentWindow.document.body.appendChild(script4);
  9344. })
  9345. if (onloadListener) {
  9346. _iframe.contentDocument.location.reload()
  9347. } else {
  9348. _iframe.contentDocument.location.reload()
  9349. }
  9350. } else if (str == 'courseDesign') {
  9351. U.UF.DL.iframeLoad(_iframe, function () {
  9352. // _iframe.contentWindow.U.MD.O.W.load();
  9353. // _iframe.contentWindow.document.body.appendChild(script1);
  9354. _iframe.contentWindow.document.body.appendChild(script2);
  9355. _iframe.contentWindow.document.body.appendChild(script4);
  9356. })
  9357. } else if (str == 'mind') {
  9358. _iframe = _formdiv.querySelector('iframe')
  9359. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9360. //
  9361. _iframe.contentWindow.document.body.appendChild(script1);
  9362. _iframe.contentWindow.document.body.appendChild(script2);
  9363. _iframe.contentWindow.document.body.appendChild(script4);
  9364. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9365. })
  9366. if (onloadListener) {
  9367. _iframe.contentDocument.location.reload()
  9368. } else {
  9369. _iframe.contentDocument.location.reload()
  9370. }
  9371. } else if (str == 'whiteboard') {
  9372. _iframe = _formdiv.querySelector('iframe')
  9373. let onloadListener = _iframe.onload = () => {
  9374. _iframe.contentWindow.document.body.appendChild(script1);
  9375. _iframe.contentWindow.document.body.appendChild(script2);
  9376. _iframe.contentWindow.document.body.appendChild(script4);
  9377. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9378. };
  9379. // if (onloadListener) {
  9380. // try {
  9381. // _iframe.src += "?cocorobo="+new Date().getTime()
  9382. // _iframe.contentWindow.document.location.reload()
  9383. // } catch (error) {
  9384. // }
  9385. // } else {
  9386. // _iframe.contentDocument.location.reload()
  9387. // }
  9388. } else {
  9389. _iframe.onload = () => {
  9390. _iframe.contentWindow.document.body.appendChild(script1);
  9391. _iframe.contentWindow.document.body.appendChild(script2);
  9392. // _iframe.contentWindow.document.body.appendChild(script3);
  9393. _iframe.contentWindow.document.body.appendChild(script4);
  9394. };
  9395. }
  9396. _jie.onclick = async () => {
  9397. let text = ''
  9398. if (aTool == 1) {
  9399. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9400. } else if (aTool == 6) {
  9401. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9402. } else if (aTool == 3) {
  9403. text = await U.MD.D.I.getEditorContent(_iframe);
  9404. }
  9405. _loading.style.display = 'flex'
  9406. console.log(_loading);
  9407. var _ajs = _iframe.contentWindow.document.createElement("script");
  9408. _ajs.type = "text/javascript";
  9409. _ajs.innerHTML =
  9410. // 'console.log(' + _loading + ');\n' +
  9411. 'var _js = document.createElement("script");\n' +
  9412. '_js.type="text/javascript";\n' +
  9413. '_js.charset="UTF-8";\n' +
  9414. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9415. "_js.onload = function(){\n" +
  9416. ' var a = document.getElementsByTagName("img")\n' +
  9417. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9418. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9419. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9420. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9421. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9422. "beforeUpload_shishi(file," +
  9423. "'" +
  9424. _userid +
  9425. "'" +
  9426. ", " +
  9427. "'" +
  9428. _cid +
  9429. "'" +
  9430. ", " +
  9431. "'" +
  9432. _stage +
  9433. "'" +
  9434. ", " +
  9435. "'" +
  9436. _task +
  9437. "'" +
  9438. ", " +
  9439. "'" +
  9440. _tool +
  9441. "'" +
  9442. ", " +
  9443. "'" +
  9444. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9445. "'" +
  9446. ", " +
  9447. "'" +
  9448. aTool +
  9449. "'" +
  9450. ", " +
  9451. "`" +
  9452. text +
  9453. "`" +
  9454. ")\n" +
  9455. " });\n" +
  9456. "}\n" +
  9457. "document.head.appendChild(_js);\n";
  9458. _iframe.contentWindow.document.head.appendChild(_ajs);
  9459. }
  9460. }
  9461. }
  9462. U.MD.D.I.getEditorContent = function (iframe) {
  9463. return new Promise((resolve, reject) => {
  9464. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9465. console.log(content);
  9466. resolve(content)
  9467. });
  9468. });
  9469. }
  9470. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9471. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9472. // if (res.value[0].length > 0) {
  9473. // // resolve(res.value[0][0].text);
  9474. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9475. // $(fileInput).val('');
  9476. // });
  9477. // }
  9478. // }, [], { "type": "GET", "withCredentials": true });
  9479. var xmlhttp;
  9480. var Mac, Sn, DeviceId
  9481. if (window.XMLHttpRequest) {
  9482. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9483. xmlhttp = new XMLHttpRequest();
  9484. } else {
  9485. // IE6, IE5 浏览器执行代码
  9486. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9487. }
  9488. xmlhttp.onreadystatechange = function () {
  9489. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9490. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9491. // resolve(res.value[0][0].text);
  9492. if (type == '2') {
  9493. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9494. } else if (type == '3') {
  9495. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9496. }
  9497. } else {
  9498. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9499. }
  9500. }
  9501. }
  9502. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9503. xmlhttp.send();
  9504. }
  9505. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9506. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9507. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9508. _userinfo = US.userInfo, //登录用户信息
  9509. _userid = US.userInfo.userid //登录用户id
  9510. let _iframe;
  9511. let _cid = cid,
  9512. _stage = stage,
  9513. _task = task,
  9514. _tool = tool;
  9515. var _jie = $$("div", {
  9516. "style": {
  9517. "position": "absolute",
  9518. "bottom": "50px",
  9519. "right": "50px",
  9520. "zIndex": "9999",
  9521. "backgroundColor": "#2268bc",
  9522. "color": "#fff",
  9523. "padding": "12px 20px",
  9524. "cursor": "pointer",
  9525. "borderRadius": "4px",
  9526. },
  9527. "innerHTML": "确认并提交"
  9528. })
  9529. let aTool = ''
  9530. let _loading = document.createElement('div')
  9531. _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;"
  9532. // _loading.id = "";
  9533. let _lchild = document.createElement('div')
  9534. let _limg = document.createElement('img')
  9535. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9536. _limg.style = "width: 26px;margin-right: 10px;"
  9537. _lchild.appendChild(_limg)
  9538. let _lspan = document.createElement('span')
  9539. _lspan.innerHTML = "上传中..."
  9540. _lchild.appendChild(_lspan)
  9541. _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%);"
  9542. _loading.appendChild(_lchild)
  9543. var _box = $$('div', {
  9544. "style": {
  9545. "position": "relative",
  9546. "width": "100%",
  9547. "height": "100%",
  9548. },
  9549. })
  9550. _box.appendChild(_loading)
  9551. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9552. switch (str) {
  9553. case "whiteboard":
  9554. aTool = 1;
  9555. _iframe = $$("iframe", {
  9556. "frameborder": "no",
  9557. "border": "0",
  9558. "scrolling ": "no",
  9559. "style": {
  9560. "cssText": "border:0;width:100%;height:100%"
  9561. },
  9562. "src": "https://beta.iwb.cocorobo.cn/"
  9563. })
  9564. _box.appendChild(_iframe);
  9565. _box.appendChild(_jie);
  9566. _formdiv = new U.UF.UI.form(
  9567. "电子白板",
  9568. _box, {
  9569. "id": "whiteboards" + cid + stage + task + tool,
  9570. "style": {
  9571. "width": "90%",
  9572. "height": "90%",
  9573. "overflow": 'hidden'
  9574. },
  9575. "onresize": function () { }
  9576. }, {
  9577. closecallback: function () { }
  9578. }, {
  9579. "style": {
  9580. "height": "36px"
  9581. }
  9582. }).form; //创建窗体
  9583. _taskbar = {
  9584. "id": str + _formdiv.id,
  9585. "style": {
  9586. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9587. },
  9588. "name": "电子白板",
  9589. "forms": _formdiv,
  9590. "click": function () {
  9591. U.MD.D.I.openApplication(str, obj, info);
  9592. }
  9593. }
  9594. break;
  9595. case "mind":
  9596. aTool = 3;
  9597. _iframe = $$("iframe", {
  9598. "frameborder": "no",
  9599. "border": "0",
  9600. "scrolling ": "no",
  9601. "style": {
  9602. "cssText": "border:0;width:100%;height:100%"
  9603. },
  9604. "src": "/kityminder-editor/dist/index.html"
  9605. });
  9606. _box.appendChild(_iframe);
  9607. _box.appendChild(_jie);
  9608. _formdiv = new U.UF.UI.form(
  9609. "思维导图",
  9610. _box, { //"/jsmind/example/demo.html"
  9611. "id": "minds" + cid + stage + task + tool,
  9612. "style": {
  9613. "width": "90%",
  9614. "height": "90%",
  9615. "overflow": 'hidden'
  9616. },
  9617. "onresize": function () { }
  9618. }, {
  9619. closecallback: function () { }
  9620. }, {
  9621. "style": {
  9622. "height": "36px"
  9623. }
  9624. }).form; //创建窗体
  9625. _taskbar = {
  9626. "id": str + _formdiv.id,
  9627. "style": {
  9628. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9629. },
  9630. "name": "思维导图",
  9631. "forms": _formdiv,
  9632. "click": function () {
  9633. U.MD.D.I.openApplication(str, obj, info);
  9634. }
  9635. }
  9636. break;
  9637. case "doc":
  9638. aTool = 6;
  9639. _iframe = $$("iframe", {
  9640. "frameborder": "no",
  9641. "border": "0",
  9642. "scrolling ": "no",
  9643. "style": {
  9644. "cssText": "border:0;width:100%;height:100%"
  9645. },
  9646. "src": "/Office/Word/WordEditArea.htm"
  9647. })
  9648. _box.appendChild(_iframe);
  9649. _box.appendChild(_jie);
  9650. _formdiv = new U.UF.UI.form(
  9651. "协同文档",
  9652. _box, {
  9653. "id": "docs" + cid + stage + task + tool,
  9654. "style": {
  9655. "width": "90%",
  9656. "height": "90%",
  9657. "overflow": 'hidden'
  9658. },
  9659. "onresize": function () { }
  9660. }, {
  9661. closecallback: function () { }
  9662. }, {
  9663. "style": {
  9664. "height": "36px"
  9665. }
  9666. }).form; //创建窗体
  9667. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9668. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9669. })
  9670. _taskbar = {
  9671. "id": str + _formdiv.id,
  9672. "style": {
  9673. "backgroundImage": "url(/img/icon/doc.png)"
  9674. },
  9675. "name": "协同文档",
  9676. "forms": _formdiv,
  9677. "click": function () {
  9678. U.MD.D.I.openApplication(str, obj, info);
  9679. }
  9680. }
  9681. break;
  9682. }
  9683. const script1 = document.createElement("script");
  9684. script1.type = "text/javascript";
  9685. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9686. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9687. const script2 = document.createElement("script");
  9688. script2.type = "text/javascript";
  9689. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9690. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9691. const script3 = document.createElement("script");
  9692. script3.type = "text/javascript";
  9693. script3.charset = "UTF-8";
  9694. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9695. const script4 = document.createElement("script");
  9696. script4.type = "text/javascript";
  9697. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9698. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9699. if (_iframe) {
  9700. if (str == 'doc') {
  9701. _iframe = _formdiv.querySelector('iframe')
  9702. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9703. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9704. _iframe.contentWindow.document.body.appendChild(script1);
  9705. _iframe.contentWindow.document.body.appendChild(script2);
  9706. // _iframe.contentWindow.document.body.appendChild(script3);
  9707. _iframe.contentWindow.document.body.appendChild(script4);
  9708. })
  9709. if (onloadListener) {
  9710. _iframe.contentDocument.location.reload()
  9711. } else {
  9712. _iframe.contentDocument.location.reload()
  9713. }
  9714. } else if (str == 'mind') {
  9715. _iframe = _formdiv.querySelector('iframe')
  9716. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9717. _iframe.contentWindow.document.body.appendChild(script1);
  9718. _iframe.contentWindow.document.body.appendChild(script2);
  9719. _iframe.contentWindow.document.body.appendChild(script4);
  9720. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9721. })
  9722. if (onloadListener) {
  9723. _iframe.contentDocument.location.reload()
  9724. } else {
  9725. _iframe.contentDocument.location.reload()
  9726. }
  9727. } else {
  9728. _iframe.onload = () => {
  9729. _iframe.contentWindow.document.body.appendChild(script1);
  9730. _iframe.contentWindow.document.body.appendChild(script2);
  9731. // _iframe.contentWindow.document.body.appendChild(script3);
  9732. _iframe.contentWindow.document.body.appendChild(script4);
  9733. };
  9734. }
  9735. _jie.onclick = async () => {
  9736. let text = ''
  9737. if (aTool == 6) {
  9738. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9739. } else if (aTool == 3) {
  9740. text = await U.MD.D.I.getEditorContent(_iframe);
  9741. }
  9742. _loading.style.display = 'flex'
  9743. console.log(_loading);
  9744. var _ajs = _iframe.contentWindow.document.createElement("script");
  9745. _ajs.type = "text/javascript";
  9746. _ajs.innerHTML =
  9747. // 'console.log(' + _loading + ');\n' +
  9748. 'var _js = document.createElement("script");\n' +
  9749. '_js.type="text/javascript";\n' +
  9750. '_js.charset="UTF-8";\n' +
  9751. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9752. "_js.onload = function(){\n" +
  9753. ' var a = document.getElementsByTagName("img")\n' +
  9754. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9755. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9756. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9757. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9758. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9759. "beforeUpload_shishi(file," +
  9760. "'" +
  9761. _userid +
  9762. "'" +
  9763. ", " +
  9764. "'" +
  9765. _cid +
  9766. "'" +
  9767. ", " +
  9768. "'" +
  9769. _stage +
  9770. "'" +
  9771. ", " +
  9772. "'" +
  9773. _task +
  9774. "'" +
  9775. ", " +
  9776. "'" +
  9777. _tool +
  9778. "'" +
  9779. ", " +
  9780. "'" +
  9781. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9782. "'" +
  9783. ", " +
  9784. "'" +
  9785. aTool +
  9786. "'" +
  9787. ", " +
  9788. "`" +
  9789. text +
  9790. "`" +
  9791. ")\n" +
  9792. " });\n" +
  9793. "}\n" +
  9794. "document.head.appendChild(_js);\n";
  9795. _iframe.contentWindow.document.head.appendChild(_ajs);
  9796. }
  9797. }
  9798. //U.MD.D.I.openClick(str);
  9799. //如果有任务栏信息
  9800. // if (_taskbar) {
  9801. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9802. // }
  9803. }
  9804. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9805. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9806. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9807. _userinfo = US.userInfo, //登录用户信息
  9808. _userid = US.userInfo.userid //登录用户id
  9809. let _iframe;
  9810. let _cid = cid,
  9811. _stage = stage,
  9812. _task = task,
  9813. _tool = tool;
  9814. var _jie = $$("div", {
  9815. "style": {
  9816. "position": "absolute",
  9817. "bottom": "50px",
  9818. "right": "50px",
  9819. "zIndex": "9999",
  9820. "backgroundColor": "#2268bc",
  9821. "color": "#fff",
  9822. "padding": "12px 20px",
  9823. "cursor": "pointer",
  9824. "borderRadius": "4px",
  9825. },
  9826. "innerHTML": "确认并提交"
  9827. })
  9828. let aTool = ''
  9829. let _loading = document.createElement('div')
  9830. _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;"
  9831. // _loading.id = "";
  9832. let _lchild = document.createElement('div')
  9833. let _limg = document.createElement('img')
  9834. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9835. _limg.style = "width: 26px;margin-right: 10px;"
  9836. _lchild.appendChild(_limg)
  9837. let _lspan = document.createElement('span')
  9838. _lspan.innerHTML = "上传中..."
  9839. _lchild.appendChild(_lspan)
  9840. _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%);"
  9841. _loading.appendChild(_lchild)
  9842. var _box = $$('div', {
  9843. "style": {
  9844. "position": "relative",
  9845. "width": "100%",
  9846. "height": "100%",
  9847. },
  9848. })
  9849. _box.appendChild(_loading)
  9850. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9851. switch (str) {
  9852. case "whiteboard":
  9853. aTool = 1;
  9854. _iframe = $$("iframe", {
  9855. "frameborder": "no",
  9856. "border": "0",
  9857. "scrolling ": "no",
  9858. "style": {
  9859. "cssText": "border:0;width:100%;height:100%"
  9860. },
  9861. "src": "https://beta.iwb.cocorobo.cn/"
  9862. })
  9863. _box.appendChild(_iframe);
  9864. _box.appendChild(_jie);
  9865. _formdiv = new U.UF.UI.form(
  9866. "电子白板",
  9867. _box, {
  9868. "id": "whiteboards" + cid + stage + task + tool,
  9869. "style": {
  9870. "width": "90%",
  9871. "height": "90%",
  9872. "overflow": 'hidden'
  9873. },
  9874. "onresize": function () { }
  9875. }, {
  9876. closecallback: function () { }
  9877. }, {
  9878. "style": {
  9879. "height": "36px"
  9880. }
  9881. }).form; //创建窗体
  9882. _taskbar = {
  9883. "id": str + _formdiv.id,
  9884. "style": {
  9885. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9886. },
  9887. "name": "电子白板",
  9888. "forms": _formdiv,
  9889. "click": function () {
  9890. U.MD.D.I.openApplication(str, obj, info);
  9891. }
  9892. }
  9893. break;
  9894. case "mind":
  9895. aTool = 3;
  9896. _iframe = $$("iframe", {
  9897. "frameborder": "no",
  9898. "border": "0",
  9899. "scrolling ": "no",
  9900. "style": {
  9901. "cssText": "border:0;width:100%;height:100%"
  9902. },
  9903. "src": "/kityminder-editor/dist/index.html"
  9904. });
  9905. _box.appendChild(_iframe);
  9906. _box.appendChild(_jie);
  9907. _formdiv = new U.UF.UI.form(
  9908. "思维导图",
  9909. _box, { //"/jsmind/example/demo.html"
  9910. "id": "minds" + cid + stage + task + tool,
  9911. "style": {
  9912. "width": "90%",
  9913. "height": "90%",
  9914. "overflow": 'hidden'
  9915. },
  9916. "onresize": function () { }
  9917. }, {
  9918. closecallback: function () { }
  9919. }, {
  9920. "style": {
  9921. "height": "36px"
  9922. }
  9923. }).form; //创建窗体
  9924. _taskbar = {
  9925. "id": str + _formdiv.id,
  9926. "style": {
  9927. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9928. },
  9929. "name": "思维导图",
  9930. "forms": _formdiv,
  9931. "click": function () {
  9932. U.MD.D.I.openApplication(str, obj, info);
  9933. }
  9934. }
  9935. break;
  9936. case "doc":
  9937. aTool = 6;
  9938. _iframe = $$("iframe", {
  9939. "frameborder": "no",
  9940. "border": "0",
  9941. "scrolling ": "no",
  9942. "style": {
  9943. "cssText": "border:0;width:100%;height:100%"
  9944. },
  9945. "src": "/Office/Word/WordEditArea.htm"
  9946. })
  9947. _box.appendChild(_iframe);
  9948. _box.appendChild(_jie);
  9949. _formdiv = new U.UF.UI.form(
  9950. "协同文档",
  9951. _box, {
  9952. "id": "docs" + cid + stage + task + tool,
  9953. "style": {
  9954. "width": "90%",
  9955. "height": "90%",
  9956. "overflow": 'hidden'
  9957. },
  9958. "onresize": function () { }
  9959. }, {
  9960. closecallback: function () { }
  9961. }, {
  9962. "style": {
  9963. "height": "36px"
  9964. }
  9965. }).form; //创建窗体
  9966. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9967. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9968. })
  9969. _taskbar = {
  9970. "id": str + _formdiv.id,
  9971. "style": {
  9972. "backgroundImage": "url(/img/icon/doc.png)"
  9973. },
  9974. "name": "协同文档",
  9975. "forms": _formdiv,
  9976. "click": function () {
  9977. U.MD.D.I.openApplication(str, obj, info);
  9978. }
  9979. }
  9980. break;
  9981. }
  9982. const script1 = document.createElement("script");
  9983. script1.type = "text/javascript";
  9984. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9985. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9986. const script2 = document.createElement("script");
  9987. script2.type = "text/javascript";
  9988. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9989. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9990. const script3 = document.createElement("script");
  9991. script3.type = "text/javascript";
  9992. script3.charset = "UTF-8";
  9993. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9994. const script4 = document.createElement("script");
  9995. script4.type = "text/javascript";
  9996. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9997. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9998. if (_iframe) {
  9999. if (str == 'doc') {
  10000. _iframe = _formdiv.querySelector('iframe')
  10001. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10002. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10003. _iframe.contentWindow.document.body.appendChild(script1);
  10004. _iframe.contentWindow.document.body.appendChild(script2);
  10005. // _iframe.contentWindow.document.body.appendChild(script3);
  10006. _iframe.contentWindow.document.body.appendChild(script4);
  10007. })
  10008. if (onloadListener) {
  10009. _iframe.contentDocument.location.reload()
  10010. } else {
  10011. _iframe.contentDocument.location.reload()
  10012. }
  10013. } else if (str == 'mind') {
  10014. _iframe = _formdiv.querySelector('iframe')
  10015. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10016. _iframe.contentWindow.document.body.appendChild(script1);
  10017. _iframe.contentWindow.document.body.appendChild(script2);
  10018. _iframe.contentWindow.document.body.appendChild(script4);
  10019. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10020. })
  10021. if (onloadListener) {
  10022. _iframe.contentDocument.location.reload()
  10023. } else {
  10024. _iframe.contentDocument.location.reload()
  10025. }
  10026. } else {
  10027. _iframe.onload = () => {
  10028. _iframe.contentWindow.document.body.appendChild(script1);
  10029. _iframe.contentWindow.document.body.appendChild(script2);
  10030. // _iframe.contentWindow.document.body.appendChild(script3);
  10031. _iframe.contentWindow.document.body.appendChild(script4);
  10032. };
  10033. }
  10034. _jie.onclick = async () => {
  10035. let text = ''
  10036. if (aTool == 6) {
  10037. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10038. } else if (aTool == 3) {
  10039. text = await U.MD.D.I.getEditorContent(_iframe);
  10040. }
  10041. _loading.style.display = 'flex'
  10042. console.log(_loading);
  10043. var _ajs = _iframe.contentWindow.document.createElement("script");
  10044. _ajs.type = "text/javascript";
  10045. _ajs.innerHTML =
  10046. // 'console.log(' + _loading + ');\n' +
  10047. 'var _js = document.createElement("script");\n' +
  10048. '_js.type="text/javascript";\n' +
  10049. '_js.charset="UTF-8";\n' +
  10050. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10051. "_js.onload = function(){\n" +
  10052. ' var a = document.getElementsByTagName("img")\n' +
  10053. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10054. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10055. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10056. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10057. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10058. "beforeUpload_shishi(file," +
  10059. "'" +
  10060. _userid +
  10061. "'" +
  10062. ", " +
  10063. "'" +
  10064. _cid +
  10065. "'" +
  10066. ", " +
  10067. "'" +
  10068. _stage +
  10069. "'" +
  10070. ", " +
  10071. "'" +
  10072. _task +
  10073. "'" +
  10074. ", " +
  10075. "'" +
  10076. _tool +
  10077. "'" +
  10078. ", " +
  10079. "'" +
  10080. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  10081. "'" +
  10082. ", " +
  10083. "'" +
  10084. aTool +
  10085. "'" +
  10086. ", " +
  10087. "`" +
  10088. text +
  10089. "`" +
  10090. ")\n" +
  10091. " });\n" +
  10092. "}\n" +
  10093. "document.head.appendChild(_js);\n";
  10094. _iframe.contentWindow.document.head.appendChild(_ajs);
  10095. }
  10096. }
  10097. //U.MD.D.I.openClick(str);
  10098. //如果有任务栏信息
  10099. // if (_taskbar) {
  10100. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10101. // }
  10102. }
  10103. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  10104. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10105. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10106. _userinfo = US.userInfo, //登录用户信息
  10107. _userid = US.userInfo.userid //登录用户id
  10108. let _iframe;
  10109. let _cid = cid,
  10110. _stage = stage,
  10111. _task = task,
  10112. _tool = tool;
  10113. var _jie = $$("div", {
  10114. "style": {
  10115. "position": "absolute",
  10116. "bottom": "50px",
  10117. "right": "50px",
  10118. "zIndex": "9999",
  10119. "backgroundColor": "#2268bc",
  10120. "color": "#fff",
  10121. "padding": "12px 20px",
  10122. "cursor": "pointer",
  10123. "borderRadius": "4px",
  10124. },
  10125. "innerHTML": "上传模板"
  10126. })
  10127. let aTool = ''
  10128. let _loading = document.createElement('div')
  10129. _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;"
  10130. // _loading.id = "";
  10131. let _lchild = document.createElement('div')
  10132. let _limg = document.createElement('img')
  10133. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10134. _limg.style = "width: 26px;margin-right: 10px;"
  10135. _lchild.appendChild(_limg)
  10136. let _lspan = document.createElement('span')
  10137. _lspan.innerHTML = "上传中..."
  10138. _lchild.appendChild(_lspan)
  10139. _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%);"
  10140. _loading.appendChild(_lchild)
  10141. var _box = $$('div', {
  10142. "style": {
  10143. "position": "relative",
  10144. "width": "100%",
  10145. "height": "100%",
  10146. },
  10147. })
  10148. _box.appendChild(_loading)
  10149. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  10150. switch (str) {
  10151. case "whiteboard":
  10152. aTool = 1;
  10153. _iframe = $$("iframe", {
  10154. "frameborder": "no",
  10155. "border": "0",
  10156. "scrolling ": "no",
  10157. "style": {
  10158. "cssText": "border:0;width:100%;height:100%"
  10159. },
  10160. "src": "https://beta.iwb.cocorobo.cn/"
  10161. })
  10162. _box.appendChild(_iframe);
  10163. _box.appendChild(_jie);
  10164. _formdiv = new U.UF.UI.form(
  10165. "电子白板",
  10166. _box, {
  10167. "id": "whiteboards_Yu" + cid + stage + task + tool,
  10168. "style": {
  10169. "width": "90%",
  10170. "height": "90%",
  10171. "overflow": 'hidden'
  10172. },
  10173. "onresize": function () { }
  10174. }, {
  10175. closecallback: function () { }
  10176. }, {
  10177. "style": {
  10178. "height": "36px"
  10179. }
  10180. }).form; //创建窗体
  10181. _taskbar = {
  10182. "id": str + _formdiv.id,
  10183. "style": {
  10184. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10185. },
  10186. "name": "电子白板",
  10187. "forms": _formdiv,
  10188. "click": function () {
  10189. U.MD.D.I.openApplication(str, obj, info);
  10190. }
  10191. }
  10192. break;
  10193. case "mind":
  10194. aTool = 3;
  10195. _iframe = $$("iframe", {
  10196. "frameborder": "no",
  10197. "border": "0",
  10198. "scrolling ": "no",
  10199. "style": {
  10200. "cssText": "border:0;width:100%;height:100%"
  10201. },
  10202. "src": "/kityminder-editor/dist/index.html"
  10203. });
  10204. _box.appendChild(_iframe);
  10205. _box.appendChild(_jie);
  10206. _formdiv = new U.UF.UI.form(
  10207. "思维导图",
  10208. _box, { //"/jsmind/example/demo.html"
  10209. "id": "minds_Yu" + cid + stage + task + tool,
  10210. "style": {
  10211. "width": "90%",
  10212. "height": "90%",
  10213. "overflow": 'hidden'
  10214. },
  10215. "onresize": function () { }
  10216. }, {
  10217. closecallback: function () { }
  10218. }, {
  10219. "style": {
  10220. "height": "36px"
  10221. }
  10222. }).form; //创建窗体
  10223. _taskbar = {
  10224. "id": str + _formdiv.id,
  10225. "style": {
  10226. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10227. },
  10228. "name": "思维导图",
  10229. "forms": _formdiv,
  10230. "click": function () {
  10231. U.MD.D.I.openApplication(str, obj, info);
  10232. }
  10233. }
  10234. break;
  10235. case "doc":
  10236. aTool = 6;
  10237. _iframe = $$("iframe", {
  10238. "frameborder": "no",
  10239. "border": "0",
  10240. "scrolling ": "no",
  10241. "style": {
  10242. "cssText": "border:0;width:100%;height:100%"
  10243. },
  10244. "src": "/Office/Word/WordEditArea.htm"
  10245. })
  10246. _box.appendChild(_iframe);
  10247. _box.appendChild(_jie);
  10248. _formdiv = new U.UF.UI.form(
  10249. "协同文档",
  10250. _box, {
  10251. "id": "docs_Yu" + cid + stage + task + tool,
  10252. "style": {
  10253. "width": "90%",
  10254. "height": "90%",
  10255. "overflow": 'hidden'
  10256. },
  10257. "onresize": function () { }
  10258. }, {
  10259. closecallback: function () { }
  10260. }, {
  10261. "style": {
  10262. "height": "36px"
  10263. }
  10264. }).form; //创建窗体
  10265. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10266. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10267. })
  10268. _taskbar = {
  10269. "id": str + _formdiv.id,
  10270. "style": {
  10271. "backgroundImage": "url(/img/icon/doc.png)"
  10272. },
  10273. "name": "协同文档",
  10274. "forms": _formdiv,
  10275. "click": function () {
  10276. U.MD.D.I.openApplication(str, obj, info);
  10277. }
  10278. }
  10279. break;
  10280. case "CocoPi":
  10281. aTool = 57;
  10282. _iframe = $$("iframe", {
  10283. "allowpaymentrequest": "allowpaymentrequest",
  10284. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10285. "webkitallowfullscreen": "",
  10286. "mozallowfullscreen": "",
  10287. "frameborder": "no",
  10288. "border": "0",
  10289. "scrolling ": "no",
  10290. "style": {
  10291. "cssText": "border:0;width:100%;height:100%"
  10292. },
  10293. "src": "https://pi.cocorobo.cn/"
  10294. })
  10295. _box.appendChild(_iframe);
  10296. _box.appendChild(_jie);
  10297. _formdiv = new U.UF.UI.form(
  10298. "CocoPi",
  10299. _box, {
  10300. "id": "CocoPi_Yu" + cid + stage + task + tool,
  10301. "style": {
  10302. "width": "90%",
  10303. "height": "90%",
  10304. "overflow": 'hidden'
  10305. },
  10306. "onresize": function () { }
  10307. }, {
  10308. closecallback: function () { }
  10309. }, {
  10310. "style": {
  10311. "height": "36px"
  10312. }
  10313. }).form; //创建窗体
  10314. _taskbar = {
  10315. "id": str + _formdiv.id,
  10316. "style": {
  10317. "backgroundImage": "url(/img/icon/cocopi.png)"
  10318. },
  10319. "name": "CocoPi",
  10320. "forms": _formdiv,
  10321. "click": function () {
  10322. U.MD.D.I.openApplication(str, obj, info);
  10323. }
  10324. }
  10325. break;
  10326. }
  10327. if (_iframe) {
  10328. if (str == 'doc') {
  10329. _iframe = _formdiv.querySelector('iframe')
  10330. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10331. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10332. })
  10333. if (onloadListener) {
  10334. _iframe.contentDocument.location.reload()
  10335. } else {
  10336. _iframe.contentDocument.location.reload()
  10337. }
  10338. } else if (str == 'mind') {
  10339. _iframe = _formdiv.querySelector('iframe')
  10340. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10341. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10342. })
  10343. if (onloadListener) {
  10344. _iframe.contentDocument.location.reload()
  10345. } else {
  10346. _iframe.contentDocument.location.reload()
  10347. }
  10348. } else if (str == 'whiteboard') {
  10349. _iframe = _formdiv.querySelector('iframe')
  10350. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10351. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10352. })
  10353. // if (onloadListener) {
  10354. // try {
  10355. // _iframe.src += "?cocorobo="+new Date().getTime()
  10356. // _iframe.contentWindow.document.location.reload()
  10357. // } catch (error) {
  10358. // }
  10359. // } else {
  10360. // _iframe.contentDocument.location.reload()
  10361. // }
  10362. } else if (str == 'CocoPi') {
  10363. _iframe = _formdiv.querySelector('iframe')
  10364. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10365. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10366. })
  10367. if (onloadListener) {
  10368. _iframe.contentDocument.location.reload()
  10369. } else {
  10370. _iframe.contentDocument.location.reload()
  10371. }
  10372. } else {
  10373. _iframe.onload = () => { };
  10374. }
  10375. _jie.onclick = async () => {
  10376. let text = ''
  10377. let type = '2'
  10378. if (aTool == 1) {
  10379. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10380. type = '3'
  10381. } else if (aTool == 6) {
  10382. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10383. type = '1'
  10384. } else if (aTool == 3) {
  10385. text = await U.MD.D.I.getEditorContent(_iframe);
  10386. type = '2'
  10387. } else if (aTool == 57) {
  10388. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10389. type = '4'
  10390. }
  10391. _loading.style.display = 'flex'
  10392. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10393. }
  10394. }
  10395. //U.MD.D.I.openClick(str);
  10396. //如果有任务栏信息
  10397. // if (_taskbar) {
  10398. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10399. // }
  10400. }
  10401. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10402. var xmlhttp;
  10403. var Mac, Sn, DeviceId
  10404. if (window.XMLHttpRequest) {
  10405. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10406. xmlhttp = new XMLHttpRequest();
  10407. } else {
  10408. // IE6, IE5 浏览器执行代码
  10409. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10410. }
  10411. xmlhttp.onreadystatechange = function () {
  10412. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10413. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10414. // resolve(res.value[0][0].text);
  10415. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10416. }
  10417. }
  10418. }
  10419. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10420. xmlhttp.send();
  10421. }
  10422. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10423. var xmlhttp;
  10424. var Mac, Sn, DeviceId
  10425. if (window.XMLHttpRequest) {
  10426. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10427. xmlhttp = new XMLHttpRequest();
  10428. } else {
  10429. // IE6, IE5 浏览器执行代码
  10430. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10431. }
  10432. xmlhttp.onreadystatechange = function () {
  10433. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10434. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10435. // resolve(res.value[0][0].text);
  10436. if (type == '2') {
  10437. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10438. } else if (type == '3') {
  10439. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10440. } else if (type == '4') {
  10441. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10442. }
  10443. } else {
  10444. if (type == '2') {
  10445. iframe.contentWindow.editor.minder.importData('json', '')
  10446. } else if (type == '3') {
  10447. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10448. } else if (type == '4') {
  10449. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10450. }
  10451. }
  10452. }
  10453. }
  10454. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10455. xmlhttp.send();
  10456. }
  10457. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10458. var xmlhttp;
  10459. var Mac, Sn, DeviceId
  10460. if (window.XMLHttpRequest) {
  10461. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10462. xmlhttp = new XMLHttpRequest();
  10463. } else {
  10464. // IE6, IE5 浏览器执行代码
  10465. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10466. }
  10467. xmlhttp.onreadystatechange = function () {
  10468. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10469. if (xmlhttp.response) {
  10470. // resolve(res.value[0][0].text);
  10471. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10472. // $(fileInput).val('');
  10473. // });
  10474. span.innerHTML = '上传成功'
  10475. setTimeout(() => {
  10476. loading.style.display = 'none'
  10477. }, 1000);
  10478. }
  10479. }
  10480. }
  10481. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10482. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10483. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10484. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10485. // 设置请求头,表示请求体的编码格式
  10486. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10487. // 设置请求体,使用url-encoded格式的数据
  10488. }
  10489. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10490. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10491. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10492. _userinfo = US.userInfo, //登录用户信息
  10493. _userid = US.userInfo.userid //登录用户id
  10494. let _iframe;
  10495. let _cid = cid,
  10496. _stage = stage,
  10497. _task = task,
  10498. _tool = tool;
  10499. var _jie = $$("div", {
  10500. "style": {
  10501. "position": "absolute",
  10502. "bottom": "50px",
  10503. "right": "50px",
  10504. "zIndex": "9999",
  10505. "backgroundColor": "#2268bc",
  10506. "color": "#fff",
  10507. "padding": "12px 20px",
  10508. "cursor": "pointer",
  10509. "borderRadius": "4px",
  10510. },
  10511. "innerHTML": "提交作业"
  10512. })
  10513. let aTool = ''
  10514. let _loading = document.createElement('div')
  10515. _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;"
  10516. // _loading.id = "";
  10517. let _lchild = document.createElement('div')
  10518. let _limg = document.createElement('img')
  10519. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10520. _limg.style = "width: 26px;margin-right: 10px;"
  10521. _lchild.appendChild(_limg)
  10522. let _lspan = document.createElement('span')
  10523. _lspan.innerHTML = "上传中..."
  10524. _lchild.appendChild(_lspan)
  10525. _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%);"
  10526. _loading.appendChild(_lchild)
  10527. var _box = $$('div', {
  10528. "style": {
  10529. "position": "relative",
  10530. "width": "100%",
  10531. "height": "100%",
  10532. },
  10533. })
  10534. _box.appendChild(_loading)
  10535. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10536. switch (str) {
  10537. case "CocoPi":
  10538. aTool = 57;
  10539. _iframe = $$("iframe", {
  10540. "allowpaymentrequest": "allowpaymentrequest",
  10541. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10542. "webkitallowfullscreen": "",
  10543. "mozallowfullscreen": "",
  10544. "frameborder": "no",
  10545. "border": "0",
  10546. "scrolling ": "no",
  10547. "style": {
  10548. "cssText": "border:0;width:100%;height:100%"
  10549. },
  10550. "src": "https://pi.cocorobo.cn/"
  10551. })
  10552. _box.appendChild(_iframe);
  10553. _box.appendChild(_jie);
  10554. _formdiv = new U.UF.UI.form(
  10555. "CocoPi",
  10556. _box, {
  10557. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10558. "style": {
  10559. "width": "90%",
  10560. "height": "90%",
  10561. "overflow": 'hidden'
  10562. },
  10563. "onresize": function () { }
  10564. }, {
  10565. closecallback: function () { }
  10566. }, {
  10567. "style": {
  10568. "height": "36px"
  10569. }
  10570. }).form; //创建窗体
  10571. _taskbar = {
  10572. "id": str + _formdiv.id,
  10573. "style": {
  10574. "backgroundImage": "url(/img/icon/cocopi.png)"
  10575. },
  10576. "name": "CocoPi",
  10577. "forms": _formdiv,
  10578. "click": function () {
  10579. U.MD.D.I.openApplication(str, obj, info);
  10580. }
  10581. }
  10582. break;
  10583. }
  10584. if (_iframe) {
  10585. if (str == 'CocoPi') {
  10586. _iframe = _formdiv.querySelector('iframe')
  10587. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10588. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10589. })
  10590. if (onloadListener) {
  10591. _iframe.contentDocument.location.reload()
  10592. } else {
  10593. _iframe.contentDocument.location.reload()
  10594. }
  10595. }
  10596. _jie.onclick = async () => {
  10597. let text = ''
  10598. if (aTool == 57) {
  10599. text = _iframe.contentWindow.getLoadXmlStr()
  10600. }
  10601. _loading.style.display = 'flex'
  10602. console.log(_loading);
  10603. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10604. _loading.style.display = 'none'
  10605. let _div = document.createElement('div')
  10606. _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;"
  10607. let _inner = document.createElement('div')
  10608. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10609. _inner.innerHTML = "上传成功"
  10610. _div.appendChild(_inner)
  10611. _iframe.contentWindow.window.document.body.appendChild(_div)
  10612. _div.onclick = () => {
  10613. _iframe.contentWindow.window.document.body.removeChild(_div)
  10614. }
  10615. setTimeout(() => {
  10616. _iframe.contentWindow.window.document.body.removeChild(_div)
  10617. }, 1000);
  10618. }, [], { "type": "POST", "withCredentials": true });
  10619. }
  10620. }
  10621. }
  10622. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10623. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10624. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10625. _userid = student.userid, //登录用户id
  10626. _username = student.student //用户名字
  10627. let _iframe;
  10628. let _cid = cid,
  10629. _stage = stage,
  10630. _task = task,
  10631. _tool = tool;
  10632. var _jie = $$("div", {
  10633. "style": {
  10634. "position": "absolute",
  10635. "bottom": "50px",
  10636. "right": "50px",
  10637. "zIndex": "9999",
  10638. "backgroundColor": "#2268bc",
  10639. "color": "#fff",
  10640. "padding": "12px 20px",
  10641. "cursor": "pointer",
  10642. "borderRadius": "4px",
  10643. },
  10644. "innerHTML": "提交作业"
  10645. })
  10646. let aTool = ''
  10647. let _loading = document.createElement('div')
  10648. _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;"
  10649. // _loading.id = "";
  10650. let _lchild = document.createElement('div')
  10651. let _limg = document.createElement('img')
  10652. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10653. _limg.style = "width: 26px;margin-right: 10px;"
  10654. _lchild.appendChild(_limg)
  10655. let _lspan = document.createElement('span')
  10656. _lspan.innerHTML = "上传中..."
  10657. _lchild.appendChild(_lspan)
  10658. _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%);"
  10659. _loading.appendChild(_lchild)
  10660. var _box = $$('div', {
  10661. "style": {
  10662. "position": "relative",
  10663. "width": "100%",
  10664. "height": "100%",
  10665. },
  10666. })
  10667. _box.appendChild(_loading)
  10668. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10669. switch (str) {
  10670. case "CocoPi":
  10671. aTool = 57;
  10672. _iframe = $$("iframe", {
  10673. "allowpaymentrequest": "allowpaymentrequest",
  10674. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10675. "webkitallowfullscreen": "",
  10676. "mozallowfullscreen": "",
  10677. "frameborder": "no",
  10678. "border": "0",
  10679. "scrolling ": "no",
  10680. "style": {
  10681. "cssText": "border:0;width:100%;height:100%"
  10682. },
  10683. "src": "https://pi.cocorobo.cn/"
  10684. })
  10685. _box.appendChild(_iframe);
  10686. _box.appendChild(_jie);
  10687. _formdiv = new U.UF.UI.form(
  10688. "CocoPi-" + _username,
  10689. _box, {
  10690. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10691. "style": {
  10692. "width": "90%",
  10693. "height": "90%",
  10694. "overflow": 'hidden'
  10695. },
  10696. "onresize": function () { }
  10697. }, {
  10698. closecallback: function () { }
  10699. }, {
  10700. "style": {
  10701. "height": "36px"
  10702. }
  10703. }).form; //创建窗体
  10704. _taskbar = {
  10705. "id": str + _formdiv.id,
  10706. "style": {
  10707. "backgroundImage": "url(/img/icon/cocopi.png)"
  10708. },
  10709. "name": "CocoPi",
  10710. "forms": _formdiv,
  10711. "click": function () {
  10712. U.MD.D.I.openApplication(str, obj, info);
  10713. }
  10714. }
  10715. break;
  10716. }
  10717. if (_iframe) {
  10718. if (str == 'CocoPi') {
  10719. _iframe = _formdiv.querySelector('iframe')
  10720. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10721. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10722. })
  10723. if (onloadListener) {
  10724. _iframe.contentDocument.location.reload()
  10725. } else {
  10726. _iframe.contentDocument.location.reload()
  10727. }
  10728. }
  10729. _jie.onclick = async () => {
  10730. let text = ''
  10731. if (aTool == 57) {
  10732. text = _iframe.contentWindow.getLoadXmlStr()
  10733. }
  10734. _loading.style.display = 'flex'
  10735. console.log(_loading);
  10736. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10737. _loading.style.display = 'none'
  10738. let _div = document.createElement('div')
  10739. _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;"
  10740. let _inner = document.createElement('div')
  10741. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10742. _inner.innerHTML = "上传成功"
  10743. _div.appendChild(_inner)
  10744. _iframe.contentWindow.window.document.body.appendChild(_div)
  10745. _div.onclick = () => {
  10746. _iframe.contentWindow.window.document.body.removeChild(_div)
  10747. }
  10748. setTimeout(() => {
  10749. _iframe.contentWindow.window.document.body.removeChild(_div)
  10750. }, 1000);
  10751. }, [], { "type": "POST", "withCredentials": true });
  10752. }
  10753. }
  10754. }
  10755. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10756. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10757. if (res.value[0].length > 0) {
  10758. if (atool == 57) {
  10759. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10760. }
  10761. } else {
  10762. if (atool == 57) {
  10763. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10764. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10765. }
  10766. }
  10767. }, [], { "type": "POST", "withCredentials": true });
  10768. }
  10769. U.MD.D.addOp = function(text,type,time){
  10770. var userInfo = US.userInfo;
  10771. if(Object.keys(userInfo).length !== 0){
  10772. U.A.Request(US.Config.pbl + "addOperationTimeT", [userInfo.userid,text,type,time], function (res) {
  10773. }, [], { "type": "POST", "withCredentials": true });
  10774. }
  10775. }