DeskTop.js 672 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720
  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. ];
  106. U.MD.D.I.studentDeskIcon = [
  107. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  109. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  110. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  111. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  112. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  113. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  114. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  115. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  116. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  117. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  118. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  119. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  120. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  121. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  122. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  123. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  124. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  125. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  126. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  127. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  128. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  129. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  130. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  131. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  132. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  133. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  134. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  135. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  136. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  138. ];
  139. U.MD.D.I.studentDeskIcon2 = [
  140. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  141. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  142. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  143. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  144. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  145. ]
  146. U.MD.D.I.studentDeskIcon3 = [
  147. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  148. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  149. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  150. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  151. ]
  152. U.MD.D.I.schoolDeskIcon = [
  153. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  154. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  155. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  156. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  157. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  158. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  159. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  160. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  161. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  162. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  163. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  164. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  165. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  166. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  167. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  168. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  169. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  170. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  171. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  172. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  173. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  174. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  175. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  176. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  177. ];
  178. U.MD.D.I.orgDeskIcon = [
  179. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  180. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  182. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  183. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  184. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  185. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  187. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  188. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  189. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  190. ];
  191. U.MD.D.I.orgStemDeskIcon = [
  192. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  193. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  194. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  195. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  196. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  197. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  198. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  199. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  200. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  201. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  202. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  203. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  204. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  205. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  206. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  207. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  209. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  210. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  211. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  212. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  213. ];
  214. U.MD.D.I.szulsDeskIcon = [
  215. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  216. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  217. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  218. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  219. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  220. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  221. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  222. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  223. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  224. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  226. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  227. ];
  228. U.MD.D.I.hanDeskIcon = [
  229. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  230. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  231. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  232. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  233. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  234. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  235. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  236. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  237. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  238. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  239. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  240. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  242. ];
  243. U.MD.D.I.GMteacherDeskIcon = [
  244. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  245. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  246. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  247. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  248. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  249. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  250. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  251. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  252. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  253. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  254. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  255. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  256. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  257. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  258. ];
  259. U.MD.D.I.GMstudentDeskIcon = [
  260. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  261. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  262. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  263. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  264. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  266. ];
  267. //松山湖
  268. U.MD.D.I.SONGteacherDeskIcon = [
  269. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  270. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  271. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  272. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  273. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  274. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  275. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  276. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  277. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  278. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  279. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  280. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  281. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  282. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  283. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  284. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  285. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  286. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  287. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  288. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  289. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  290. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  291. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  292. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  293. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  294. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  295. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  296. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  297. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  298. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  299. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  300. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  301. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  302. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  303. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  304. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  305. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  306. ];
  307. U.MD.D.I.tcStudentDeskIcon = [
  308. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  309. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  310. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  311. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  312. ];
  313. U.MD.D.I.tcTeacherDeskIcon = [
  314. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  315. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  316. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  317. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  318. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  319. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  320. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  321. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  322. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  323. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  324. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  325. ];
  326. U.MD.D.I.tcOrganizerDeskIcon = [
  327. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  328. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  329. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  330. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  331. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  332. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  333. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  334. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  335. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  336. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  337. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  338. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  339. ];
  340. U.MD.D.I.szscStudentDeskIcon = [
  341. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  342. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  343. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  344. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  345. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  346. ];
  347. U.MD.D.I.szscTeacherDeskIcon = [
  348. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  349. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  350. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  352. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  353. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  354. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  355. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  356. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  357. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  358. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  359. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  360. ];
  361. U.MD.D.I.szscOrganizerDeskIcon = [
  362. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  363. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  364. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  365. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  366. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  367. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  368. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  369. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  370. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  371. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  372. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  373. ];
  374. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  375. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  376. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  377. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  378. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  379. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  380. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  381. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  382. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  383. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  384. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  385. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  388. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  389. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  390. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  391. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  392. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  393. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  394. ];
  395. U.MD.D.I.wankeAdminDeskIcon = [
  396. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  397. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  398. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  399. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  400. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  401. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  402. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  403. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  404. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  405. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  406. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  407. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  408. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  409. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  410. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  411. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  412. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  413. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  414. ];
  415. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  416. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  417. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  418. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  419. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  420. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  421. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  422. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  423. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  424. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  425. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  426. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  427. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  428. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  429. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  430. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  431. ];
  432. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  433. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  434. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  435. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  436. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  437. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  438. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  439. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  440. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  441. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  442. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  443. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  444. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  445. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  446. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  447. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  448. ];
  449. //明德教师桌面图标的全局变量
  450. U.MD.D.I.MingdeTeacherDeskIcon = [
  451. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  452. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  453. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  454. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  455. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  456. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  457. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  458. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  459. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  460. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  461. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  462. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  463. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  464. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  465. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  466. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  467. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  468. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  469. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  470. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  471. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  472. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  473. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  474. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  475. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  476. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  477. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  478. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  479. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  480. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  481. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  482. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  483. ];
  484. //97c4ee8b-d010-4042-986d-e9d3c217264f
  485. //教师桌面图标的全局变量
  486. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  487. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  488. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  489. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  490. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  491. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  492. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  493. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  494. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  495. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  496. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  497. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  498. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  499. ];
  500. //福田
  501. U.MD.D.I.futianTeacherDeskIcon = [
  502. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  503. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  504. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  505. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  506. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  507. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  508. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  509. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  510. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  511. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  512. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  513. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  514. ];
  515. //福田
  516. U.MD.D.I.futianAdminDeskIcon = [
  517. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  518. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  519. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  520. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  521. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  522. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  523. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  524. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  525. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  526. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  527. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  528. ];
  529. //lotech
  530. U.MD.D.I.lotechTeacherDeskIcon = [
  531. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  532. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  533. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  534. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  535. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  536. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  537. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  538. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  539. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  540. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  541. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  542. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  543. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  544. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  546. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  547. ];
  548. //龙华中心小学教师桌面图标的全局变量
  549. U.MD.D.I.longhuateacherDeskIcon = [
  550. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  551. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  552. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  553. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  554. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  555. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  556. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  557. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  558. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  559. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  560. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  561. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  562. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  563. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  564. ];
  565. //教科院实小教师桌面图标的全局变量
  566. U.MD.D.I.siesteacherDeskIcon = [
  567. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  568. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  569. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  570. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  571. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  572. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  573. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  574. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  575. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  576. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  577. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  578. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  579. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  580. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  581. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  582. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  583. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  584. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  586. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  587. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  588. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  589. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  590. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  591. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  592. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  593. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  594. ];
  595. //教科院实小教师桌面图标的全局变量
  596. U.MD.D.I.siesStudentDeskIcon = [
  597. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  598. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  599. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  600. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  601. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  602. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  603. ];
  604. //中山小学教师桌面图标的全局变量
  605. U.MD.D.I.guzmsteacherDeskIcon = [
  606. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  607. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  608. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  609. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  610. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  611. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  612. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  613. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  614. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  615. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  616. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  617. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  618. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  619. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  620. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  621. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  622. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  623. ];
  624. //中山小学学生桌面图标的全局变量
  625. U.MD.D.I.guzmsStudentDeskIcon = [
  626. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  627. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  628. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  629. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  630. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  631. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  632. ];
  633. //福田
  634. U.MD.D.I.gdjgTeacherDeskIcon = [
  635. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  636. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  637. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  638. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  639. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  640. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  641. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  642. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  643. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  644. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  645. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  646. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  647. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  648. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  649. ];
  650. //gdjg
  651. U.MD.D.I.gdjgAdminDeskIcon = [
  652. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  653. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  654. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  655. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  656. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  657. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  658. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  659. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  660. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  661. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  662. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  663. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  664. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  665. ];
  666. //hk
  667. U.MD.D.I.hkteacherDeskIcon = [
  668. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  669. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  670. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  671. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  672. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  673. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  674. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  675. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  676. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  677. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  678. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  679. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  680. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  681. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  682. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  683. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  684. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  685. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  686. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  687. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  688. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  689. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  690. ];
  691. //hk
  692. U.MD.D.I.hkStudentDeskIcon = [
  693. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  694. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  695. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  696. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  697. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  698. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  699. ];
  700. //hk
  701. U.MD.D.I.hkaceteacherDeskIcon = [
  702. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  703. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  704. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  705. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  706. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  707. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  708. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  709. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  710. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  711. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  712. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  713. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  714. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  715. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  716. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  717. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  718. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  719. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  720. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  721. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  722. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  723. ];
  724. //hk
  725. U.MD.D.I.hkaceStudentDeskIcon = [
  726. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  727. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  728. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  729. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  730. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  731. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  732. ];
  733. //香海正覺蓮社佛教正覺中學
  734. U.MD.D.I.hkZJLSteacherDeskIcon = [
  735. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  736. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  737. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  738. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  739. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  740. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  741. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  742. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  743. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  744. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  745. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  746. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  747. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  748. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  749. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  750. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  751. ];
  752. //香海正覺蓮社佛教正覺中學
  753. U.MD.D.I.hkZJLSStudentDeskIcon = [
  754. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  755. { "Name": "项目管理", "Url": "studentCourse", "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": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  758. ];
  759. //云海
  760. U.MD.D.I.yunhaiTeacherDeskIcon = [
  761. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  762. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  763. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  764. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  765. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  766. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  767. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  768. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  769. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  770. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  771. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  772. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  773. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  774. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  775. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  776. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  777. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  778. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  779. ];
  780. //福田
  781. U.MD.D.I.heyuanTeacherDeskIcon = [
  782. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  783. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  784. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  785. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  786. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  787. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  788. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  789. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  790. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  791. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  792. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  793. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  794. ];
  795. //福田
  796. U.MD.D.I.heyuanAdminDeskIcon = [
  797. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  798. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  799. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  800. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  801. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  802. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  803. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  804. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  805. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  806. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  807. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  808. ];
  809. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  810. U.MD.D.I.szherTeacherDeskIcon = [
  811. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  812. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  813. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  814. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  815. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  816. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  817. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  818. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  819. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  820. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  821. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  822. ];
  823. //dsei
  824. U.MD.D.I.dseiTeacherDeskIcon = [
  825. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  826. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  827. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  828. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  834. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  835. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  836. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  837. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  838. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  839. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  840. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  841. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  842. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  843. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  844. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  845. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  846. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  847. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  848. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  849. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  850. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  851. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  852. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  853. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  854. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  855. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  856. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  857. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  858. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  859. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  860. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  861. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  862. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  863. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  864. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  865. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  866. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  867. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  868. ];
  869. //dsei
  870. U.MD.D.I.dseiAdminDeskIcon = [
  871. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  872. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  873. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  874. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  875. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  876. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  877. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  878. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  879. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  880. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  881. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  882. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  883. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  884. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  885. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  886. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  887. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  888. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  889. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  890. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  891. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  892. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  893. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  894. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  895. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  896. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  897. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  898. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  899. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  900. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  901. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  902. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  903. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  904. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  905. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  906. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  907. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  908. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  909. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  910. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  911. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  912. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  913. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  914. ];
  915. //dsei
  916. U.MD.D.I.dseiStudentDeskIcon = [
  917. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  918. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  919. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  920. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  921. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  922. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  923. ];
  924. //未来教育基地
  925. U.MD.D.I.szjkyTeacherDeskIcon = [
  926. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  927. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  928. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  929. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  930. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  931. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  932. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  933. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  934. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  935. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  936. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  937. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  938. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  939. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  940. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  941. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  942. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  943. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  944. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  945. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  946. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  947. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  948. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  949. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  950. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  951. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  952. ];
  953. //未来教育基地
  954. U.MD.D.I.szjkyAdminDeskIcon = [
  955. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  956. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  957. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  958. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  959. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  960. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  961. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  962. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  963. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  964. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  965. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  966. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  967. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  968. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  969. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  970. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  971. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  972. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  973. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  974. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  975. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  976. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  977. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  978. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  979. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  980. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  981. ];
  982. //未来教育基地
  983. U.MD.D.I.szjkyStudentDeskIcon = [
  984. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  985. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  986. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  987. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  988. ];
  989. //成华教育局
  990. U.MD.D.I.chjyjTeacherDeskIcon = [
  991. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  992. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  993. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  994. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  995. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  996. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  997. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  998. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  999. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1000. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1001. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1002. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1003. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1004. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1005. ];
  1006. //成华教育局chjyj
  1007. U.MD.D.I.chjyjAdminDeskIcon = [
  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": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1019. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1020. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1021. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1022. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1023. ];
  1024. //成华教育局chjyj
  1025. U.MD.D.I.chjyjStudentDeskIcon = [
  1026. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1027. { "Name": "项目管理", "Url": "studentCourse", "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": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1030. ];
  1031. //tpc
  1032. U.MD.D.I.tpcStudentDeskIcon = [
  1033. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1034. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1035. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1036. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1037. ];
  1038. //tpc
  1039. U.MD.D.I.tpcTeacherDeskIcon = [
  1040. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1041. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1042. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1043. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1044. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1045. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1046. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1047. ];
  1048. //tpc
  1049. U.MD.D.I.tpcAdminDeskIcon = [
  1050. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1051. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1052. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1053. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1054. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1055. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1056. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1057. ];
  1058. //THU-IOE
  1059. U.MD.D.I.thuioeTeacherDeskIcon = [
  1060. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1061. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1062. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1063. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1064. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1065. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1066. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1067. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1068. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1069. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1070. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1071. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1072. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1073. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1074. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1075. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1076. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1077. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1078. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1079. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1080. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1081. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1082. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1083. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1084. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1085. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1086. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1087. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1088. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1089. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1090. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1091. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1092. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1093. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1094. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1095. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1096. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1097. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1098. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1099. ];
  1100. //THU-IOE
  1101. U.MD.D.I.thuioeStudentDeskIcon = [
  1102. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1103. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1104. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1105. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1106. ];
  1107. //jccssyl
  1108. U.MD.D.I.jccssylTeacherDeskIcon = [
  1109. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1110. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1111. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1112. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1113. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1114. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1115. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1116. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1117. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1118. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1119. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1120. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1121. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1122. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1123. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1124. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1125. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1126. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1127. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1128. ];
  1129. //jccssyl
  1130. U.MD.D.I.jccssylStudentDeskIcon = [
  1131. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1132. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1133. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1134. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1135. ];
  1136. //cale
  1137. U.MD.D.I.caleTeacherDeskIcon = [
  1138. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1139. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1140. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1141. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1142. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1143. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1144. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1145. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1146. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1147. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1148. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1149. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1150. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1151. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1152. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1153. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1154. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1155. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1156. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1157. ];
  1158. //cale
  1159. U.MD.D.I.caleStudentDeskIcon = [
  1160. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1161. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1162. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1163. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1164. ];
  1165. //lqwmsgzs
  1166. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1167. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1168. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1169. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1170. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1171. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1172. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1173. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1174. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1175. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1176. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1177. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1178. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1179. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1180. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1181. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1182. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1183. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1184. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1185. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1186. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1187. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1188. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1189. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1190. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1191. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1192. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1193. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1194. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1195. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1196. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1197. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1198. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1199. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1200. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1201. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1202. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1203. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1204. ];
  1205. //lqwmsgzs
  1206. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1207. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1208. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1209. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1210. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1211. ];
  1212. //盐田区幼儿园
  1213. U.MD.D.I.ytyTeacherDeskIcon = [
  1214. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1215. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1216. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1217. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1218. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1219. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1220. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1221. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1222. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1223. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1224. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1225. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1226. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1227. ];
  1228. //盐田区幼儿园
  1229. U.MD.D.I.ytyStudentDeskIcon = [
  1230. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1231. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1232. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1233. ];
  1234. //scnuai
  1235. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1236. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1237. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1238. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1239. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1240. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1241. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1242. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1243. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1244. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1245. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1246. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1247. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1248. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1249. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1250. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1251. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1252. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1253. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1254. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1255. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1256. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1257. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1258. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1259. ];
  1260. //scnuai
  1261. U.MD.D.I.scnuaiAdminDeskIcon = [
  1262. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1263. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1264. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1265. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1266. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1267. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1268. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1269. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1270. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1271. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1272. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1273. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1274. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1275. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1276. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1277. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1278. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1279. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1280. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1281. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1282. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1283. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1284. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1285. ];
  1286. //scnuai
  1287. U.MD.D.I.scnuaiStudentDeskIcon = [
  1288. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1289. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1290. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1291. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1292. ];
  1293. //cocobiz
  1294. U.MD.D.I.cocobizteacherDeskIcon = [
  1295. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1296. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1297. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1298. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1299. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1300. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1301. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1302. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1303. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1304. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1305. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1306. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1307. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1308. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1309. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1310. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1311. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1312. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1313. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1314. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1315. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1316. ];
  1317. //cocobiz
  1318. U.MD.D.I.cocobizStudentDeskIcon = [
  1319. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1320. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1321. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1322. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1323. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1324. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1325. ];
  1326. //xxzjky
  1327. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1328. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1329. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1330. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1331. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1332. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1333. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1334. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1335. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1336. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1337. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1338. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1339. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1340. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1341. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1342. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1343. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1344. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1345. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1346. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1347. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1348. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1349. ];
  1350. //xxzjky
  1351. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1352. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1353. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1354. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1355. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1356. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1357. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1358. ];
  1359. //nsfx
  1360. U.MD.D.I.nsfxTeacherDeskIcon = [
  1361. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1362. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1363. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1364. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1365. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1366. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1367. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1368. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1369. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1370. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1371. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1372. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1373. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1374. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1375. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1376. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1377. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1378. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1379. ];
  1380. //nsfx
  1381. U.MD.D.I.nsfxStudentDeskIcon = [
  1382. { "Name": "项目管理", "Url": "studentCourse", "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": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1385. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1386. ];
  1387. //stia
  1388. U.MD.D.I.stiaTeacherDeskIcon = [
  1389. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1390. // { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1391. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1392. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1393. // { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1394. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1395. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1396. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1397. // { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1398. // { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1399. // { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1400. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1401. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1402. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1403. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1404. ];
  1405. //stia
  1406. U.MD.D.I.stiaStudentDeskIcon = [
  1407. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1408. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1409. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1410. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1411. ];
  1412. //szdjg
  1413. U.MD.D.I.szdjgTeacherDeskIcon = [
  1414. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1415. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1416. ];
  1417. //szdjg
  1418. U.MD.D.I.szdjgStudentDeskIcon = [
  1419. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1420. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1421. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1422. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1423. ];
  1424. //010607
  1425. U.MD.D.I.x010607TeacherDeskIcon = [
  1426. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1427. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1428. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1429. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1430. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1431. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1432. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1433. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1434. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1435. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1436. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1437. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1438. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1439. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1440. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1441. ];
  1442. //010607
  1443. U.MD.D.I.x010607StudentDeskIcon = [
  1444. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1445. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1446. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1447. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1448. ];
  1449. //010608
  1450. U.MD.D.I.x010608TeacherDeskIcon = [
  1451. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1452. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1453. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1454. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1455. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1456. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1457. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1458. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1459. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1460. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1461. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1462. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1463. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1464. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1465. ];
  1466. //010608
  1467. U.MD.D.I.x010608StudentDeskIcon = [
  1468. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1469. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1470. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1471. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1472. ];
  1473. //xhly
  1474. U.MD.D.I.xhlyTeacherDeskIcon = [
  1475. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1476. ];
  1477. //010608
  1478. U.MD.D.I.xhlyStudentDeskIcon = [
  1479. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1480. ];
  1481. //北师大
  1482. U.MD.D.I.BSDNSteacherDeskIcon = [
  1483. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1484. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1485. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1486. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1487. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1488. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1489. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1490. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1491. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1492. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1493. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1494. ];
  1495. //北师大
  1496. U.MD.D.I.BSDNSstudentDeskIcon = [
  1497. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1498. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1499. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1500. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1501. ];
  1502. //CUHK_EDU
  1503. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1504. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1505. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1506. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1507. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1508. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1509. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1510. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1511. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1512. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1513. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1514. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1515. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1516. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1517. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1518. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1519. ];
  1520. //CUHK_EDU
  1521. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1522. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1523. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1524. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1525. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1526. ];
  1527. //010503
  1528. U.MD.D.I.x010503TeacherDeskIcon = [
  1529. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1530. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1531. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1532. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1533. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1534. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1535. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1536. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1537. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1538. ];
  1539. //010503
  1540. U.MD.D.I.x010503StudentDeskIcon = [
  1541. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1542. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1543. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1544. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1545. ];
  1546. //SPROUT Lab
  1547. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1548. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1549. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1550. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1551. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1552. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1553. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1554. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1555. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1556. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1557. ];
  1558. //SPROUT Lab
  1559. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1560. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1561. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1562. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1563. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1564. ];
  1565. //010204
  1566. U.MD.D.I.x010204TeacherDeskIcon = [
  1567. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1568. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1569. ];
  1570. //010204
  1571. U.MD.D.I.x010204StudentDeskIcon = [
  1572. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1573. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1574. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1575. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1576. ];
  1577. //trail
  1578. U.MD.D.I.trailTeacherDeskIcon = [
  1579. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1580. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1581. ];
  1582. //trail
  1583. U.MD.D.I.trailStudentDeskIcon = [
  1584. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1585. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1586. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1587. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1588. ];
  1589. //010504
  1590. U.MD.D.I.x010504TeacherDeskIcon = [
  1591. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1592. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1593. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1594. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1595. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1596. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1597. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1598. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1599. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1600. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1601. ];
  1602. //010504
  1603. U.MD.D.I.x010504StudentDeskIcon = [
  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. //SCNUET
  1610. U.MD.D.I.SCNUETTeacherDeskIcon = [
  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": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1614. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1615. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1616. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1617. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1618. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1619. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1620. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1621. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1622. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1623. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1624. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1625. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1626. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1627. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1628. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1629. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1630. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1631. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1632. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1633. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1634. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1635. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1636. ];
  1637. //SCNUET
  1638. U.MD.D.I.SCNUETAdminDeskIcon = [
  1639. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1640. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1641. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1642. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1643. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1644. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1645. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1646. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1647. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1648. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1649. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1650. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1651. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1652. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1653. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1654. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1655. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1656. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1657. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1658. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1659. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1660. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1661. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1662. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1663. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1664. ];
  1665. //SCNUET
  1666. U.MD.D.I.SCNUETStudentDeskIcon = [
  1667. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1668. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1669. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1670. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1671. ];
  1672. //x020201
  1673. U.MD.D.I.x020201TeacherDeskIcon = [
  1674. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1675. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1676. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1677. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1678. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1679. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1680. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1681. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1682. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1683. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1684. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1685. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1686. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1687. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1688. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1689. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1690. ];
  1691. //x020201
  1692. U.MD.D.I.x020201AdminDeskIcon = [
  1693. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1694. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1695. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1696. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1697. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1698. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1699. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1700. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1701. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1702. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1703. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1704. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1705. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1706. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1707. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1708. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1709. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1710. ];
  1711. //020201
  1712. U.MD.D.I.x020201StudentDeskIcon = [
  1713. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1714. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1715. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1716. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1717. ];
  1718. //010611
  1719. U.MD.D.I.x010611TeacherDeskIcon = [
  1720. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1721. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1722. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1723. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1724. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1725. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1726. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1727. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1728. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1729. ];
  1730. //010611
  1731. U.MD.D.I.x010611StudentDeskIcon = [
  1732. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1733. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1734. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1735. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1736. ];
  1737. //tianyuan
  1738. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1739. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1740. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.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": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1744. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1745. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1746. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1747. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1748. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1749. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1750. ];
  1751. //010611
  1752. U.MD.D.I.tianyuanStudentDeskIcon = [
  1753. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1754. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1755. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1756. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1757. ];
  1758. //320101
  1759. U.MD.D.I.x320101TeacherDeskIcon = [
  1760. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1761. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1762. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1763. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1764. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1765. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1766. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1767. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1768. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1769. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1770. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1771. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1772. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1773. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1774. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1775. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1776. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1777. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1778. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1779. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1780. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1781. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1782. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1783. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1784. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1785. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1786. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1787. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1788. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1789. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1790. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1791. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1792. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1793. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1794. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1795. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1796. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1797. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1798. ];
  1799. //320101
  1800. U.MD.D.I.x320101StudentDeskIcon = [
  1801. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1802. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1803. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1804. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1805. ];
  1806. //#region 桌面初始化a
  1807. /**
  1808. * 初始化桌面的起始函数
  1809. *
  1810. */
  1811. U.MD.D.I.init = function () {
  1812. if ($("#U_MD_D_K")[0]) {
  1813. //初始化桌面图标
  1814. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1815. // var clickUrl = ':12588/requestIp.php';
  1816. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1817. // U.MD.D.I.Ip = data;
  1818. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1819. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1820. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1821. // })
  1822. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1823. // })
  1824. }
  1825. }
  1826. /**
  1827. * 模式切换
  1828. *
  1829. */
  1830. U.MD.D.I.ModeCheck = function (type) {
  1831. if (US.Config.type == type) {
  1832. return
  1833. }
  1834. US.Config.type = type
  1835. $('.U_PBL_Check .active')[0].className = ''
  1836. if (type == 1) {
  1837. $('.U_PBL_Check div')[0].className = 'active'
  1838. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1839. } else {
  1840. $('.U_PBL_Check div')[1].className = 'active'
  1841. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1842. }
  1843. //初始化桌面图标
  1844. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1845. if (type == 2) {
  1846. U.MD.D.I.openApplication("project")
  1847. }
  1848. }
  1849. /**
  1850. * 隐藏任务栏
  1851. *
  1852. * @param {element} 桌面元素
  1853. */
  1854. U.MD.D.I.hiddenTaskbar = function (el) {
  1855. //任务栏位置变小
  1856. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1857. //桌面的位置变大
  1858. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1859. }
  1860. /**
  1861. * 隐藏任务栏
  1862. *
  1863. * @param {element} 桌面元素
  1864. */
  1865. U.MD.D.I.hiddenTaskbarout = function (el) {
  1866. //任务栏位置变小
  1867. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1868. //任务栏位置变化
  1869. U.selectEl(el).css({ "bottom": "-60px" });
  1870. //桌面的位置变大
  1871. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1872. }
  1873. }
  1874. /**
  1875. * 初始化打印桌面图标
  1876. *
  1877. * @param {element} 桌面元素
  1878. */
  1879. U.MD.D.I.initDesktopIcons = function (el, type) {
  1880. var i, //用于循环
  1881. _content, //桌面图标元素
  1882. _iconcontent, //桌面图标元素
  1883. _frag = $$("frag"), //定义一个碎片元素
  1884. _type = US.userInfo.type,
  1885. _org = US.userInfo.org,
  1886. _oid = US.userInfo.organizeid,
  1887. _role = US.userInfo.role,
  1888. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1889. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1890. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1891. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1892. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1893. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1894. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1895. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1896. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1897. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1898. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1899. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1900. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1901. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1902. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1903. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1904. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1905. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1906. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1907. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1908. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1909. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1910. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1911. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1912. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1913. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1914. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1915. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1916. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1917. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1918. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1919. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1920. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1921. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1922. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1923. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1924. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1925. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1926. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1927. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1928. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1929. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1930. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1931. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1932. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1933. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1934. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1935. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1936. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1937. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1938. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1939. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1940. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1941. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1942. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1943. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1944. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1945. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1946. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1947. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1948. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1949. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1950. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1951. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1952. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1953. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1954. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1955. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1956. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1957. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1958. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1959. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1960. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1961. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1962. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1963. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1964. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1965. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1966. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1967. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1968. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1969. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1970. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1971. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  1972. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  1973. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  1974. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  1975. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1976. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1977. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1978. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1979. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1980. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1981. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  1982. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  1983. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1984. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1985. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  1986. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  1987. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  1988. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  1989. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  1990. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  1991. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  1992. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1993. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1994. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  1995. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  1996. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  1997. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  1998. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1999. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2000. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  2001. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263','8a352da2-56e1-11ef-b873-005056b86db5','9b46a3c9-7657-11ef-9b30-005056b86db5','857af1c7-c8ee-4b04-85b5-fd182903adb7','876030db-7a49-11ef-9b30-005056b86db5','b97fc213-86a9-11ef-9b30-005056b86db5', 'c636f63e-86f4-11ef-9b30-005056b86db5','6c16df93-8849-11ef-9b30-005056b86db5','72c16ee0-89fe-11ef-9b30-005056b86db5','369222a8-cddd-11ed-9546-005056b86db5','3fc7840d-a1c4-11ef-9b30-005056b86db5','2c5d4971-ed9e-11ef-b508-005056924926'];
  2002. 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'];
  2003. //清楚桌面图标
  2004. el.innerHTML = "";
  2005. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2006. _teacherDesktopIconInfo.push(
  2007. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2008. { "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)" } },
  2009. )
  2010. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2011. }
  2012. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  2013. _teacherDesktopIconInfo.push(
  2014. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2015. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2016. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2017. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2018. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2019. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2020. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2021. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2022. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2023. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2024. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2025. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2026. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2027. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2028. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2029. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2030. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2031. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2032. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2033. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2034. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2035. )
  2036. }
  2037. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2038. _teacherDesktopIconInfo.push(
  2039. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2040. )
  2041. }
  2042. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2043. // _teacherDesktopIconInfo.push(
  2044. // )
  2045. // }
  2046. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2047. _teacherDesktopIconInfo.push(
  2048. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2049. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2050. )
  2051. }
  2052. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2053. _teacherDesktopIconInfo.push(
  2054. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2055. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2056. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2057. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2058. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2059. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2060. )
  2061. _studentDesktopIconInfo.push(
  2062. )
  2063. }
  2064. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2065. _teacherDesktopIconInfo.push(
  2066. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2067. )
  2068. _studentDesktopIconInfo.push(
  2069. )
  2070. }
  2071. //010606 组织
  2072. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2073. _teacherDesktopIconInfo.push(
  2074. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2075. )
  2076. _studentDesktopIconInfo.push(
  2077. )
  2078. }
  2079. //麒麟二中 和 民新小学
  2080. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2081. _teacherDesktopIconInfo.push(
  2082. )
  2083. }
  2084. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2085. _teacherDesktopIconInfo.push(
  2086. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2087. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2088. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2089. )
  2090. }
  2091. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2092. _hkTeacherDeskIconInfo.push(
  2093. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2094. )
  2095. }
  2096. //北师大附中(010601)
  2097. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2098. // _teacherDesktopIconInfo.push(
  2099. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2100. // )
  2101. // _studentDesktopIconInfo.push(
  2102. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2103. // )
  2104. // }
  2105. //樂善堂余近卿中學
  2106. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2107. _teacherDesktopIconInfo.push(
  2108. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2109. )
  2110. }
  2111. // Education Artificial Intelligence
  2112. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2113. _teacherDesktopIconInfo.push(
  2114. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2115. )
  2116. }
  2117. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2118. _teacherDesktopIconInfo.push(
  2119. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2120. )
  2121. }
  2122. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2123. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2124. _teacherDesktopIconInfo.push(
  2125. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2126. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2127. )
  2128. }
  2129. //麒麟二中
  2130. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2131. _studentDesktopIconInfo.push(
  2132. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2133. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2134. )
  2135. }
  2136. //万科双语
  2137. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2138. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2139. if (el.Name == '项目管理') {
  2140. el.Name = 'PBL项目'
  2141. }
  2142. return el
  2143. })
  2144. _studentDesktopIconInfo3.push(
  2145. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2146. )
  2147. }
  2148. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2149. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2150. return el.Name != '魔盒识字' && el.Name != '24点'
  2151. })
  2152. }
  2153. 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) {
  2154. _studentDesktopIconInfo.push(
  2155. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2156. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2157. )
  2158. }
  2159. //循环创建桌面图标
  2160. if (type == 1) {
  2161. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2162. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2163. _content = $$("div", {
  2164. className: "U_MD_D_KO",
  2165. "onmousedown": U.UF.C.closure(function (obj) {
  2166. //防止拖动图标即打开了桌面应用
  2167. U.MD.D.click(this, obj);
  2168. }, [_studentDesktopIconInfo[i]]),
  2169. "onclick": U.UF.C.closure(function (obj) {
  2170. //防止拖动图标即打开了桌面应用
  2171. U.MD.D.click(this, obj);
  2172. }, [_studentDesktopIconInfo[i]])
  2173. }, _frag); //
  2174. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2175. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2176. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2177. }
  2178. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2179. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2180. _content = $$("div", {
  2181. className: "U_MD_D_KO",
  2182. "onmousedown": U.UF.C.closure(function (obj) {
  2183. //防止拖动图标即打开了桌面应用
  2184. U.MD.D.click(this, obj);
  2185. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2186. "onclick": U.UF.C.closure(function (obj) {
  2187. //防止拖动图标即打开了桌面应用
  2188. U.MD.D.click(this, obj);
  2189. }, [_hkZJLSStudentDeskIconInfo[i]])
  2190. }, _frag); //
  2191. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2192. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2193. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2194. } //
  2195. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2196. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2197. _content = $$("div", {
  2198. className: "U_MD_D_KO",
  2199. "onmousedown": U.UF.C.closure(function (obj) {
  2200. //防止拖动图标即打开了桌面应用
  2201. U.MD.D.click(this, obj);
  2202. }, [_ytyStudentDeskIconInfo[i]]),
  2203. "onclick": U.UF.C.closure(function (obj) {
  2204. //防止拖动图标即打开了桌面应用
  2205. U.MD.D.click(this, obj);
  2206. }, [_ytyStudentDeskIconInfo[i]])
  2207. }, _frag); //
  2208. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2209. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2210. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2211. } //
  2212. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2213. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2214. _content = $$("div", {
  2215. className: "U_MD_D_KO",
  2216. "onmousedown": U.UF.C.closure(function (obj) {
  2217. //防止拖动图标即打开了桌面应用
  2218. U.MD.D.click(this, obj);
  2219. }, [_jccssylStudentDeskIconInfo[i]]),
  2220. "onclick": U.UF.C.closure(function (obj) {
  2221. //防止拖动图标即打开了桌面应用
  2222. U.MD.D.click(this, obj);
  2223. }, [_jccssylStudentDeskIconInfo[i]])
  2224. }, _frag); //
  2225. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2226. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2227. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2228. }
  2229. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2230. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2231. _content = $$("div", {
  2232. className: "U_MD_D_KO",
  2233. "onmousedown": U.UF.C.closure(function (obj) {
  2234. //防止拖动图标即打开了桌面应用
  2235. U.MD.D.click(this, obj);
  2236. }, [_scnuaiStudentDeskIconInfo[i]]),
  2237. "onclick": U.UF.C.closure(function (obj) {
  2238. //防止拖动图标即打开了桌面应用
  2239. U.MD.D.click(this, obj);
  2240. }, [_scnuaiStudentDeskIconInfo[i]])
  2241. }, _frag); //
  2242. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2243. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2244. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2245. }
  2246. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2247. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2248. _content = $$("div", {
  2249. className: "U_MD_D_KO",
  2250. "onmousedown": U.UF.C.closure(function (obj) {
  2251. //防止拖动图标即打开了桌面应用
  2252. U.MD.D.click(this, obj);
  2253. }, [_caleStudentDeskIconInfo[i]]),
  2254. "onclick": U.UF.C.closure(function (obj) {
  2255. //防止拖动图标即打开了桌面应用
  2256. U.MD.D.click(this, obj);
  2257. }, [_caleStudentDeskIconInfo[i]])
  2258. }, _frag); //
  2259. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2260. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2261. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2262. }
  2263. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2264. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2265. _content = $$("div", {
  2266. className: "U_MD_D_KO",
  2267. "onmousedown": U.UF.C.closure(function (obj) {
  2268. //防止拖动图标即打开了桌面应用
  2269. U.MD.D.click(this, obj);
  2270. }, [_thuioeStudentDeskIconInfo[i]]),
  2271. "onclick": U.UF.C.closure(function (obj) {
  2272. //防止拖动图标即打开了桌面应用
  2273. U.MD.D.click(this, obj);
  2274. }, [_thuioeStudentDeskIconInfo[i]])
  2275. }, _frag); //
  2276. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2277. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2278. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2279. }
  2280. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2281. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2282. _content = $$("div", {
  2283. className: "U_MD_D_KO",
  2284. "onmousedown": U.UF.C.closure(function (obj) {
  2285. //防止拖动图标即打开了桌面应用
  2286. U.MD.D.click(this, obj);
  2287. }, [_tpcStudentDeskIconInfo[i]]),
  2288. "onclick": U.UF.C.closure(function (obj) {
  2289. //防止拖动图标即打开了桌面应用
  2290. U.MD.D.click(this, obj);
  2291. }, [_tpcStudentDeskIconInfo[i]])
  2292. }, _frag); //
  2293. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2294. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2295. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2296. } //
  2297. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2298. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2299. _content = $$("div", {
  2300. className: "U_MD_D_KO",
  2301. "onmousedown": U.UF.C.closure(function (obj) {
  2302. //防止拖动图标即打开了桌面应用
  2303. U.MD.D.click(this, obj);
  2304. }, [_chjyjStudentDeskIconInfo[i]]),
  2305. "onclick": U.UF.C.closure(function (obj) {
  2306. //防止拖动图标即打开了桌面应用
  2307. U.MD.D.click(this, obj);
  2308. }, [_chjyjStudentDeskIconInfo[i]])
  2309. }, _frag); //
  2310. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2311. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2312. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2313. }
  2314. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2315. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2316. _content = $$("div", {
  2317. className: "U_MD_D_KO",
  2318. "onmousedown": U.UF.C.closure(function (obj) {
  2319. //防止拖动图标即打开了桌面应用
  2320. U.MD.D.click(this, obj);
  2321. }, [_szjkyStudentDeskIconInfo[i]]),
  2322. "onclick": U.UF.C.closure(function (obj) {
  2323. //防止拖动图标即打开了桌面应用
  2324. U.MD.D.click(this, obj);
  2325. }, [_szjkyStudentDeskIconInfo[i]])
  2326. }, _frag); //
  2327. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2328. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2329. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2330. }
  2331. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2332. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2333. _content = $$("div", {
  2334. className: "U_MD_D_KO",
  2335. "onmousedown": U.UF.C.closure(function (obj) {
  2336. //防止拖动图标即打开了桌面应用
  2337. U.MD.D.click(this, obj);
  2338. }, [_x020201StudentDeskIconInfo[i]]),
  2339. "onclick": U.UF.C.closure(function (obj) {
  2340. //防止拖动图标即打开了桌面应用
  2341. U.MD.D.click(this, obj);
  2342. }, [_x020201StudentDeskIconInfo[i]])
  2343. }, _frag); //
  2344. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2345. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2346. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2347. }
  2348. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2349. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2350. _content = $$("div", {
  2351. className: "U_MD_D_KO",
  2352. "onmousedown": U.UF.C.closure(function (obj) {
  2353. //防止拖动图标即打开了桌面应用
  2354. U.MD.D.click(this, obj);
  2355. }, [_SCNUETStudentDeskIconInfo[i]]),
  2356. "onclick": U.UF.C.closure(function (obj) {
  2357. //防止拖动图标即打开了桌面应用
  2358. U.MD.D.click(this, obj);
  2359. }, [_SCNUETStudentDeskIconInfo[i]])
  2360. }, _frag); //
  2361. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2362. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2363. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2364. }
  2365. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2366. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2367. _content = $$("div", {
  2368. className: "U_MD_D_KO",
  2369. "onmousedown": U.UF.C.closure(function (obj) {
  2370. //防止拖动图标即打开了桌面应用
  2371. U.MD.D.click(this, obj);
  2372. }, [_dseiStudentDeskIconInfo[i]]),
  2373. "onclick": U.UF.C.closure(function (obj) {
  2374. //防止拖动图标即打开了桌面应用
  2375. U.MD.D.click(this, obj);
  2376. }, [_dseiStudentDeskIconInfo[i]])
  2377. }, _frag); //
  2378. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2379. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2380. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2381. }
  2382. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2383. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2384. _content = $$("div", {
  2385. className: "U_MD_D_KO",
  2386. "onmousedown": U.UF.C.closure(function (obj) {
  2387. //防止拖动图标即打开了桌面应用
  2388. U.MD.D.click(this, obj);
  2389. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2390. "onclick": U.UF.C.closure(function (obj) {
  2391. //防止拖动图标即打开了桌面应用
  2392. U.MD.D.click(this, obj);
  2393. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2394. }, _frag); //
  2395. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2396. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2397. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2398. }
  2399. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2400. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2401. _content = $$("div", {
  2402. className: "U_MD_D_KO",
  2403. "onmousedown": U.UF.C.closure(function (obj) {
  2404. //防止拖动图标即打开了桌面应用
  2405. U.MD.D.click(this, obj);
  2406. }, [_nsfxStudentDeskIconInfo[i]]),
  2407. "onclick": U.UF.C.closure(function (obj) {
  2408. //防止拖动图标即打开了桌面应用
  2409. U.MD.D.click(this, obj);
  2410. }, [_nsfxStudentDeskIconInfo[i]])
  2411. }, _frag); //
  2412. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2413. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2414. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2415. }
  2416. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2417. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2418. _content = $$("div", {
  2419. className: "U_MD_D_KO",
  2420. "onmousedown": U.UF.C.closure(function (obj) {
  2421. //防止拖动图标即打开了桌面应用
  2422. U.MD.D.click(this, obj);
  2423. }, [_stiaStudentDeskIconInfo[i]]),
  2424. "onclick": U.UF.C.closure(function (obj) {
  2425. //防止拖动图标即打开了桌面应用
  2426. U.MD.D.click(this, obj);
  2427. }, [_stiaStudentDeskIconInfo[i]])
  2428. }, _frag); //
  2429. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2430. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2431. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2432. }
  2433. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2434. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2435. _content = $$("div", {
  2436. className: "U_MD_D_KO",
  2437. "onmousedown": U.UF.C.closure(function (obj) {
  2438. //防止拖动图标即打开了桌面应用
  2439. U.MD.D.click(this, obj);
  2440. }, [_szdjgStudentDeskIconInfo[i]]),
  2441. "onclick": U.UF.C.closure(function (obj) {
  2442. //防止拖动图标即打开了桌面应用
  2443. U.MD.D.click(this, obj);
  2444. }, [_szdjgStudentDeskIconInfo[i]])
  2445. }, _frag); //
  2446. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2447. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2448. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2449. }
  2450. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2451. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2452. _content = $$("div", {
  2453. className: "U_MD_D_KO",
  2454. "onmousedown": U.UF.C.closure(function (obj) {
  2455. //防止拖动图标即打开了桌面应用
  2456. U.MD.D.click(this, obj);
  2457. }, [_x010607StudentDeskIconInfo[i]]),
  2458. "onclick": U.UF.C.closure(function (obj) {
  2459. //防止拖动图标即打开了桌面应用
  2460. U.MD.D.click(this, obj);
  2461. }, [_x010607StudentDeskIconInfo[i]])
  2462. }, _frag); //
  2463. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2464. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2465. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2466. }
  2467. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2468. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2469. _content = $$("div", {
  2470. className: "U_MD_D_KO",
  2471. "onmousedown": U.UF.C.closure(function (obj) {
  2472. //防止拖动图标即打开了桌面应用
  2473. U.MD.D.click(this, obj);
  2474. }, [_xhlyStudentDeskIconInfo[i]]),
  2475. "onclick": U.UF.C.closure(function (obj) {
  2476. //防止拖动图标即打开了桌面应用
  2477. U.MD.D.click(this, obj);
  2478. }, [_xhlyStudentDeskIconInfo[i]])
  2479. }, _frag); //
  2480. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2481. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2482. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2483. }
  2484. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2485. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2486. _content = $$("div", {
  2487. className: "U_MD_D_KO",
  2488. "onmousedown": U.UF.C.closure(function (obj) {
  2489. //防止拖动图标即打开了桌面应用
  2490. U.MD.D.click(this, obj);
  2491. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2492. "onclick": U.UF.C.closure(function (obj) {
  2493. //防止拖动图标即打开了桌面应用
  2494. U.MD.D.click(this, obj);
  2495. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2496. }, _frag); //
  2497. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2498. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2499. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2500. }
  2501. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2502. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2503. _content = $$("div", {
  2504. className: "U_MD_D_KO",
  2505. "onmousedown": U.UF.C.closure(function (obj) {
  2506. //防止拖动图标即打开了桌面应用
  2507. U.MD.D.click(this, obj);
  2508. }, [_x010503StudentDeskIconInfo[i]]),
  2509. "onclick": U.UF.C.closure(function (obj) {
  2510. //防止拖动图标即打开了桌面应用
  2511. U.MD.D.click(this, obj);
  2512. }, [_x010503StudentDeskIconInfo[i]])
  2513. }, _frag); //
  2514. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2515. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2516. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2517. }
  2518. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2519. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2520. _content = $$("div", {
  2521. className: "U_MD_D_KO",
  2522. "onmousedown": U.UF.C.closure(function (obj) {
  2523. //防止拖动图标即打开了桌面应用
  2524. U.MD.D.click(this, obj);
  2525. }, [_x010504StudentDeskIconInfo[i]]),
  2526. "onclick": U.UF.C.closure(function (obj) {
  2527. //防止拖动图标即打开了桌面应用
  2528. U.MD.D.click(this, obj);
  2529. }, [_x010504StudentDeskIconInfo[i]])
  2530. }, _frag); //
  2531. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2532. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2533. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2534. }
  2535. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2536. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2537. _content = $$("div", {
  2538. className: "U_MD_D_KO",
  2539. "onmousedown": U.UF.C.closure(function (obj) {
  2540. //防止拖动图标即打开了桌面应用
  2541. U.MD.D.click(this, obj);
  2542. }, [_x010204StudentDeskIconInfo[i]]),
  2543. "onclick": U.UF.C.closure(function (obj) {
  2544. //防止拖动图标即打开了桌面应用
  2545. U.MD.D.click(this, obj);
  2546. }, [_x010204StudentDeskIconInfo[i]])
  2547. }, _frag); //
  2548. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2549. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2550. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2551. }
  2552. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2553. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2554. _content = $$("div", {
  2555. className: "U_MD_D_KO",
  2556. "onmousedown": U.UF.C.closure(function (obj) {
  2557. //防止拖动图标即打开了桌面应用
  2558. U.MD.D.click(this, obj);
  2559. }, [_x320101StudentDeskIconInfo[i]]),
  2560. "onclick": U.UF.C.closure(function (obj) {
  2561. //防止拖动图标即打开了桌面应用
  2562. U.MD.D.click(this, obj);
  2563. }, [_x320101StudentDeskIconInfo[i]])
  2564. }, _frag); //
  2565. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2566. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2567. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2568. }
  2569. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2570. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2571. _content = $$("div", {
  2572. className: "U_MD_D_KO",
  2573. "onmousedown": U.UF.C.closure(function (obj) {
  2574. //防止拖动图标即打开了桌面应用
  2575. U.MD.D.click(this, obj);
  2576. }, [_trailStudentDeskIconInfo[i]]),
  2577. "onclick": U.UF.C.closure(function (obj) {
  2578. //防止拖动图标即打开了桌面应用
  2579. U.MD.D.click(this, obj);
  2580. }, [_trailStudentDeskIconInfo[i]])
  2581. }, _frag); //
  2582. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2583. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2584. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2585. }
  2586. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2587. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2588. _content = $$("div", {
  2589. className: "U_MD_D_KO",
  2590. "onmousedown": U.UF.C.closure(function (obj) {
  2591. //防止拖动图标即打开了桌面应用
  2592. U.MD.D.click(this, obj);
  2593. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2594. "onclick": U.UF.C.closure(function (obj) {
  2595. //防止拖动图标即打开了桌面应用
  2596. U.MD.D.click(this, obj);
  2597. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2598. }, _frag); //
  2599. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2600. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2601. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2602. }
  2603. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2604. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2605. _content = $$("div", {
  2606. className: "U_MD_D_KO",
  2607. "onmousedown": U.UF.C.closure(function (obj) {
  2608. //防止拖动图标即打开了桌面应用
  2609. U.MD.D.click(this, obj);
  2610. }, [_x010608StudentDeskIconInfo[i]]),
  2611. "onclick": U.UF.C.closure(function (obj) {
  2612. //防止拖动图标即打开了桌面应用
  2613. U.MD.D.click(this, obj);
  2614. }, [_x010608StudentDeskIconInfo[i]])
  2615. }, _frag); //
  2616. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2617. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2618. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2619. }
  2620. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2621. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2622. _content = $$("div", {
  2623. className: "U_MD_D_KO",
  2624. "onmousedown": U.UF.C.closure(function (obj) {
  2625. //防止拖动图标即打开了桌面应用
  2626. U.MD.D.click(this, obj);
  2627. }, [_x010611StudentDeskIconInfo[i]]),
  2628. "onclick": U.UF.C.closure(function (obj) {
  2629. //防止拖动图标即打开了桌面应用
  2630. U.MD.D.click(this, obj);
  2631. }, [_x010611StudentDeskIconInfo[i]])
  2632. }, _frag); //
  2633. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2634. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2635. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2636. }
  2637. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2638. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2639. _content = $$("div", {
  2640. className: "U_MD_D_KO",
  2641. "onmousedown": U.UF.C.closure(function (obj) {
  2642. //防止拖动图标即打开了桌面应用
  2643. U.MD.D.click(this, obj);
  2644. }, [_tianyuantudentDeskIconInfo[i]]),
  2645. "onclick": U.UF.C.closure(function (obj) {
  2646. //防止拖动图标即打开了桌面应用
  2647. U.MD.D.click(this, obj);
  2648. }, [_tianyuantudentDeskIconInfo[i]])
  2649. }, _frag); //
  2650. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2651. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2652. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2653. }
  2654. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2655. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2656. _content = $$("div", {
  2657. className: "U_MD_D_KO",
  2658. "onmousedown": U.UF.C.closure(function (obj) {
  2659. //防止拖动图标即打开了桌面应用
  2660. U.MD.D.click(this, obj);
  2661. }, [_siesStudentDeskIconInfo[i]]),
  2662. "onclick": U.UF.C.closure(function (obj) {
  2663. //防止拖动图标即打开了桌面应用
  2664. U.MD.D.click(this, obj);
  2665. }, [_siesStudentDeskIconInfo[i]])
  2666. }, _frag); //
  2667. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2668. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2669. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2670. }
  2671. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2672. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2673. _content = $$("div", {
  2674. className: "U_MD_D_KO",
  2675. "onmousedown": U.UF.C.closure(function (obj) {
  2676. //防止拖动图标即打开了桌面应用
  2677. U.MD.D.click(this, obj);
  2678. }, [_guzmsStudentDeskIconInfo[i]]),
  2679. "onclick": U.UF.C.closure(function (obj) {
  2680. //防止拖动图标即打开了桌面应用
  2681. U.MD.D.click(this, obj);
  2682. }, [_guzmsStudentDeskIconInfo[i]])
  2683. }, _frag); //
  2684. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2685. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2686. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2687. }
  2688. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2689. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2690. _content = $$("div", {
  2691. className: "U_MD_D_KO",
  2692. "onmousedown": U.UF.C.closure(function (obj) {
  2693. //防止拖动图标即打开了桌面应用
  2694. U.MD.D.click(this, obj);
  2695. }, [_hkStudentDeskIconInfo[i]]),
  2696. "onclick": U.UF.C.closure(function (obj) {
  2697. //防止拖动图标即打开了桌面应用
  2698. U.MD.D.click(this, obj);
  2699. }, [_hkStudentDeskIconInfo[i]])
  2700. }, _frag); //
  2701. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2702. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2703. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2704. }
  2705. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2706. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2707. _content = $$("div", {
  2708. className: "U_MD_D_KO",
  2709. "onmousedown": U.UF.C.closure(function (obj) {
  2710. //防止拖动图标即打开了桌面应用
  2711. U.MD.D.click(this, obj);
  2712. }, [_hkaceStudentDeskIconInfo[i]]),
  2713. "onclick": U.UF.C.closure(function (obj) {
  2714. //防止拖动图标即打开了桌面应用
  2715. U.MD.D.click(this, obj);
  2716. }, [_hkaceStudentDeskIconInfo[i]])
  2717. }, _frag); //
  2718. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2719. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2720. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2721. }
  2722. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2723. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2724. _content = $$("div", {
  2725. className: "U_MD_D_KO",
  2726. "onmousedown": U.UF.C.closure(function (obj) {
  2727. //防止拖动图标即打开了桌面应用
  2728. U.MD.D.click(this, obj);
  2729. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2730. "onclick": U.UF.C.closure(function (obj) {
  2731. //防止拖动图标即打开了桌面应用
  2732. U.MD.D.click(this, obj);
  2733. }, [_BSDNSstudentDesktopIconInfo[i]])
  2734. }, _frag); //
  2735. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2736. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2737. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2738. }
  2739. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2740. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2741. _content = $$("div", {
  2742. className: "U_MD_D_KO",
  2743. "onmousedown": U.UF.C.closure(function (obj) {
  2744. //防止拖动图标即打开了桌面应用
  2745. U.MD.D.click(this, obj);
  2746. }, [_cocobizStudentDeskIconInfo[i]]),
  2747. "onclick": U.UF.C.closure(function (obj) {
  2748. //防止拖动图标即打开了桌面应用
  2749. U.MD.D.click(this, obj);
  2750. }, [_cocobizStudentDeskIconInfo[i]])
  2751. }, _frag); //
  2752. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2753. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2754. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2755. }
  2756. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2757. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2758. _content = $$("div", {
  2759. className: "U_MD_D_KO",
  2760. "onmousedown": U.UF.C.closure(function (obj) {
  2761. //防止拖动图标即打开了桌面应用
  2762. U.MD.D.click(this, obj);
  2763. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2764. "onclick": U.UF.C.closure(function (obj) {
  2765. //防止拖动图标即打开了桌面应用
  2766. U.MD.D.click(this, obj);
  2767. }, [_xxzjkyStudentDeskIconInfo[i]])
  2768. }, _frag); //
  2769. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2770. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2771. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2772. }
  2773. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2774. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2775. _content = $$("div", {
  2776. className: "U_MD_D_KO",
  2777. "onmousedown": U.UF.C.closure(function (obj) {
  2778. //防止拖动图标即打开了桌面应用
  2779. U.MD.D.click(this, obj);
  2780. }, [_studentDesktopIconInfo[i]]),
  2781. "onclick": U.UF.C.closure(function (obj) {
  2782. //防止拖动图标即打开了桌面应用
  2783. U.MD.D.click(this, obj);
  2784. }, [_studentDesktopIconInfo[i]])
  2785. }, _frag); //
  2786. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2787. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2788. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2789. }
  2790. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2791. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2792. _content = $$("div", {
  2793. className: "U_MD_D_KO",
  2794. "onmousedown": U.UF.C.closure(function (obj) {
  2795. //防止拖动图标即打开了桌面应用
  2796. U.MD.D.click(this, obj);
  2797. }, [_tcStudentDeskIconInfo[i]]),
  2798. "onclick": U.UF.C.closure(function (obj) {
  2799. //防止拖动图标即打开了桌面应用
  2800. U.MD.D.click(this, obj);
  2801. }, [_tcStudentDeskIconInfo[i]])
  2802. }, _frag); //
  2803. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2804. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2805. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2806. }
  2807. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2808. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2809. _content = $$("div", {
  2810. className: "U_MD_D_KO",
  2811. "onmousedown": U.UF.C.closure(function (obj) {
  2812. //防止拖动图标即打开了桌面应用
  2813. U.MD.D.click(this, obj);
  2814. }, [_szscStudentDeskIconInfo[i]]),
  2815. "onclick": U.UF.C.closure(function (obj) {
  2816. //防止拖动图标即打开了桌面应用
  2817. U.MD.D.click(this, obj);
  2818. }, [_szscStudentDeskIconInfo[i]])
  2819. }, _frag); //
  2820. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2821. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2822. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2823. }
  2824. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2825. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2826. _content = $$("div", {
  2827. className: "U_MD_D_KO",
  2828. "onmousedown": U.UF.C.closure(function (obj) {
  2829. //防止拖动图标即打开了桌面应用
  2830. U.MD.D.click(this, obj);
  2831. }, [_studentDesktopIconInfo3[i]]),
  2832. "onclick": U.UF.C.closure(function (obj) {
  2833. //防止拖动图标即打开了桌面应用
  2834. U.MD.D.click(this, obj);
  2835. }, [_studentDesktopIconInfo3[i]])
  2836. }, _frag); //
  2837. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2838. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2839. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2840. }
  2841. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2842. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2843. _content = $$("div", {
  2844. className: "U_MD_D_KO",
  2845. "onmousedown": U.UF.C.closure(function (obj) {
  2846. //防止拖动图标即打开了桌面应用
  2847. U.MD.D.click(this, obj);
  2848. }, [_studentDesktopIconInfo2[i]]),
  2849. "onclick": U.UF.C.closure(function (obj) {
  2850. //防止拖动图标即打开了桌面应用
  2851. U.MD.D.click(this, obj);
  2852. }, [_studentDesktopIconInfo2[i]])
  2853. }, _frag); //
  2854. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2855. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2856. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2857. }
  2858. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2859. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2860. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2861. continue
  2862. }
  2863. _content = $$("div", {
  2864. className: "U_MD_D_KO",
  2865. "onmousedown": U.UF.C.closure(function (obj) {
  2866. //防止拖动图标即打开了桌面应用
  2867. U.MD.D.click(this, obj);
  2868. }, [_wanketeacherDesktopIconInfo[i]]),
  2869. "onclick": U.UF.C.closure(function (obj) {
  2870. //防止拖动图标即打开了桌面应用
  2871. U.MD.D.click(this, obj);
  2872. }, [_wanketeacherDesktopIconInfo[i]])
  2873. }, _frag); //
  2874. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2875. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2876. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2877. }
  2878. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2879. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2880. _content = $$("div", {
  2881. className: "U_MD_D_KO",
  2882. "onmousedown": U.UF.C.closure(function (obj) {
  2883. //防止拖动图标即打开了桌面应用
  2884. U.MD.D.click(this, obj);
  2885. }, [_wankeAdminDesktopIconInfo[i]]),
  2886. "onclick": U.UF.C.closure(function (obj) {
  2887. //防止拖动图标即打开了桌面应用
  2888. U.MD.D.click(this, obj);
  2889. }, [_wankeAdminDesktopIconInfo[i]])
  2890. }, _frag); //
  2891. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2892. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2893. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2894. }
  2895. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2896. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2897. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2898. continue
  2899. }
  2900. _content = $$("div", {
  2901. className: "U_MD_D_KO",
  2902. "onmousedown": U.UF.C.closure(function (obj) {
  2903. //防止拖动图标即打开了桌面应用
  2904. U.MD.D.click(this, obj);
  2905. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2906. "onclick": U.UF.C.closure(function (obj) {
  2907. //防止拖动图标即打开了桌面应用
  2908. U.MD.D.click(this, obj);
  2909. }, [_scnuaiTeacherDeskIconInfo[i]])
  2910. }, _frag); //
  2911. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2912. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2913. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2914. }
  2915. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2916. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2917. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2918. continue
  2919. }
  2920. _content = $$("div", {
  2921. className: "U_MD_D_KO",
  2922. "onmousedown": U.UF.C.closure(function (obj) {
  2923. //防止拖动图标即打开了桌面应用
  2924. U.MD.D.click(this, obj);
  2925. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2926. "onclick": U.UF.C.closure(function (obj) {
  2927. //防止拖动图标即打开了桌面应用
  2928. U.MD.D.click(this, obj);
  2929. }, [_BSDNSteacherDesktopIconInfo[i]])
  2930. }, _frag); //
  2931. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2932. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2933. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2934. }
  2935. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2936. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2937. _content = $$("div", {
  2938. className: "U_MD_D_KO",
  2939. "onmousedown": U.UF.C.closure(function (obj) {
  2940. //防止拖动图标即打开了桌面应用
  2941. U.MD.D.click(this, obj);
  2942. }, [_scnuaiAdminDeskIconInfo[i]]),
  2943. "onclick": U.UF.C.closure(function (obj) {
  2944. //防止拖动图标即打开了桌面应用
  2945. U.MD.D.click(this, obj);
  2946. }, [_scnuaiAdminDeskIconInfo[i]])
  2947. }, _frag); //
  2948. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2949. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2950. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2951. }
  2952. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2953. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2954. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2955. continue
  2956. }
  2957. _content = $$("div", {
  2958. className: "U_MD_D_KO",
  2959. "onmousedown": U.UF.C.closure(function (obj) {
  2960. //防止拖动图标即打开了桌面应用
  2961. U.MD.D.click(this, obj);
  2962. }, [_jccssylTeacherDeskIconInfo[i]]),
  2963. "onclick": U.UF.C.closure(function (obj) {
  2964. //防止拖动图标即打开了桌面应用
  2965. U.MD.D.click(this, obj);
  2966. }, [_jccssylTeacherDeskIconInfo[i]])
  2967. }, _frag); //
  2968. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2969. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2970. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2971. }
  2972. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2973. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2974. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2975. continue
  2976. }
  2977. _content = $$("div", {
  2978. className: "U_MD_D_KO",
  2979. "onmousedown": U.UF.C.closure(function (obj) {
  2980. //防止拖动图标即打开了桌面应用
  2981. U.MD.D.click(this, obj);
  2982. }, [_caleTeacherDeskIconInfo[i]]),
  2983. "onclick": U.UF.C.closure(function (obj) {
  2984. //防止拖动图标即打开了桌面应用
  2985. U.MD.D.click(this, obj);
  2986. }, [_caleTeacherDeskIconInfo[i]])
  2987. }, _frag); //
  2988. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2989. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2990. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2991. }
  2992. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2993. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2994. _content = $$("div", {
  2995. className: "U_MD_D_KO",
  2996. "onmousedown": U.UF.C.closure(function (obj) {
  2997. //防止拖动图标即打开了桌面应用
  2998. U.MD.D.click(this, obj);
  2999. }, [_tpcOrganizerDeskIconInfo[i]]),
  3000. "onclick": U.UF.C.closure(function (obj) {
  3001. //防止拖动图标即打开了桌面应用
  3002. U.MD.D.click(this, obj);
  3003. }, [_tpcOrganizerDeskIconInfo[i]])
  3004. }, _frag); //
  3005. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3006. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3007. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3008. }
  3009. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3010. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3011. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3012. continue
  3013. }
  3014. _content = $$("div", {
  3015. className: "U_MD_D_KO",
  3016. "onmousedown": U.UF.C.closure(function (obj) {
  3017. //防止拖动图标即打开了桌面应用
  3018. U.MD.D.click(this, obj);
  3019. }, [_tpcTeacherDeskIconInfo[i]]),
  3020. "onclick": U.UF.C.closure(function (obj) {
  3021. //防止拖动图标即打开了桌面应用
  3022. U.MD.D.click(this, obj);
  3023. }, [_tpcTeacherDeskIconInfo[i]])
  3024. }, _frag); //
  3025. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3026. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3027. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3028. }
  3029. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3030. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3031. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3032. continue
  3033. }
  3034. _content = $$("div", {
  3035. className: "U_MD_D_KO",
  3036. "onmousedown": U.UF.C.closure(function (obj) {
  3037. //防止拖动图标即打开了桌面应用
  3038. U.MD.D.click(this, obj);
  3039. }, [_teacherDesktopIconInfo2[i]]),
  3040. "onclick": U.UF.C.closure(function (obj) {
  3041. //防止拖动图标即打开了桌面应用
  3042. U.MD.D.click(this, obj);
  3043. }, [_teacherDesktopIconInfo2[i]])
  3044. }, _frag); //
  3045. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3046. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3047. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3048. }
  3049. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3050. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3051. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3052. continue
  3053. }
  3054. _content = $$("div", {
  3055. className: "U_MD_D_KO",
  3056. "onmousedown": U.UF.C.closure(function (obj) {
  3057. //防止拖动图标即打开了桌面应用
  3058. U.MD.D.click(this, obj);
  3059. }, [_thuioeTeacherDeskIconInfo[i]]),
  3060. "onclick": U.UF.C.closure(function (obj) {
  3061. //防止拖动图标即打开了桌面应用
  3062. U.MD.D.click(this, obj);
  3063. }, [_thuioeTeacherDeskIconInfo[i]])
  3064. }, _frag); //
  3065. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3066. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3067. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3068. }
  3069. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3070. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3071. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3072. continue
  3073. }
  3074. _content = $$("div", {
  3075. className: "U_MD_D_KO",
  3076. "onmousedown": U.UF.C.closure(function (obj) {
  3077. //防止拖动图标即打开了桌面应用
  3078. U.MD.D.click(this, obj);
  3079. }, [_lotechTeacherDeskIconInfo[i]]),
  3080. "onclick": U.UF.C.closure(function (obj) {
  3081. //防止拖动图标即打开了桌面应用
  3082. U.MD.D.click(this, obj);
  3083. }, [_lotechTeacherDeskIconInfo[i]])
  3084. }, _frag); //
  3085. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3086. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3087. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3088. }//
  3089. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3090. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3091. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3092. continue
  3093. }
  3094. _content = $$("div", {
  3095. className: "U_MD_D_KO",
  3096. "onmousedown": U.UF.C.closure(function (obj) {
  3097. //防止拖动图标即打开了桌面应用
  3098. U.MD.D.click(this, obj);
  3099. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3100. "onclick": U.UF.C.closure(function (obj) {
  3101. //防止拖动图标即打开了桌面应用
  3102. U.MD.D.click(this, obj);
  3103. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3104. }, _frag); //
  3105. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3106. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3107. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3108. }
  3109. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3110. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3111. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3112. continue
  3113. }
  3114. _content = $$("div", {
  3115. className: "U_MD_D_KO",
  3116. "onmousedown": U.UF.C.closure(function (obj) {
  3117. //防止拖动图标即打开了桌面应用
  3118. U.MD.D.click(this, obj);
  3119. }, [_siesTeacherDeskIconInfo[i]]),
  3120. "onclick": U.UF.C.closure(function (obj) {
  3121. //防止拖动图标即打开了桌面应用
  3122. U.MD.D.click(this, obj);
  3123. }, [_siesTeacherDeskIconInfo[i]])
  3124. }, _frag); //
  3125. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3126. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3127. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3128. }
  3129. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3130. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3131. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3132. continue
  3133. }
  3134. _content = $$("div", {
  3135. className: "U_MD_D_KO",
  3136. "onmousedown": U.UF.C.closure(function (obj) {
  3137. //防止拖动图标即打开了桌面应用
  3138. U.MD.D.click(this, obj);
  3139. }, [_guzmsTeacherDeskIconInfo[i]]),
  3140. "onclick": U.UF.C.closure(function (obj) {
  3141. //防止拖动图标即打开了桌面应用
  3142. U.MD.D.click(this, obj);
  3143. }, [_guzmsTeacherDeskIconInfo[i]])
  3144. }, _frag); //
  3145. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3146. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3147. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3148. }
  3149. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3150. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3151. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3152. continue
  3153. }
  3154. _content = $$("div", {
  3155. className: "U_MD_D_KO",
  3156. "onmousedown": U.UF.C.closure(function (obj) {
  3157. //防止拖动图标即打开了桌面应用
  3158. U.MD.D.click(this, obj);
  3159. }, [_longhuaTeacherDeskIconInfo[i]]),
  3160. "onclick": U.UF.C.closure(function (obj) {
  3161. //防止拖动图标即打开了桌面应用
  3162. U.MD.D.click(this, obj);
  3163. }, [_longhuaTeacherDeskIconInfo[i]])
  3164. }, _frag); //
  3165. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3166. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3167. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3168. }
  3169. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3170. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3171. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3172. continue
  3173. }
  3174. _content = $$("div", {
  3175. className: "U_MD_D_KO",
  3176. "onmousedown": U.UF.C.closure(function (obj) {
  3177. //防止拖动图标即打开了桌面应用
  3178. U.MD.D.click(this, obj);
  3179. }, [_ytyTeacherDeskIconInfo[i]]),
  3180. "onclick": U.UF.C.closure(function (obj) {
  3181. //防止拖动图标即打开了桌面应用
  3182. U.MD.D.click(this, obj);
  3183. }, [_ytyTeacherDeskIconInfo[i]])
  3184. }, _frag); //
  3185. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3186. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3187. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3188. }
  3189. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3190. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3191. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3192. continue
  3193. }
  3194. _content = $$("div", {
  3195. className: "U_MD_D_KO",
  3196. "onmousedown": U.UF.C.closure(function (obj) {
  3197. //防止拖动图标即打开了桌面应用
  3198. U.MD.D.click(this, obj);
  3199. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3200. "onclick": U.UF.C.closure(function (obj) {
  3201. //防止拖动图标即打开了桌面应用
  3202. U.MD.D.click(this, obj);
  3203. }, [_yunhaiTeacherDeskIconInfo[i]])
  3204. }, _frag); //
  3205. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3206. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3207. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3208. } //_hkStudentDeskIconInfo
  3209. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3210. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3211. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3212. continue
  3213. }
  3214. _content = $$("div", {
  3215. className: "U_MD_D_KO",
  3216. "onmousedown": U.UF.C.closure(function (obj) {
  3217. //防止拖动图标即打开了桌面应用
  3218. U.MD.D.click(this, obj);
  3219. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3220. "onclick": U.UF.C.closure(function (obj) {
  3221. //防止拖动图标即打开了桌面应用
  3222. U.MD.D.click(this, obj);
  3223. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3224. }, _frag); //
  3225. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3226. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3227. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3228. }
  3229. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3230. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3231. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3232. continue
  3233. }
  3234. _content = $$("div", {
  3235. className: "U_MD_D_KO",
  3236. "onmousedown": U.UF.C.closure(function (obj) {
  3237. //防止拖动图标即打开了桌面应用
  3238. U.MD.D.click(this, obj);
  3239. }, [_hkTeacherDeskIconInfo[i]]),
  3240. "onclick": U.UF.C.closure(function (obj) {
  3241. //防止拖动图标即打开了桌面应用
  3242. U.MD.D.click(this, obj);
  3243. }, [_hkTeacherDeskIconInfo[i]])
  3244. }, _frag); //
  3245. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3246. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3247. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3248. }
  3249. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3250. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3251. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3252. continue
  3253. }
  3254. _content = $$("div", {
  3255. className: "U_MD_D_KO",
  3256. "onmousedown": U.UF.C.closure(function (obj) {
  3257. //防止拖动图标即打开了桌面应用
  3258. U.MD.D.click(this, obj);
  3259. }, [_hkaceTeacherDeskIconInfo[i]]),
  3260. "onclick": U.UF.C.closure(function (obj) {
  3261. //防止拖动图标即打开了桌面应用
  3262. U.MD.D.click(this, obj);
  3263. }, [_hkaceTeacherDeskIconInfo[i]])
  3264. }, _frag); //
  3265. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3266. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3267. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3268. }
  3269. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3270. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3271. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3272. continue
  3273. }
  3274. _content = $$("div", {
  3275. className: "U_MD_D_KO",
  3276. "onmousedown": U.UF.C.closure(function (obj) {
  3277. //防止拖动图标即打开了桌面应用
  3278. U.MD.D.click(this, obj);
  3279. }, [_cocobizTeacherDeskIconInfo[i]]),
  3280. "onclick": U.UF.C.closure(function (obj) {
  3281. //防止拖动图标即打开了桌面应用
  3282. U.MD.D.click(this, obj);
  3283. }, [_cocobizTeacherDeskIconInfo[i]])
  3284. }, _frag); //
  3285. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3286. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3287. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3288. }
  3289. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3290. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3291. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3292. continue
  3293. }
  3294. _content = $$("div", {
  3295. className: "U_MD_D_KO",
  3296. "onmousedown": U.UF.C.closure(function (obj) {
  3297. //防止拖动图标即打开了桌面应用
  3298. U.MD.D.click(this, obj);
  3299. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3300. "onclick": U.UF.C.closure(function (obj) {
  3301. //防止拖动图标即打开了桌面应用
  3302. U.MD.D.click(this, obj);
  3303. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3304. }, _frag); //
  3305. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3306. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3307. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3308. }
  3309. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3310. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3311. _content = $$("div", {
  3312. className: "U_MD_D_KO",
  3313. "onmousedown": U.UF.C.closure(function (obj) {
  3314. //防止拖动图标即打开了桌面应用
  3315. U.MD.D.click(this, obj);
  3316. }, [_gdjgAdminDeskIconInfo[i]]),
  3317. "onclick": U.UF.C.closure(function (obj) {
  3318. //防止拖动图标即打开了桌面应用
  3319. U.MD.D.click(this, obj);
  3320. }, [_gdjgAdminDeskIconInfo[i]])
  3321. }, _frag); //
  3322. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3323. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3324. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3325. }
  3326. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3327. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3328. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3329. continue
  3330. }
  3331. _content = $$("div", {
  3332. className: "U_MD_D_KO",
  3333. "onmousedown": U.UF.C.closure(function (obj) {
  3334. //防止拖动图标即打开了桌面应用
  3335. U.MD.D.click(this, obj);
  3336. }, [_gdjgTeacherDeskIconInfo[i]]),
  3337. "onclick": U.UF.C.closure(function (obj) {
  3338. //防止拖动图标即打开了桌面应用
  3339. U.MD.D.click(this, obj);
  3340. }, [_gdjgTeacherDeskIconInfo[i]])
  3341. }, _frag); //
  3342. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3343. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3344. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3345. }
  3346. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3347. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3348. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3349. continue
  3350. }
  3351. _content = $$("div", {
  3352. className: "U_MD_D_KO",
  3353. "onmousedown": U.UF.C.closure(function (obj) {
  3354. //防止拖动图标即打开了桌面应用
  3355. U.MD.D.click(this, obj);
  3356. }, [_szherTeacherDeskIconInfo[i]]),
  3357. "onclick": U.UF.C.closure(function (obj) {
  3358. //防止拖动图标即打开了桌面应用
  3359. U.MD.D.click(this, obj);
  3360. }, [_szherTeacherDeskIconInfo[i]])
  3361. }, _frag); //
  3362. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3363. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3364. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3365. }
  3366. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3367. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3368. _content = $$("div", {
  3369. className: "U_MD_D_KO",
  3370. "onmousedown": U.UF.C.closure(function (obj) {
  3371. //防止拖动图标即打开了桌面应用
  3372. U.MD.D.click(this, obj);
  3373. }, [_heyuannAdminDeskIconInfo[i]]),
  3374. "onclick": U.UF.C.closure(function (obj) {
  3375. //防止拖动图标即打开了桌面应用
  3376. U.MD.D.click(this, obj);
  3377. }, [_heyuannAdminDeskIconInfo[i]])
  3378. }, _frag); //
  3379. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3380. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3381. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3382. }
  3383. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3384. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3385. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3386. continue
  3387. }
  3388. _content = $$("div", {
  3389. className: "U_MD_D_KO",
  3390. "onmousedown": U.UF.C.closure(function (obj) {
  3391. //防止拖动图标即打开了桌面应用
  3392. U.MD.D.click(this, obj);
  3393. }, [_heyuanTeacherDeskIconInfo[i]]),
  3394. "onclick": U.UF.C.closure(function (obj) {
  3395. //防止拖动图标即打开了桌面应用
  3396. U.MD.D.click(this, obj);
  3397. }, [_heyuanTeacherDeskIconInfo[i]])
  3398. }, _frag); //
  3399. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3400. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3401. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3402. } //
  3403. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3404. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3405. _content = $$("div", {
  3406. className: "U_MD_D_KO",
  3407. "onmousedown": U.UF.C.closure(function (obj) {
  3408. //防止拖动图标即打开了桌面应用
  3409. U.MD.D.click(this, obj);
  3410. }, [_dseiAdminDeskIconInfo[i]]),
  3411. "onclick": U.UF.C.closure(function (obj) {
  3412. //防止拖动图标即打开了桌面应用
  3413. U.MD.D.click(this, obj);
  3414. }, [_dseiAdminDeskIconInfo[i]])
  3415. }, _frag); //
  3416. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3417. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3418. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3419. }
  3420. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3421. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3422. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3423. continue
  3424. }
  3425. _content = $$("div", {
  3426. className: "U_MD_D_KO",
  3427. "onmousedown": U.UF.C.closure(function (obj) {
  3428. //防止拖动图标即打开了桌面应用
  3429. U.MD.D.click(this, obj);
  3430. }, [_dseiTeacherDeskIconInfo[i]]),
  3431. "onclick": U.UF.C.closure(function (obj) {
  3432. //防止拖动图标即打开了桌面应用
  3433. U.MD.D.click(this, obj);
  3434. }, [_dseiTeacherDeskIconInfo[i]])
  3435. }, _frag); //
  3436. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3437. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3438. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3439. } //
  3440. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3441. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3442. _content = $$("div", {
  3443. className: "U_MD_D_KO",
  3444. "onmousedown": U.UF.C.closure(function (obj) {
  3445. //防止拖动图标即打开了桌面应用
  3446. U.MD.D.click(this, obj);
  3447. }, [_chjyjAdminDeskIconInfo[i]]),
  3448. "onclick": U.UF.C.closure(function (obj) {
  3449. //防止拖动图标即打开了桌面应用
  3450. U.MD.D.click(this, obj);
  3451. }, [_chjyjAdminDeskIconInfo[i]])
  3452. }, _frag); //
  3453. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3454. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3455. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3456. }//
  3457. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3458. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3459. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3460. continue
  3461. }
  3462. _content = $$("div", {
  3463. className: "U_MD_D_KO",
  3464. "onmousedown": U.UF.C.closure(function (obj) {
  3465. //防止拖动图标即打开了桌面应用
  3466. U.MD.D.click(this, obj);
  3467. }, [_chjyjTeacherDeskIconInfo[i]]),
  3468. "onclick": U.UF.C.closure(function (obj) {
  3469. //防止拖动图标即打开了桌面应用
  3470. U.MD.D.click(this, obj);
  3471. }, [_chjyjTeacherDeskIconInfo[i]])
  3472. }, _frag); //
  3473. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3474. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3475. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3476. }
  3477. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3478. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3479. _content = $$("div", {
  3480. className: "U_MD_D_KO",
  3481. "onmousedown": U.UF.C.closure(function (obj) {
  3482. //防止拖动图标即打开了桌面应用
  3483. U.MD.D.click(this, obj);
  3484. }, [_szjkyAdminDeskIconInfo[i]]),
  3485. "onclick": U.UF.C.closure(function (obj) {
  3486. //防止拖动图标即打开了桌面应用
  3487. U.MD.D.click(this, obj);
  3488. }, [_szjkyAdminDeskIconInfo[i]])
  3489. }, _frag); //
  3490. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3491. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3492. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3493. }//
  3494. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3495. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3496. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3497. continue
  3498. }
  3499. _content = $$("div", {
  3500. className: "U_MD_D_KO",
  3501. "onmousedown": U.UF.C.closure(function (obj) {
  3502. //防止拖动图标即打开了桌面应用
  3503. U.MD.D.click(this, obj);
  3504. }, [_szjkyTeacherDeskIconInfo[i]]),
  3505. "onclick": U.UF.C.closure(function (obj) {
  3506. //防止拖动图标即打开了桌面应用
  3507. U.MD.D.click(this, obj);
  3508. }, [_szjkyTeacherDeskIconInfo[i]])
  3509. }, _frag); //
  3510. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3511. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3512. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3513. }
  3514. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3515. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3516. _content = $$("div", {
  3517. className: "U_MD_D_KO",
  3518. "onmousedown": U.UF.C.closure(function (obj) {
  3519. //防止拖动图标即打开了桌面应用
  3520. U.MD.D.click(this, obj);
  3521. }, [_x020201AdminDeskIconInfo[i]]),
  3522. "onclick": U.UF.C.closure(function (obj) {
  3523. //防止拖动图标即打开了桌面应用
  3524. U.MD.D.click(this, obj);
  3525. }, [_x020201AdminDeskIconInfo[i]])
  3526. }, _frag); //
  3527. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3528. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3529. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3530. }//
  3531. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3532. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3533. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3534. continue
  3535. }
  3536. _content = $$("div", {
  3537. className: "U_MD_D_KO",
  3538. "onmousedown": U.UF.C.closure(function (obj) {
  3539. //防止拖动图标即打开了桌面应用
  3540. U.MD.D.click(this, obj);
  3541. }, [_x020201TeacherDeskIconInfo[i]]),
  3542. "onclick": U.UF.C.closure(function (obj) {
  3543. //防止拖动图标即打开了桌面应用
  3544. U.MD.D.click(this, obj);
  3545. }, [_x020201TeacherDeskIconInfo[i]])
  3546. }, _frag); //
  3547. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3548. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3549. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3550. }
  3551. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3552. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3553. _content = $$("div", {
  3554. className: "U_MD_D_KO",
  3555. "onmousedown": U.UF.C.closure(function (obj) {
  3556. //防止拖动图标即打开了桌面应用
  3557. U.MD.D.click(this, obj);
  3558. }, [_SCNUETAdminDeskIconInfo[i]]),
  3559. "onclick": U.UF.C.closure(function (obj) {
  3560. //防止拖动图标即打开了桌面应用
  3561. U.MD.D.click(this, obj);
  3562. }, [_SCNUETAdminDeskIconInfo[i]])
  3563. }, _frag); //
  3564. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3565. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3566. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3567. }//
  3568. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3569. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3570. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3571. continue
  3572. }
  3573. _content = $$("div", {
  3574. className: "U_MD_D_KO",
  3575. "onmousedown": U.UF.C.closure(function (obj) {
  3576. //防止拖动图标即打开了桌面应用
  3577. U.MD.D.click(this, obj);
  3578. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3579. "onclick": U.UF.C.closure(function (obj) {
  3580. //防止拖动图标即打开了桌面应用
  3581. U.MD.D.click(this, obj);
  3582. }, [_SCNUETTeacherDeskIconInfo[i]])
  3583. }, _frag); //
  3584. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3585. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3586. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3587. }
  3588. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3589. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3590. _content = $$("div", {
  3591. className: "U_MD_D_KO",
  3592. "onmousedown": U.UF.C.closure(function (obj) {
  3593. //防止拖动图标即打开了桌面应用
  3594. U.MD.D.click(this, obj);
  3595. }, [_futianAdminDeskIconInfo[i]]),
  3596. "onclick": U.UF.C.closure(function (obj) {
  3597. //防止拖动图标即打开了桌面应用
  3598. U.MD.D.click(this, obj);
  3599. }, [_futianAdminDeskIconInfo[i]])
  3600. }, _frag); //
  3601. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3602. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3603. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3604. }
  3605. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3606. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3607. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3608. continue
  3609. }
  3610. _content = $$("div", {
  3611. className: "U_MD_D_KO",
  3612. "onmousedown": U.UF.C.closure(function (obj) {
  3613. //防止拖动图标即打开了桌面应用
  3614. U.MD.D.click(this, obj);
  3615. }, [_futianTeacherDeskIconInfo[i]]),
  3616. "onclick": U.UF.C.closure(function (obj) {
  3617. //防止拖动图标即打开了桌面应用
  3618. U.MD.D.click(this, obj);
  3619. }, [_futianTeacherDeskIconInfo[i]])
  3620. }, _frag); //
  3621. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3622. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3623. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3624. }
  3625. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3626. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3627. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3628. continue
  3629. }
  3630. _content = $$("div", {
  3631. className: "U_MD_D_KO",
  3632. "onmousedown": U.UF.C.closure(function (obj) {
  3633. //防止拖动图标即打开了桌面应用
  3634. U.MD.D.click(this, obj);
  3635. }, [_MingdeTeacherDeskIcon[i]]),
  3636. "onclick": U.UF.C.closure(function (obj) {
  3637. //防止拖动图标即打开了桌面应用
  3638. U.MD.D.click(this, obj);
  3639. }, [_MingdeTeacherDeskIcon[i]])
  3640. }, _frag); //
  3641. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3642. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3643. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3644. }
  3645. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3646. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3647. _content = $$("div", {
  3648. className: "U_MD_D_KO",
  3649. "onmousedown": U.UF.C.closure(function (obj) {
  3650. //防止拖动图标即打开了桌面应用
  3651. U.MD.D.click(this, obj);
  3652. }, [_lhsAdminDesktopIconInfo[i]]),
  3653. "onclick": U.UF.C.closure(function (obj) {
  3654. //防止拖动图标即打开了桌面应用
  3655. U.MD.D.click(this, obj);
  3656. }, [_lhsAdminDesktopIconInfo[i]])
  3657. }, _frag); //
  3658. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3659. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3660. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3661. }
  3662. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3663. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3664. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3665. continue
  3666. }
  3667. _content = $$("div", {
  3668. className: "U_MD_D_KO",
  3669. "onmousedown": U.UF.C.closure(function (obj) {
  3670. //防止拖动图标即打开了桌面应用
  3671. U.MD.D.click(this, obj);
  3672. }, [_lhsteacherDesktopIconInfo[i]]),
  3673. "onclick": U.UF.C.closure(function (obj) {
  3674. //防止拖动图标即打开了桌面应用
  3675. U.MD.D.click(this, obj);
  3676. }, [_lhsteacherDesktopIconInfo[i]])
  3677. }, _frag); //
  3678. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3679. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3680. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3681. }
  3682. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3683. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3684. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3685. continue
  3686. }
  3687. _content = $$("div", {
  3688. className: "U_MD_D_KO",
  3689. "onmousedown": U.UF.C.closure(function (obj) {
  3690. //防止拖动图标即打开了桌面应用
  3691. U.MD.D.click(this, obj);
  3692. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3693. "onclick": U.UF.C.closure(function (obj) {
  3694. //防止拖动图标即打开了桌面应用
  3695. U.MD.D.click(this, obj);
  3696. }, [_zhoujiateacherDesktopIconInfo[i]])
  3697. }, _frag); //
  3698. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3699. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3700. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3701. }
  3702. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3703. for (i = 0; i < _hanDeskIcon.length; i++) {
  3704. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3705. continue
  3706. }
  3707. _content = $$("div", {
  3708. className: "U_MD_D_KO",
  3709. "onmousedown": U.UF.C.closure(function (obj) {
  3710. //防止拖动图标即打开了桌面应用
  3711. U.MD.D.click(this, obj);
  3712. }, [_hanDeskIcon[i]]),
  3713. "onclick": U.UF.C.closure(function (obj) {
  3714. //防止拖动图标即打开了桌面应用
  3715. U.MD.D.click(this, obj);
  3716. }, [_hanDeskIcon[i]])
  3717. }, _frag); //
  3718. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3719. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3720. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3721. }
  3722. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3723. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3724. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3725. continue
  3726. }
  3727. _content = $$("div", {
  3728. className: "U_MD_D_KO",
  3729. "onmousedown": U.UF.C.closure(function (obj) {
  3730. //防止拖动图标即打开了桌面应用
  3731. U.MD.D.click(this, obj);
  3732. }, [_orgStemDeskIcon[i]]),
  3733. "onclick": U.UF.C.closure(function (obj) {
  3734. //防止拖动图标即打开了桌面应用
  3735. U.MD.D.click(this, obj);
  3736. }, [_orgStemDeskIcon[i]])
  3737. }, _frag); //
  3738. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3739. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3740. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3741. }
  3742. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3743. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3744. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3745. continue
  3746. }
  3747. _content = $$("div", {
  3748. className: "U_MD_D_KO",
  3749. "onmousedown": U.UF.C.closure(function (obj) {
  3750. //防止拖动图标即打开了桌面应用
  3751. U.MD.D.click(this, obj);
  3752. }, [_szulsDeskIcon[i]]),
  3753. "onclick": U.UF.C.closure(function (obj) {
  3754. //防止拖动图标即打开了桌面应用
  3755. U.MD.D.click(this, obj);
  3756. }, [_szulsDeskIcon[i]])
  3757. }, _frag); //
  3758. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3759. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3760. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3761. }
  3762. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3763. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3764. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3765. continue
  3766. }
  3767. _content = $$("div", {
  3768. className: "U_MD_D_KO",
  3769. "onmousedown": U.UF.C.closure(function (obj) {
  3770. //防止拖动图标即打开了桌面应用
  3771. U.MD.D.click(this, obj);
  3772. }, [_orgDesktopIconInfo[i]]),
  3773. "onclick": U.UF.C.closure(function (obj) {
  3774. //防止拖动图标即打开了桌面应用
  3775. U.MD.D.click(this, obj);
  3776. }, [_orgDesktopIconInfo[i]])
  3777. }, _frag); //
  3778. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3779. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3780. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3781. }
  3782. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3783. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3784. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3785. continue
  3786. }
  3787. _content = $$("div", {
  3788. className: "U_MD_D_KO",
  3789. "onmousedown": U.UF.C.closure(function (obj) {
  3790. //防止拖动图标即打开了桌面应用
  3791. U.MD.D.click(this, obj);
  3792. }, [_schoolDesktopIconInfo[i]]),
  3793. "onclick": U.UF.C.closure(function (obj) {
  3794. //防止拖动图标即打开了桌面应用
  3795. U.MD.D.click(this, obj);
  3796. }, [_schoolDesktopIconInfo[i]])
  3797. }, _frag); //
  3798. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3799. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3800. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3801. }
  3802. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3803. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3804. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3805. continue
  3806. }
  3807. _content = $$("div", {
  3808. className: "U_MD_D_KO",
  3809. "onmousedown": U.UF.C.closure(function (obj) {
  3810. //防止拖动图标即打开了桌面应用
  3811. U.MD.D.click(this, obj);
  3812. }, [_GMteacherDesktopIconInfo[i]]),
  3813. "onclick": U.UF.C.closure(function (obj) {
  3814. //防止拖动图标即打开了桌面应用
  3815. U.MD.D.click(this, obj);
  3816. }, [_GMteacherDesktopIconInfo[i]])
  3817. }, _frag); //
  3818. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3819. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3820. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3821. }
  3822. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3823. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3824. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3825. continue
  3826. }
  3827. _content = $$("div", {
  3828. className: "U_MD_D_KO",
  3829. "onmousedown": U.UF.C.closure(function (obj) {
  3830. //防止拖动图标即打开了桌面应用
  3831. U.MD.D.click(this, obj);
  3832. }, [_SONGteacherDesktopIconInfo[i]]),
  3833. "onclick": U.UF.C.closure(function (obj) {
  3834. //防止拖动图标即打开了桌面应用
  3835. U.MD.D.click(this, obj);
  3836. }, [_SONGteacherDesktopIconInfo[i]])
  3837. }, _frag); //
  3838. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3839. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3840. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3841. }
  3842. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3843. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3844. _content = $$("div", {
  3845. className: "U_MD_D_KO",
  3846. "onmousedown": U.UF.C.closure(function (obj) {
  3847. //防止拖动图标即打开了桌面应用
  3848. U.MD.D.click(this, obj);
  3849. }, [_GMstudentDesktopIconInfo[i]]),
  3850. "onclick": U.UF.C.closure(function (obj) {
  3851. //防止拖动图标即打开了桌面应用
  3852. U.MD.D.click(this, obj);
  3853. }, [_GMstudentDesktopIconInfo[i]])
  3854. }, _frag); //
  3855. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3856. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3857. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3858. }
  3859. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3860. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3861. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3862. continue
  3863. }
  3864. _content = $$("div", {
  3865. className: "U_MD_D_KO",
  3866. "onmousedown": U.UF.C.closure(function (obj) {
  3867. //防止拖动图标即打开了桌面应用
  3868. U.MD.D.click(this, obj);
  3869. }, [_tcTeacherDeskIconInfo[i]]),
  3870. "onclick": U.UF.C.closure(function (obj) {
  3871. //防止拖动图标即打开了桌面应用
  3872. U.MD.D.click(this, obj);
  3873. }, [_tcTeacherDeskIconInfo[i]])
  3874. }, _frag); //
  3875. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3876. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3877. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3878. }
  3879. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3880. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3881. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3882. continue
  3883. }
  3884. _content = $$("div", {
  3885. className: "U_MD_D_KO",
  3886. "onmousedown": U.UF.C.closure(function (obj) {
  3887. //防止拖动图标即打开了桌面应用
  3888. U.MD.D.click(this, obj);
  3889. }, [_tcOrganizerDeskIconInfo[i]]),
  3890. "onclick": U.UF.C.closure(function (obj) {
  3891. //防止拖动图标即打开了桌面应用
  3892. U.MD.D.click(this, obj);
  3893. }, [_tcOrganizerDeskIconInfo[i]])
  3894. }, _frag); //
  3895. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3896. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3897. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3898. }
  3899. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3900. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3901. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3902. continue
  3903. }
  3904. _content = $$("div", {
  3905. className: "U_MD_D_KO",
  3906. "onmousedown": U.UF.C.closure(function (obj) {
  3907. //防止拖动图标即打开了桌面应用
  3908. U.MD.D.click(this, obj);
  3909. }, [_szscTeacherDeskIconInfo[i]]),
  3910. "onclick": U.UF.C.closure(function (obj) {
  3911. //防止拖动图标即打开了桌面应用
  3912. U.MD.D.click(this, obj);
  3913. }, [_szscTeacherDeskIconInfo[i]])
  3914. }, _frag); //
  3915. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3916. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3917. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3918. }
  3919. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3920. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3921. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3922. continue
  3923. }
  3924. _content = $$("div", {
  3925. className: "U_MD_D_KO",
  3926. "onmousedown": U.UF.C.closure(function (obj) {
  3927. //防止拖动图标即打开了桌面应用
  3928. U.MD.D.click(this, obj);
  3929. }, [_szscOrganizerDeskIconInfo[i]]),
  3930. "onclick": U.UF.C.closure(function (obj) {
  3931. //防止拖动图标即打开了桌面应用
  3932. U.MD.D.click(this, obj);
  3933. }, [_szscOrganizerDeskIconInfo[i]])
  3934. }, _frag); //
  3935. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3936. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3937. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3938. }
  3939. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3940. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3941. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3942. continue
  3943. }
  3944. _content = $$("div", {
  3945. className: "U_MD_D_KO",
  3946. "onmousedown": U.UF.C.closure(function (obj) {
  3947. //防止拖动图标即打开了桌面应用
  3948. U.MD.D.click(this, obj);
  3949. }, [_nsfxTeacherDeskIconInfo[i]]),
  3950. "onclick": U.UF.C.closure(function (obj) {
  3951. //防止拖动图标即打开了桌面应用
  3952. U.MD.D.click(this, obj);
  3953. }, [_nsfxTeacherDeskIconInfo[i]])
  3954. }, _frag); //
  3955. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3956. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3957. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3958. }
  3959. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3960. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3961. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3962. continue
  3963. }
  3964. _content = $$("div", {
  3965. className: "U_MD_D_KO",
  3966. "onmousedown": U.UF.C.closure(function (obj) {
  3967. //防止拖动图标即打开了桌面应用
  3968. U.MD.D.click(this, obj);
  3969. }, [_stiaTeacherDeskIconInfo[i]]),
  3970. "onclick": U.UF.C.closure(function (obj) {
  3971. //防止拖动图标即打开了桌面应用
  3972. U.MD.D.click(this, obj);
  3973. }, [_stiaTeacherDeskIconInfo[i]])
  3974. }, _frag); //
  3975. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3976. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3977. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3978. }
  3979. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3980. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3981. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3982. continue
  3983. }
  3984. _content = $$("div", {
  3985. className: "U_MD_D_KO",
  3986. "onmousedown": U.UF.C.closure(function (obj) {
  3987. //防止拖动图标即打开了桌面应用
  3988. U.MD.D.click(this, obj);
  3989. }, [_szdjgTeacherDeskIconInfo[i]]),
  3990. "onclick": U.UF.C.closure(function (obj) {
  3991. //防止拖动图标即打开了桌面应用
  3992. U.MD.D.click(this, obj);
  3993. }, [_szdjgTeacherDeskIconInfo[i]])
  3994. }, _frag); //
  3995. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3996. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3997. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3998. }
  3999. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4000. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4001. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4002. continue
  4003. }
  4004. _content = $$("div", {
  4005. className: "U_MD_D_KO",
  4006. "onmousedown": U.UF.C.closure(function (obj) {
  4007. //防止拖动图标即打开了桌面应用
  4008. U.MD.D.click(this, obj);
  4009. }, [_x010607TeacherDeskIconInfo[i]]),
  4010. "onclick": U.UF.C.closure(function (obj) {
  4011. //防止拖动图标即打开了桌面应用
  4012. U.MD.D.click(this, obj);
  4013. }, [_x010607TeacherDeskIconInfo[i]])
  4014. }, _frag); //
  4015. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4016. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4017. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4018. }
  4019. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4020. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4021. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4022. continue
  4023. }
  4024. _content = $$("div", {
  4025. className: "U_MD_D_KO",
  4026. "onmousedown": U.UF.C.closure(function (obj) {
  4027. //防止拖动图标即打开了桌面应用
  4028. U.MD.D.click(this, obj);
  4029. }, [_xhlyTeacherDeskIconInfo[i]]),
  4030. "onclick": U.UF.C.closure(function (obj) {
  4031. //防止拖动图标即打开了桌面应用
  4032. U.MD.D.click(this, obj);
  4033. }, [_xhlyTeacherDeskIconInfo[i]])
  4034. }, _frag); //
  4035. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4036. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4037. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4038. }
  4039. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4040. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4041. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4042. continue
  4043. }
  4044. _content = $$("div", {
  4045. className: "U_MD_D_KO",
  4046. "onmousedown": U.UF.C.closure(function (obj) {
  4047. //防止拖动图标即打开了桌面应用
  4048. U.MD.D.click(this, obj);
  4049. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4050. "onclick": U.UF.C.closure(function (obj) {
  4051. //防止拖动图标即打开了桌面应用
  4052. U.MD.D.click(this, obj);
  4053. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4054. }, _frag); //
  4055. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4056. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4057. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4058. }
  4059. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4060. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4061. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4062. continue
  4063. }
  4064. _content = $$("div", {
  4065. className: "U_MD_D_KO",
  4066. "onmousedown": U.UF.C.closure(function (obj) {
  4067. //防止拖动图标即打开了桌面应用
  4068. U.MD.D.click(this, obj);
  4069. }, [_x010503TeacherDeskIconInfo[i]]),
  4070. "onclick": U.UF.C.closure(function (obj) {
  4071. //防止拖动图标即打开了桌面应用
  4072. U.MD.D.click(this, obj);
  4073. }, [_x010503TeacherDeskIconInfo[i]])
  4074. }, _frag); //
  4075. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4076. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4077. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4078. }
  4079. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4080. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4081. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4082. continue
  4083. }
  4084. _content = $$("div", {
  4085. className: "U_MD_D_KO",
  4086. "onmousedown": U.UF.C.closure(function (obj) {
  4087. //防止拖动图标即打开了桌面应用
  4088. U.MD.D.click(this, obj);
  4089. }, [_x010504TeacherDeskIconInfo[i]]),
  4090. "onclick": U.UF.C.closure(function (obj) {
  4091. //防止拖动图标即打开了桌面应用
  4092. U.MD.D.click(this, obj);
  4093. }, [_x010504TeacherDeskIconInfo[i]])
  4094. }, _frag); //
  4095. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4096. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4097. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4098. }
  4099. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4100. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4101. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4102. continue
  4103. }
  4104. _content = $$("div", {
  4105. className: "U_MD_D_KO",
  4106. "onmousedown": U.UF.C.closure(function (obj) {
  4107. //防止拖动图标即打开了桌面应用
  4108. U.MD.D.click(this, obj);
  4109. }, [_x010204TeacherDeskIconInfo[i]]),
  4110. "onclick": U.UF.C.closure(function (obj) {
  4111. //防止拖动图标即打开了桌面应用
  4112. U.MD.D.click(this, obj);
  4113. }, [_x010204TeacherDeskIconInfo[i]])
  4114. }, _frag); //
  4115. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4116. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4117. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4118. }
  4119. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4120. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4121. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4122. continue
  4123. }
  4124. _content = $$("div", {
  4125. className: "U_MD_D_KO",
  4126. "onmousedown": U.UF.C.closure(function (obj) {
  4127. //防止拖动图标即打开了桌面应用
  4128. U.MD.D.click(this, obj);
  4129. }, [_x320101TeacherDeskIconInfo[i]]),
  4130. "onclick": U.UF.C.closure(function (obj) {
  4131. //防止拖动图标即打开了桌面应用
  4132. U.MD.D.click(this, obj);
  4133. }, [_x320101TeacherDeskIconInfo[i]])
  4134. }, _frag); //
  4135. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4136. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4137. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4138. }
  4139. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4140. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4141. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4142. continue
  4143. }
  4144. _content = $$("div", {
  4145. className: "U_MD_D_KO",
  4146. "onmousedown": U.UF.C.closure(function (obj) {
  4147. //防止拖动图标即打开了桌面应用
  4148. U.MD.D.click(this, obj);
  4149. }, [_trailTeacherDeskIconInfo[i]]),
  4150. "onclick": U.UF.C.closure(function (obj) {
  4151. //防止拖动图标即打开了桌面应用
  4152. U.MD.D.click(this, obj);
  4153. }, [_trailTeacherDeskIconInfo[i]])
  4154. }, _frag); //
  4155. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4156. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4157. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4158. }
  4159. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4160. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4161. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4162. continue
  4163. }
  4164. _content = $$("div", {
  4165. className: "U_MD_D_KO",
  4166. "onmousedown": U.UF.C.closure(function (obj) {
  4167. //防止拖动图标即打开了桌面应用
  4168. U.MD.D.click(this, obj);
  4169. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4170. "onclick": U.UF.C.closure(function (obj) {
  4171. //防止拖动图标即打开了桌面应用
  4172. U.MD.D.click(this, obj);
  4173. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4174. }, _frag); //
  4175. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4176. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4177. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4178. }
  4179. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4180. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4181. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4182. continue
  4183. }
  4184. _content = $$("div", {
  4185. className: "U_MD_D_KO",
  4186. "onmousedown": U.UF.C.closure(function (obj) {
  4187. //防止拖动图标即打开了桌面应用
  4188. U.MD.D.click(this, obj);
  4189. }, [_x010608TeacherDeskIconInfo[i]]),
  4190. "onclick": U.UF.C.closure(function (obj) {
  4191. //防止拖动图标即打开了桌面应用
  4192. U.MD.D.click(this, obj);
  4193. }, [_x010608TeacherDeskIconInfo[i]])
  4194. }, _frag); //
  4195. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4196. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4197. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4198. }
  4199. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4200. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4201. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4202. continue
  4203. }
  4204. _content = $$("div", {
  4205. className: "U_MD_D_KO",
  4206. "onmousedown": U.UF.C.closure(function (obj) {
  4207. //防止拖动图标即打开了桌面应用
  4208. U.MD.D.click(this, obj);
  4209. }, [_x010611TeacherDeskIconInfo[i]]),
  4210. "onclick": U.UF.C.closure(function (obj) {
  4211. //防止拖动图标即打开了桌面应用
  4212. U.MD.D.click(this, obj);
  4213. }, [_x010611TeacherDeskIconInfo[i]])
  4214. }, _frag); //
  4215. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4216. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4217. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4218. }
  4219. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4220. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4221. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4222. continue
  4223. }
  4224. _content = $$("div", {
  4225. className: "U_MD_D_KO",
  4226. "onmousedown": U.UF.C.closure(function (obj) {
  4227. //防止拖动图标即打开了桌面应用
  4228. U.MD.D.click(this, obj);
  4229. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4230. "onclick": U.UF.C.closure(function (obj) {
  4231. //防止拖动图标即打开了桌面应用
  4232. U.MD.D.click(this, obj);
  4233. }, [_tianyuanTeacherDeskIconInfo[i]])
  4234. }, _frag); //
  4235. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4236. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4237. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4238. }
  4239. } else {
  4240. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4241. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4242. continue
  4243. }
  4244. _content = $$("div", {
  4245. className: "U_MD_D_KO",
  4246. "onmousedown": U.UF.C.closure(function (obj) {
  4247. //防止拖动图标即打开了桌面应用
  4248. U.MD.D.click(this, obj);
  4249. }, [_teacherDesktopIconInfo[i]]),
  4250. "onclick": U.UF.C.closure(function (obj) {
  4251. //防止拖动图标即打开了桌面应用
  4252. U.MD.D.click(this, obj);
  4253. }, [_teacherDesktopIconInfo[i]])
  4254. }, _frag); //
  4255. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4256. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4257. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4258. }
  4259. }
  4260. } else {
  4261. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4262. _content = $$("div", {
  4263. className: "U_MD_D_KO",
  4264. style: { 'width': '124px', 'height': '145px' },
  4265. "onmousedown": U.UF.C.closure(function (obj) {
  4266. //防止拖动图标即打开了桌面应用
  4267. U.MD.D.click(this, obj);
  4268. }, [_easyDesktopIconInfo[i]]),
  4269. "onclick": U.UF.C.closure(function (obj) {
  4270. //防止拖动图标即打开了桌面应用
  4271. U.MD.D.click(this, obj);
  4272. }, [_easyDesktopIconInfo[i]])
  4273. }, _frag); //
  4274. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4275. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4276. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4277. }
  4278. }
  4279. if (type == 1) {
  4280. //加载好后给图标定位
  4281. U.MD.D.iconPostion($(_frag).Child());
  4282. } else {
  4283. //加载好后给图标定位
  4284. U.MD.D.iconPostion2($(_frag).Child());
  4285. }
  4286. //把图标加载到页面
  4287. el.appendChild(_frag);
  4288. }
  4289. /**
  4290. * 显示任务栏
  4291. *
  4292. * @param {element} 桌面元素
  4293. */
  4294. U.MD.D.I.displayTaskbar = function (el) {
  4295. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4296. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4297. //任务栏位置变化
  4298. U.selectEl(el).css({ "bottom": "0px" });
  4299. //桌面位置变话
  4300. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4301. }
  4302. }
  4303. //#region 桌面图标拖动逻辑
  4304. /**
  4305. * 桌面排列图标
  4306. *
  4307. * @param {element} 桌面元素
  4308. * @param {object} 上下相距的距离
  4309. * @param {object} 左右相距的距离
  4310. * @return {object} 命名空间
  4311. */
  4312. U.MD.D.iconPostion = function (childs, top, left) {
  4313. var i; //用于循环处理
  4314. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4315. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4316. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4317. for (i = 0; i < childs.length; i++) {
  4318. //如果竖排top超过了范围处理
  4319. if (top + 95 > US.height - 10) {
  4320. //left超过了页面范围处理,则向上重叠打印处理
  4321. if ((left + 180) > US.width) {
  4322. top -= 110;
  4323. left -= 90;
  4324. }
  4325. //没有超过范围,那么left+90添加到下一个竖排打印
  4326. else {
  4327. left += 90;
  4328. top = 15;
  4329. };
  4330. }
  4331. //给图标的位置赋值
  4332. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4333. if (i < childs.length - 1) {
  4334. //页面图标每次向下加95
  4335. top += 95;
  4336. }
  4337. }
  4338. //返回最后调用的图标的位置
  4339. return [top, left];
  4340. }
  4341. /**
  4342. * 桌面排列图标
  4343. *
  4344. * @param {element} 桌面元素
  4345. * @param {object} 上下相距的距离
  4346. * @param {object} 左右相距的距离
  4347. * @return {object} 命名空间
  4348. */
  4349. U.MD.D.iconPostion2 = function (childs, top, left) {
  4350. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4351. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4352. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4353. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4354. for (i = 0; i < childs.length; i++) {
  4355. //如果竖排top超过了范围处理
  4356. if (left + 150 > US.width - 10) {
  4357. //left超过了页面范围处理,则向上重叠打印处理
  4358. if ((top + 180) > US.Height) {
  4359. top -= 150;
  4360. left -= 150;
  4361. }
  4362. //没有超过范围,那么left+90添加到下一个竖排打印
  4363. else {
  4364. top += 150;
  4365. left = ol;
  4366. };
  4367. }
  4368. //给图标的位置赋值
  4369. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4370. if (i < childs.length - 1) {
  4371. //页面图标每次向下加95
  4372. left += 150;
  4373. }
  4374. }
  4375. //返回最后调用的图标的位置
  4376. return [top, left];
  4377. }
  4378. /**
  4379. * 桌面点击事件逻辑
  4380. *
  4381. * @param {element} 桌面元素
  4382. * @param {object} 上下相距的距离
  4383. * @param {object} 左右相距的距离
  4384. * @return {object} 命名空间
  4385. */
  4386. U.MD.D.click = function (el, obj) {
  4387. var _buttonnumber = event.button; //点击的按钮的事件值
  4388. var _userinfo = US.userInfo;
  4389. U.UF.EV.stopBubble(); //阻止向上冒泡
  4390. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4391. if (_buttonnumber < 2) {
  4392. //如果是click事件的处理
  4393. if (event.type == "click") {
  4394. //如果元素在mousemove事件中没有移动则出发click事件
  4395. if (!U.MD.D.I.IsDrag) {
  4396. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4397. U.alert("请先登录您的账号!");
  4398. setTimeout(() => {
  4399. U.MD.U.L.login();
  4400. }, 2000);
  4401. } else {
  4402. //打开应用处理
  4403. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4404. }
  4405. }
  4406. }
  4407. //如果是mouse事件的处理
  4408. else {
  4409. if (US.Config.type == '1') {
  4410. //拖动处理,添加拖动和拖动结束事件
  4411. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4412. }
  4413. }
  4414. U.MD.D.I.IsDrag = false;
  4415. }
  4416. }
  4417. /**
  4418. * 拖动的处理
  4419. *
  4420. */
  4421. U.MD.D.iconMove = function () {
  4422. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4423. U.MD.D.I.IsDrag = true;
  4424. }
  4425. /**
  4426. * 拖动结束后,这里是定位处理,以网状的形式定位
  4427. *
  4428. * @param {element} 拖动的元素
  4429. * @return {object} 命名空间
  4430. */
  4431. U.MD.D.iconUp = function (el) {
  4432. var _top = 15,
  4433. _left = 20,
  4434. _margin,
  4435. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4436. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4437. if (_positioninfo["OT"] > 15) {
  4438. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4439. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4440. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4441. }
  4442. if (_positioninfo["OL"] > 20) {
  4443. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4444. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4445. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4446. }
  4447. //while循环判断么一个重叠的元素
  4448. do {
  4449. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4450. _top = _positioninfo[0] + 95; //得到定位后的top
  4451. _left = _positioninfo[1]; //得到定位后的left
  4452. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4453. }
  4454. /**
  4455. * 判断拖动后图标是否重叠
  4456. *
  4457. * @param {element} 拖动的元素
  4458. * @param {element} 桌面所有的元素
  4459. * @param {array} 拖动元素的位置
  4460. ----------[0] 上 top
  4461. ----------[1] 左 left
  4462. * @return {object} 命名空间
  4463. */
  4464. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4465. //循环所有的图标
  4466. for (var i = 0; i < childs.length; i++) {
  4467. //判断有没有和该图标诶子重叠的元素
  4468. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4469. return childs[i]; //如果有返回
  4470. }
  4471. }
  4472. }
  4473. //#endregion
  4474. //#endregion
  4475. //#region 桌面应用
  4476. /**
  4477. * 打开应用
  4478. *
  4479. * @param {string} 类型
  4480. -----------------Disk 网盘系统
  4481. -----------------PDisk 学习系统网盘
  4482. -----------------Poto 图片
  4483. -----------------Video 视频
  4484. -----------------Music 音乐
  4485. -----------------Word word
  4486. -----------------Excel excel
  4487. -----------------Txt 记事本
  4488. -----------------PB 学习系统
  4489. -----------------Blog 朋友圈系统
  4490. -----------------FTP ftp系统
  4491. -----------------Group 好友群
  4492. -----------------SY 首页系统
  4493. -----------------Set 个人设置
  4494. -----------------XSet 系统设置
  4495. -----------------App 我们所有的app
  4496. -----------------BC c.1473.cn 平台
  4497. -----------------CWeb d.1473.cn 变成平台
  4498. -----------------其他的外联系统 我们统一用iframe打开
  4499. * @param {array} 类型
  4500. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4501. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4502. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4503. 如果第一个参数为其他,则无第二个参数
  4504. * @returns {array}
  4505. */
  4506. window.addEventListener('message', function (e) { // 监听 message 事件
  4507. // alert(e.data.type);
  4508. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4509. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4510. //3是展示全部阶段 2学生 1老师 4专家
  4511. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4512. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4513. //3是展示全部阶段 2学生 1老师 4专家
  4514. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4515. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4516. //3是展示全部阶段 2学生 1老师 4专家
  4517. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4518. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4519. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4520. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4521. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4522. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4523. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4524. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4525. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4526. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4527. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4528. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4529. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4530. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4531. //3是展示全部阶段 2学生 1老师 4专家
  4532. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4533. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4534. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4535. U.MD.D.I.selectUser();
  4536. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4537. var _formel = document.getElementById("study");
  4538. U.UF.F.windowZooming(_formel);
  4539. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4540. var _formel = document.getElementById("studyDetail");
  4541. U.UF.F.windowZooming(_formel);
  4542. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4543. var _formel = document.getElementById("studyDetail");
  4544. U.UF.F.windowZooming(_formel);
  4545. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4546. var _formel = document.getElementById("studentStudy");
  4547. U.UF.F.windowZooming(_formel);
  4548. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4549. // var _formel = document.getElementById("study");
  4550. //如果最大化了,那么就把他缩小
  4551. // if (_formel.ismaximize) {
  4552. // return;
  4553. // }
  4554. // U.UF.F.windowZooming(_formel);
  4555. // U.UF.F.topWindow(_formel);
  4556. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4557. // var _formel = document.getElementById("studyDetail");
  4558. //如果最大化了,那么就把他缩小
  4559. // if (_formel.ismaximize) {
  4560. // return;
  4561. // }
  4562. // U.UF.F.windowZooming(_formel);
  4563. // U.UF.F.topWindow(_formel);
  4564. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4565. // var _formel = document.getElementById("studentStudy");
  4566. // if (_formel.ismaximize) {
  4567. // return;
  4568. // }
  4569. // U.UF.F.windowZooming(_formel);
  4570. // U.UF.F.topWindow(_formel);
  4571. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4572. var _formel = document.getElementById("study");
  4573. // if (_formel.ismaximize) {
  4574. // return;
  4575. // }
  4576. // U.UF.F.windowZooming(_formel);
  4577. U.UF.F.topWindow(_formel);
  4578. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4579. var _formel = document.getElementById("studentIndex");
  4580. U.UF.F.windowZooming(_formel);
  4581. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4582. var _formel = document.getElementById("studyDetailS");
  4583. U.UF.F.windowZooming(_formel);
  4584. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4585. var _formel = document.getElementById("studioIndex");
  4586. U.UF.F.windowZooming(_formel);
  4587. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4588. var _formel = document.getElementById("studyDetailStudio");
  4589. U.UF.F.windowZooming(_formel);
  4590. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4591. var _formel = document.getElementById("studyDetailStudio");
  4592. U.UF.F.windowZooming(_formel);
  4593. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4594. var _formel = document.getElementById("studyDetailNT");
  4595. U.UF.F.windowZooming(_formel);
  4596. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4597. var _formel = document.getElementById("studyDetailS");
  4598. U.UF.F.windowZooming(_formel);
  4599. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4600. var _formel = document.getElementById("studyDetailS");
  4601. U.UF.F.topWindow(_formel);
  4602. } else if (e.data.tools && e.data.tools == "1") {
  4603. // U.MD.D.I.openApplication("whiteboard")
  4604. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4605. } else if (e.data.tools && e.data.tools == "2") {
  4606. U.MD.D.I.openApplication("note")
  4607. } else if (e.data.tools && e.data.tools == "3") {
  4608. // U.MD.D.I.openApplication("mind")
  4609. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4610. } else if (e.data.tools && e.data.tools == "4") {
  4611. U.MD.D.I.openApplication("investigation")
  4612. } else if (e.data.tools && e.data.tools == "6") {
  4613. // U.MD.D.I.openApplication("doc")
  4614. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4615. } else if (e.data.tools && e.data.tools == "7") {
  4616. // U.MD.D.I.openApplication("mindNetwork")
  4617. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4618. } else if (e.data.tools && e.data.tools == "8") {
  4619. U.MD.D.I.openApplication("library")
  4620. } else if (e.data.tools && e.data.tools == "17") {
  4621. U.MD.D.I.openApplication("stuLibrary")
  4622. } else if (e.data.tools && e.data.tools == "18") {
  4623. U.MD.D.I.openApplication("train")
  4624. } else if (e.data.tools && e.data.tools == "21") {
  4625. U.MD.D.I.openApplication("program")
  4626. } else if (e.data.tools && e.data.tools == "22") {
  4627. U.MD.D.I.openApplication("AIprogram2")
  4628. } else if (e.data.tools && e.data.tools == "23") {
  4629. U.MD.D.I.openApplication("Pythonprogram")
  4630. } else if (e.data.tools && e.data.tools == "24") {
  4631. U.MD.D.I.openApplication("AIprogram")
  4632. } else if (e.data.tools && e.data.tools == "25") {
  4633. U.MD.D.I.openApplication("sys")
  4634. } else if (e.data.tools && e.data.tools == "26") {
  4635. // U.MD.D.I.openApplication("courseDesign")
  4636. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4637. } else if (e.data.tools && e.data.tools == "31") {
  4638. U.MD.D.I.openApplication("netWorkPanel")
  4639. } else if (e.data.tools && e.data.tools == "32") {
  4640. U.MD.D.I.openApplication("codeEdit")
  4641. } else if (e.data.tools && e.data.tools == "57") {
  4642. U.MD.D.I.openApplication("CocoPi")
  4643. } else if (e.data.tools && e.data.tools == "63") {
  4644. U.MD.D.I.openApplication("Wood")
  4645. } else if (e.data.tools && e.data.tools == "58") {
  4646. U.MD.D.I.openApplication("car")
  4647. } else if (e.data.tools && e.data.tools == "59") {
  4648. U.MD.D.I.openApplication("lineSearch")
  4649. } else if (e.data.tools && e.data.tools == "60") {
  4650. U.MD.D.I.openApplication("deepLearning")
  4651. } else if (e.data.tools && e.data.tools == "61") {
  4652. U.MD.D.I.openApplication("allHistory")
  4653. } else if (e.data.tools && e.data.tools == "28") {
  4654. U.MD.D.I.openApplication("translation")
  4655. } else if (e.data.tools && e.data.tools == "37") {
  4656. U.MD.D.I.openApplication("mohe")
  4657. } else if (e.data.tools && e.data.tools == "38") {
  4658. U.MD.D.I.openApplication("24game")
  4659. } else if (e.data.tools && e.data.tools == "39") {
  4660. U.MD.D.I.openApplication("GeoGebra")
  4661. } else if (e.data.tools && e.data.tools == "43") {
  4662. U.MD.D.I.openApplication("studentEvaluate")
  4663. } else if (e.data.tools && e.data.tools == "44") {
  4664. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4665. } else if (e.data.tools && e.data.tools == "46") {
  4666. U.MD.D.I.openApplication("project")
  4667. } else if (e.data.tools && e.data.tools == "71") {
  4668. U.MD.D.I.openApplication("aigptCourse")
  4669. } else if (e.data.tools && e.data.tools == "1s") {
  4670. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4671. } else if (e.data.tools && e.data.tools == "3s") {
  4672. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4673. } else if (e.data.tools && e.data.tools == "6s") {
  4674. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4675. } else if (e.data.tools && e.data.tools == "1studio") {
  4676. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4677. } else if (e.data.tools && e.data.tools == "3studio") {
  4678. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4679. } else if (e.data.tools && e.data.tools == "6studio") {
  4680. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4681. } else if (e.data.tools && e.data.tools == "3y") {
  4682. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4683. } else if (e.data.tools && e.data.tools == "1y") {
  4684. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4685. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4686. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4687. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4688. U.MD.D.I.openApplication("AIAnalyse")
  4689. } else if (e.data.tools && e.data.tools == "1teacher") {
  4690. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4691. } else if (e.data.tools && e.data.tools == "3teacher") {
  4692. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4693. } else if (e.data.tools && e.data.tools == "7teacher") {
  4694. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4695. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4696. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4697. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4698. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4699. } else if (e.data.tools && e.data.tools == "1E") {
  4700. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4701. } else if (e.data.tools && e.data.tools == "3E") {
  4702. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4703. } else if (e.data.tools && e.data.tools == "57y") {
  4704. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4705. } else if (e.data.tools && e.data.tools == "57u") {
  4706. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4707. } else if (e.data.tools && e.data.tools == "57teacher") {
  4708. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4709. } else if (e.data.tools && e.data.tools == "64") {
  4710. U.MD.D.I.openApplication("AIChat")
  4711. } else if (e.data.tools && e.data.tools == "66") {
  4712. U.MD.D.I.openApplication("formulaEdi")
  4713. } else if (e.data.tools && e.data.tools == "67") {
  4714. U.MD.D.I.openApplication("molStr")
  4715. } else if (e.data.tools && e.data.tools == "68") {
  4716. U.MD.D.I.openApplication("timeAxis")
  4717. } else if (e.data.tools && e.data.tools == "openCourse") {
  4718. let _data = {
  4719. typea: e.data.typea || '',
  4720. typeb: e.data.typeb || '',
  4721. typed: e.data.typed || '',
  4722. }
  4723. U.MD.D.I.openInApplication("index", _data)
  4724. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4725. let _data = {
  4726. classid: e.data.classid || '',
  4727. }
  4728. U.MD.D.I.openInApplication("dataClass", _data)
  4729. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4730. let _data = {
  4731. cid: e.data.cid || '',
  4732. gid: e.data.gid || '',
  4733. }
  4734. U.MD.D.I.openInApplication("opencCscl", _data)
  4735. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4736. U.MD.D.I.openApplication("dataBoardTest")
  4737. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4738. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4739. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4740. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4741. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4742. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4743. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  4744. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  4745. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4746. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4747. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4748. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4749. }else if (e.data.tools && e.data.tools == "loginSz") {
  4750. U.MD.D.I.openInApplication("loginSz")
  4751. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4752. if($('#classroom_observation_board')[0]){
  4753. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4754. }
  4755. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4756. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4757. if($('#classroom_observation_ob_comment')[0]){
  4758. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4759. }
  4760. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4761. }else if (e.data.tools && e.data.tools == "logout"){
  4762. U.MD.U.LO.logoutSystem()
  4763. }else if (e.data.tools && e.data.tools == "getLogin"){
  4764. let _iframe = $('#UI_Login')[0];
  4765. if (_iframe) {
  4766. var userInfo = US.userInfo;
  4767. var type = 2
  4768. if(userInfo && userInfo.userid){
  4769. type = 1
  4770. }
  4771. _contentWindow = _iframe.contentWindow;
  4772. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  4773. }
  4774. }
  4775. });
  4776. U.MD.D.I.selectUser = function () {
  4777. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4778. if (res.value[0].length > 0) {
  4779. US.userInfo = res.value[0][0];
  4780. $(".userName")[0].innerHTML = US.userInfo.username;
  4781. }
  4782. }, [], { "type": "GET", "withCredentials": true });
  4783. }
  4784. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4785. var _userinfo = US.userInfo, //登录用户信息
  4786. _userid = US.userInfo.userid, //登录用户id
  4787. _oid = _userinfo.organizeid,
  4788. _type = US.userInfo.type,
  4789. _org = US.userInfo.org,
  4790. _role = US.userInfo.role,
  4791. _classId = US.userInfo.classid;
  4792. if (_type == 4) {
  4793. tType = 4
  4794. }
  4795. switch (str) {
  4796. case "studyDetailNT": //无终端模式
  4797. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4798. setTimeout(() => {
  4799. U.MD.U.L.login();
  4800. }, 2000);
  4801. } else {
  4802. _formdiv = new U.UF.UI.form(
  4803. "课程详情",
  4804. $$("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 }), {
  4805. "id": "studyDetailNT",
  4806. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4807. "onresize": function () { }
  4808. }, {
  4809. closecallback: function () { }
  4810. }, { "style": { "height": "36px" } }).form; //创建窗体
  4811. _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); } }
  4812. break;
  4813. }
  4814. case "studyDetail":
  4815. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4816. setTimeout(() => {
  4817. U.MD.U.L.login();
  4818. }, 2000);
  4819. } else {
  4820. _formdiv = new U.UF.UI.form(
  4821. "课程详情",
  4822. $$("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 }), {
  4823. "id": "studyDetail",
  4824. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4825. "onresize": function () { }
  4826. }, {
  4827. closecallback: function () { }
  4828. }, { "style": { "height": "36px" } }).form; //创建窗体
  4829. _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); } }
  4830. break;
  4831. }
  4832. case "studyDetailTrain":
  4833. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4834. setTimeout(() => {
  4835. U.MD.U.L.login();
  4836. }, 2000);
  4837. } else {
  4838. _formdiv = new U.UF.UI.form(
  4839. "培训详情",
  4840. $$("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 }), {
  4841. "id": "studyDetailTrain",
  4842. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4843. "onresize": function () { }
  4844. }, {
  4845. closecallback: function () { }
  4846. }, { "style": { "height": "36px" } }).form; //创建窗体
  4847. _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); } }
  4848. break;
  4849. }
  4850. case "studyDetailS":
  4851. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4852. setTimeout(() => {
  4853. U.MD.U.L.login();
  4854. }, 2000);
  4855. } else {
  4856. _formdiv = new U.UF.UI.form(
  4857. "项目详情",
  4858. $$("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 }), {
  4859. "id": "studyDetailS",
  4860. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4861. "onresize": function () { }
  4862. }, {
  4863. closecallback: function () { }
  4864. }, { "style": { "height": "36px" } }).form; //创建窗体
  4865. _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); } }
  4866. break;
  4867. }
  4868. case "studyDetailStudio":
  4869. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4870. setTimeout(() => {
  4871. U.MD.U.L.login();
  4872. }, 2000);
  4873. } else {
  4874. _formdiv = new U.UF.UI.form(
  4875. "工作详情",
  4876. $$("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 }), {
  4877. "id": "studyDetailStudio",
  4878. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4879. "onresize": function () { }
  4880. }, {
  4881. closecallback: function () { }
  4882. }, { "style": { "height": "36px" } }).form; //创建窗体
  4883. _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); } }
  4884. break;
  4885. }
  4886. case "studyDetailS5":
  4887. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4888. setTimeout(() => {
  4889. U.MD.U.L.login();
  4890. }, 2000);
  4891. } else {
  4892. _formdiv = new U.UF.UI.form(
  4893. "项目详情",
  4894. $$("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 }), {
  4895. "id": "studyDetailS",
  4896. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4897. "onresize": function () { }
  4898. }, {
  4899. closecallback: function () { }
  4900. }, { "style": { "height": "36px" } }).form; //创建窗体
  4901. _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); } }
  4902. break;
  4903. }
  4904. case "studyDetailGM":
  4905. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4906. setTimeout(() => {
  4907. U.MD.U.L.login();
  4908. }, 2000);
  4909. } else {
  4910. _formdiv = new U.UF.UI.form(
  4911. "课程详情",
  4912. $$("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 }), {
  4913. "id": "studyDetail",
  4914. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4915. "onresize": function () { }
  4916. }, {
  4917. closecallback: function () { }
  4918. }, { "style": { "height": "36px" } }).form; //创建窗体
  4919. _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); } }
  4920. break;
  4921. }
  4922. case "hanUrl":
  4923. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4924. setTimeout(() => {
  4925. U.MD.U.L.login();
  4926. }, 2000);
  4927. } else {
  4928. _formdiv = new U.UF.UI.form(
  4929. "汉字宫",
  4930. $$("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" }), {
  4931. "id": "hanUrl",
  4932. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4933. "onresize": function () { }
  4934. }, {
  4935. closecallback: function () { }
  4936. }, { "style": { "height": "36px" } }).form; //创建窗体
  4937. _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); } }
  4938. break;
  4939. }
  4940. case "index":
  4941. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4942. setTimeout(() => {
  4943. U.MD.U.L.login();
  4944. }, 2000);
  4945. } else {
  4946. _formdiv = new U.UF.UI.form(
  4947. "课程中心",
  4948. $$("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 }), {
  4949. "id": "study",
  4950. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4951. "onresize": function () { }
  4952. }, {
  4953. closecallback: function () { }
  4954. }, { "style": { "height": "36px" } }).form; //创建窗体
  4955. _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); } }
  4956. break;
  4957. }
  4958. case "dataClass":
  4959. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4960. setTimeout(() => {
  4961. U.MD.U.L.login();
  4962. }, 2000);
  4963. } else {
  4964. _formdiv = new U.UF.UI.form(
  4965. "数据报告",
  4966. $$("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 }), {
  4967. "id": "dataClass",
  4968. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4969. "onresize": function () { }
  4970. }, {
  4971. closecallback: function () { }
  4972. }, { "style": { "height": "36px" } }).form; //创建窗体
  4973. _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); } }
  4974. break;
  4975. }
  4976. case "opencCscl":
  4977. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4978. setTimeout(() => {
  4979. U.MD.U.L.login();
  4980. }, 2000);
  4981. } else {
  4982. _formdiv = new U.UF.UI.form(
  4983. "协同建构",
  4984. $$("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 }), {
  4985. "id": "futureClass",
  4986. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4987. "onresize": function () { }
  4988. }, {
  4989. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4990. }, { "style": { "height": "36px" } }).form; //创建窗体
  4991. _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); } }
  4992. break;
  4993. }
  4994. case "openCourseUpdate":
  4995. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4996. setTimeout(() => {
  4997. U.MD.U.L.login();
  4998. }, 2000);
  4999. } else {
  5000. _formdiv = new U.UF.UI.form(
  5001. "课程管理",
  5002. $$("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 }), {
  5003. "id": "openCourseUpdate",
  5004. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5005. "onresize": function () { }
  5006. }, {
  5007. closecallback: function () { }
  5008. }, { "style": { "height": "36px" } }).form; //创建窗体
  5009. break;
  5010. }
  5011. case "openNewCourseUpdate":
  5012. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5013. setTimeout(() => {
  5014. U.MD.U.L.login();
  5015. }, 2000);
  5016. } else {
  5017. _formdiv = new U.UF.UI.form(
  5018. "课程管理",
  5019. $$("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 }), {
  5020. "id": "openCourseUpdate",
  5021. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5022. "onresize": function () { }
  5023. }, {
  5024. closecallback: function () { }
  5025. }, { "style": { "height": "36px" } }).form; //创建窗体
  5026. break;
  5027. }
  5028. case "openCourseEUpdate":
  5029. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5030. setTimeout(() => {
  5031. U.MD.U.L.login();
  5032. }, 2000);
  5033. } else {
  5034. _formdiv = new U.UF.UI.form(
  5035. "课程管理",
  5036. $$("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 }), {
  5037. "id": "openCourseUpdate",
  5038. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5039. "onresize": function () { }
  5040. }, {
  5041. closecallback: function () { }
  5042. }, { "style": { "height": "36px" } }).form; //创建窗体
  5043. break;
  5044. }
  5045. case "openCourseAiUpdate":
  5046. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5047. setTimeout(() => {
  5048. U.MD.U.L.login();
  5049. }, 2000);
  5050. } else {
  5051. _formdiv = new U.UF.UI.form(
  5052. "课程管理",
  5053. $$("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 }), {
  5054. "id": "openCourseUpdate",
  5055. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5056. "onresize": function () { }
  5057. }, {
  5058. closecallback: function () { }
  5059. }, { "style": { "height": "36px" } }).form; //创建窗体
  5060. break;
  5061. }
  5062. case "openCourseAiUpdate2":
  5063. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5064. setTimeout(() => {
  5065. U.MD.U.L.login();
  5066. }, 2000);
  5067. } else {
  5068. _formdiv = new U.UF.UI.form(
  5069. "课程管理",
  5070. $$("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 }), {
  5071. "id": "openCourseUpdate",
  5072. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5073. "onresize": function () { }
  5074. }, {
  5075. closecallback: function () { }
  5076. }, { "style": { "height": "36px" } }).form; //创建窗体
  5077. break;
  5078. }
  5079. case "openCourseNewUpdate":
  5080. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5081. setTimeout(() => {
  5082. U.MD.U.L.login();
  5083. }, 2000);
  5084. } else {
  5085. _formdiv = new U.UF.UI.form(
  5086. "课程管理",
  5087. $$("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 }), {
  5088. "id": "openCourseUpdate",
  5089. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5090. "onresize": function () { }
  5091. }, {
  5092. closecallback: function () { }
  5093. }, { "style": { "height": "36px" } }).form; //创建窗体
  5094. break;
  5095. }
  5096. case "inviteLoginSz":
  5097. _formdiv = new U.UF.UI.form(
  5098. "随机码登录",
  5099. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/inviteLoginSZ?code=" + data }), {
  5100. "id": "loginSz",
  5101. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5102. "onresize": function () { }
  5103. }, {
  5104. closecallback: function () { }
  5105. }, { "style": { "height": "36px" } }).form; //创建窗体
  5106. break;
  5107. case "loginSz":
  5108. _formdiv = new U.UF.UI.form(
  5109. "教师登录",
  5110. $$("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" }), {
  5111. "id": "loginSz",
  5112. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5113. "onresize": function () { }
  5114. }, {
  5115. closecallback: function () { }
  5116. }, { "style": { "height": "36px" } }).form; //创建窗体
  5117. break;
  5118. case "teacher":
  5119. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5120. setTimeout(() => {
  5121. U.MD.U.L.login();
  5122. }, 2000);
  5123. } else {
  5124. _formdiv = new U.UF.UI.form(
  5125. "教师管理",
  5126. $$("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 }), {
  5127. "id": "teacher",
  5128. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5129. "onresize": function () { }
  5130. }, {
  5131. closecallback: function () { }
  5132. }, { "style": { "height": "36px" } }).form; //创建窗体
  5133. break;
  5134. }
  5135. case "dataBoardSZArea":
  5136. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5137. setTimeout(() => {
  5138. U.MD.U.L.login();
  5139. }, 2000);
  5140. } else {
  5141. _formdiv = new U.UF.UI.form(
  5142. "综合数据看板",
  5143. $$("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 }), {
  5144. "id": "dataBoardSZArea",
  5145. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5146. "onresize": function () { }
  5147. }, {
  5148. closecallback: function () { }
  5149. }, { "style": { "height": "36px" } }).form; //创建窗体
  5150. break;
  5151. }
  5152. case "dataBoardSZCity":
  5153. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5154. setTimeout(() => {
  5155. U.MD.U.L.login();
  5156. }, 2000);
  5157. } else {
  5158. _formdiv = new U.UF.UI.form(
  5159. "综合数据看板",
  5160. $$("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 }), {
  5161. "id": "dataBoardSZCity",
  5162. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5163. "onresize": function () { }
  5164. }, {
  5165. closecallback: function () { }
  5166. }, { "style": { "height": "36px" } }).form; //创建窗体
  5167. break;
  5168. }
  5169. case "classroom_observation_board":
  5170. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5171. setTimeout(() => {
  5172. U.MD.U.L.login();
  5173. }, 2000);
  5174. } else {
  5175. _formdiv = new U.UF.UI.form(
  5176. "课堂观察",
  5177. $$("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 }), {
  5178. "id": "classroom_observation_board",
  5179. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5180. "onresize": function () { }
  5181. }, {
  5182. closecallback: function () { }
  5183. }, { "style": { "height": "36px" } }).form; //创建窗体
  5184. break;
  5185. }
  5186. case "classroom_observation_ob_comment":
  5187. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5188. setTimeout(() => {
  5189. U.MD.U.L.login();
  5190. }, 2000);
  5191. } else {
  5192. _formdiv = new U.UF.UI.form(
  5193. "课堂审核",
  5194. $$("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 }), {
  5195. "id": "classroom_observation_ob_comment",
  5196. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5197. "onresize": function () { }
  5198. }, {
  5199. closecallback: function () { }
  5200. }, { "style": { "height": "36px" } }).form; //创建窗体
  5201. break;
  5202. }
  5203. }
  5204. }
  5205. U.MD.D.I.openApplication = function (str, obj, info) {
  5206. obj = obj || {};
  5207. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5208. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5209. _userinfo = US.userInfo, //登录用户信息
  5210. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5211. _oid = obj.organizeid || _userinfo.organizeid,
  5212. _type = US.userInfo.type,
  5213. _org = US.userInfo.org,
  5214. _role = US.userInfo.role,
  5215. _classId = US.userInfo.classid,
  5216. _TscreenType = 1
  5217. _screenType = 2,
  5218. _SscreenType = 3;
  5219. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5220. return;
  5221. }
  5222. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5223. switch (str) {
  5224. case "studnetProject": //好友打开
  5225. _formdiv = new U.UF.UI.form(
  5226. "我的项目",
  5227. $$("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 }), {
  5228. "id": "studnetProject",
  5229. "style": { "width": "70%", "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/project.png)" }, "name": "我的项目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5235. break;
  5236. case "studentEvaluate": //好友打开
  5237. _formdiv = new U.UF.UI.form(
  5238. "我的评价",
  5239. $$("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 }), {
  5240. "id": "studentEvaluate",
  5241. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5242. "onresize": function () { }
  5243. }, {
  5244. closecallback: function () { }
  5245. }, { "style": { "height": "36px" } }).form; //创建窗体
  5246. _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); } }
  5247. break;
  5248. case "my":
  5249. _formdiv = new U.UF.UI.form(
  5250. "我的资料",
  5251. $$("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 }), {
  5252. "id": "my",
  5253. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5254. "onresize": function () { }
  5255. }, {
  5256. closecallback: function () { }
  5257. }, { "style": { "height": "36px" } }).form; //创建窗体
  5258. _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); } }
  5259. break;
  5260. case "program":
  5261. _formdiv = new U.UF.UI.form(
  5262. "编程平台",
  5263. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5264. "id": "program",
  5265. "style": { "width": "70%", "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/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5271. break;
  5272. case "library":
  5273. _formdiv = new U.UF.UI.form(
  5274. "素材库",
  5275. $$("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 }), {
  5276. "id": "library",
  5277. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5278. "onresize": function () { }
  5279. }, {
  5280. closecallback: function () { }
  5281. }, { "style": { "height": "36px" } }).form; //创建窗体
  5282. _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); } }
  5283. break;
  5284. case "whiteboard":
  5285. _formdiv = new U.UF.UI.form(
  5286. "电子白板",
  5287. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5288. "id": "whiteboard",
  5289. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5290. "onresize": function () { }
  5291. }, {
  5292. closecallback: function () { }
  5293. }, { "style": { "height": "36px" } }).form; //创建窗体
  5294. _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); } }
  5295. break;
  5296. case "investigation":
  5297. _formdiv = new U.UF.UI.form(
  5298. "问卷调查",
  5299. $$("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 }), {
  5300. "id": "investigation",
  5301. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5302. "onresize": function () { }
  5303. }, {
  5304. closecallback: function () { }
  5305. }, { "style": { "height": "36px" } }).form; //创建窗体
  5306. _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); } }
  5307. break;
  5308. case "note":
  5309. _formdiv = new U.UF.UI.form(
  5310. "便签分类",
  5311. $$("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 }), {
  5312. "id": "note",
  5313. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5314. "onresize": function () { }
  5315. }, {
  5316. closecallback: function () { }
  5317. }, { "style": { "height": "36px" } }).form; //创建窗体
  5318. _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); } }
  5319. break;
  5320. // case "score":
  5321. // _formdiv = new U.UF.UI.form(
  5322. // "量规评分",
  5323. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5324. // "id": "score",
  5325. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5326. // "onresize": function() {}
  5327. // }, {
  5328. // closecallback: function() {}
  5329. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5330. // _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); } }
  5331. // break;
  5332. case "mind":
  5333. _formdiv = new U.UF.UI.form(
  5334. "思维导图",
  5335. $$("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"
  5336. "id": "mind",
  5337. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5338. "onresize": function () { }
  5339. }, {
  5340. closecallback: function () { }
  5341. }, { "style": { "height": "36px" } }).form; //创建窗体
  5342. _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); } }
  5343. break;
  5344. case "doc":
  5345. // U.MD.D.I.isRoom();
  5346. _formdiv = new U.UF.UI.form(
  5347. "协同文档",
  5348. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5349. "id": "doc",
  5350. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5351. "onresize": function () { }
  5352. }, {
  5353. closecallback: function () { }
  5354. }, { "style": { "height": "36px" } }).form; //创建窗体
  5355. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5356. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5357. // })
  5358. _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); } }
  5359. break;
  5360. case "studentStudy":
  5361. _formdiv = new U.UF.UI.form(
  5362. "课程中心",
  5363. $$("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
  5364. "id": "studentStudy",
  5365. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5366. "onresize": function () { }
  5367. }, {
  5368. closecallback: function () { }
  5369. }, { "style": { "height": "36px" } }).form; //创建窗体
  5370. _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); } }
  5371. break;
  5372. case "train": //好友打开
  5373. _formdiv = new U.UF.UI.form(
  5374. "训练平台",
  5375. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5376. "id": "train",
  5377. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5378. "onresize": function () { }
  5379. }, {
  5380. closecallback: function () { }
  5381. }, { "style": { "height": "36px" } }).form; //创建窗体
  5382. _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); } }
  5383. break;
  5384. case "mindNetwork": //好友打开
  5385. _formdiv = new U.UF.UI.form(
  5386. "思维网格",
  5387. $$("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 }), {
  5388. "id": "mindNetwork",
  5389. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5390. "onresize": function () { }
  5391. }, {
  5392. closecallback: function () { }
  5393. }, { "style": { "height": "36px" } }).form; //创建窗体
  5394. _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); } }
  5395. break;
  5396. case "studentClassRoom": //好友打开
  5397. _formdiv = new U.UF.UI.form(
  5398. "实时课堂",
  5399. $$("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 }), {
  5400. "id": "studentClassRoom",
  5401. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5402. "onresize": function () { }
  5403. }, {
  5404. closecallback: function () { }
  5405. }, { "style": { "height": "36px" } }).form; //创建窗体
  5406. _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); } }
  5407. setTimeout(() => {
  5408. U.UF.F.windowZooming(_formdiv)
  5409. }, 0);
  5410. break;
  5411. }
  5412. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5413. switch (str) {
  5414. case "studnetProject": //好友打开
  5415. _formdiv = new U.UF.UI.form(
  5416. "我的项目",
  5417. $$("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 }), {
  5418. "id": "studnetProject",
  5419. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5420. "onresize": function () { }
  5421. }, {
  5422. closecallback: function () { }
  5423. }, { "style": { "height": "36px" } }).form; //创建窗体
  5424. _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); } }
  5425. break;
  5426. case "studentEvaluate": //好友打开
  5427. _formdiv = new U.UF.UI.form(
  5428. "我的评价",
  5429. $$("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 }), {
  5430. "id": "studentEvaluate",
  5431. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5432. "onresize": function () { }
  5433. }, {
  5434. closecallback: function () { }
  5435. }, { "style": { "height": "36px" } }).form; //创建窗体
  5436. _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); } }
  5437. break;
  5438. case "my":
  5439. _formdiv = new U.UF.UI.form(
  5440. "我的资料",
  5441. $$("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 }), {
  5442. "id": "my",
  5443. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5444. "onresize": function () { }
  5445. }, {
  5446. closecallback: function () { }
  5447. }, { "style": { "height": "36px" } }).form; //创建窗体
  5448. _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); } }
  5449. break;
  5450. case "program":
  5451. _formdiv = new U.UF.UI.form(
  5452. "编程平台",
  5453. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5454. "id": "program",
  5455. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5456. "onresize": function () { }
  5457. }, {
  5458. closecallback: function () { }
  5459. }, { "style": { "height": "36px" } }).form; //创建窗体
  5460. _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); } }
  5461. break;
  5462. case "library":
  5463. _formdiv = new U.UF.UI.form(
  5464. "素材库",
  5465. $$("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 }), {
  5466. "id": "library",
  5467. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5468. "onresize": function () { }
  5469. }, {
  5470. closecallback: function () { }
  5471. }, { "style": { "height": "36px" } }).form; //创建窗体
  5472. _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); } }
  5473. break;
  5474. case "whiteboard":
  5475. _formdiv = new U.UF.UI.form(
  5476. "电子白板",
  5477. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5478. "id": "whiteboard",
  5479. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5480. "onresize": function () { }
  5481. }, {
  5482. closecallback: function () { }
  5483. }, { "style": { "height": "36px" } }).form; //创建窗体
  5484. _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); } }
  5485. break;
  5486. case "investigation":
  5487. _formdiv = new U.UF.UI.form(
  5488. "问卷调查",
  5489. $$("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 }), {
  5490. "id": "investigation",
  5491. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5492. "onresize": function () { }
  5493. }, {
  5494. closecallback: function () { }
  5495. }, { "style": { "height": "36px" } }).form; //创建窗体
  5496. _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); } }
  5497. break;
  5498. case "note":
  5499. _formdiv = new U.UF.UI.form(
  5500. "便签分类",
  5501. $$("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 }), {
  5502. "id": "note",
  5503. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5504. "onresize": function () { }
  5505. }, {
  5506. closecallback: function () { }
  5507. }, { "style": { "height": "36px" } }).form; //创建窗体
  5508. _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); } }
  5509. break;
  5510. // case "score":
  5511. // _formdiv = new U.UF.UI.form(
  5512. // "量规评分",
  5513. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5514. // "id": "score",
  5515. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5516. // "onresize": function() {}
  5517. // }, {
  5518. // closecallback: function() {}
  5519. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5520. // _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); } }
  5521. // break;
  5522. case "mind":
  5523. _formdiv = new U.UF.UI.form(
  5524. "思维导图",
  5525. $$("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"
  5526. "id": "mind",
  5527. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5528. "onresize": function () { }
  5529. }, {
  5530. closecallback: function () { }
  5531. }, { "style": { "height": "36px" } }).form; //创建窗体
  5532. _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); } }
  5533. break;
  5534. case "doc":
  5535. // U.MD.D.I.isRoom();
  5536. _formdiv = new U.UF.UI.form(
  5537. "协同文档",
  5538. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5539. "id": "doc",
  5540. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5541. "onresize": function () { }
  5542. }, {
  5543. closecallback: function () { }
  5544. }, { "style": { "height": "36px" } }).form; //创建窗体
  5545. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5546. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5547. })
  5548. _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); } }
  5549. break;
  5550. case "train": //好友打开
  5551. _formdiv = new U.UF.UI.form(
  5552. "训练平台",
  5553. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5554. "id": "train",
  5555. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5556. "onresize": function () { }
  5557. }, {
  5558. closecallback: function () { }
  5559. }, { "style": { "height": "36px" } }).form; //创建窗体
  5560. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5561. break;
  5562. case "studentStudy":
  5563. _formdiv = new U.UF.UI.form(
  5564. "课程中心",
  5565. $$("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
  5566. "id": "studentStudy",
  5567. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5568. "onresize": function () { }
  5569. }, {
  5570. closecallback: function () { }
  5571. }, { "style": { "height": "36px" } }).form; //创建窗体
  5572. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5573. break;
  5574. case "mindNetwork": //好友打开
  5575. _formdiv = new U.UF.UI.form(
  5576. "思维网格",
  5577. $$("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 }), {
  5578. "id": "mindNetwork",
  5579. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5580. "onresize": function () { }
  5581. }, {
  5582. closecallback: function () { }
  5583. }, { "style": { "height": "36px" } }).form; //创建窗体
  5584. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5585. break;
  5586. case "studentClassRoom": //好友打开
  5587. _formdiv = new U.UF.UI.form(
  5588. "实时课堂",
  5589. $$("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 }), {
  5590. "id": "studentClassRoom",
  5591. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5592. "onresize": function () { }
  5593. }, {
  5594. closecallback: function () { }
  5595. }, { "style": { "height": "36px" } }).form; //创建窗体
  5596. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5597. setTimeout(() => {
  5598. U.UF.F.windowZooming(_formdiv)
  5599. }, 0);
  5600. break;
  5601. }
  5602. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5603. //选择应用处理
  5604. switch (str) {
  5605. case "project": //好友打开
  5606. _formdiv = new U.UF.UI.form(
  5607. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5608. $$("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 }), {
  5609. "id": "project",
  5610. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5611. "onresize": function () { }
  5612. }, {
  5613. closecallback: function () { }
  5614. }, { "style": { "height": "36px" } }).form; //创建窗体
  5615. _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); } }
  5616. break;
  5617. case "student":
  5618. _formdiv = new U.UF.UI.form(
  5619. "学生管理",
  5620. $$("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 }), {
  5621. "id": "student",
  5622. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5623. "onresize": function () { }
  5624. }, {
  5625. closecallback: function () { }
  5626. }, { "style": { "height": "36px" } }).form; //创建窗体
  5627. _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); } }
  5628. break;
  5629. case "evaluate":
  5630. _formdiv = new U.UF.UI.form(
  5631. "学生评价",
  5632. $$("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 }), {
  5633. "id": "evaluate",
  5634. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5635. "onresize": function () { }
  5636. }, {
  5637. closecallback: function () { }
  5638. }, { "style": { "height": "36px" } }).form; //创建窗体
  5639. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5640. break;
  5641. case "sys":
  5642. _formdiv = new U.UF.UI.form(
  5643. "目标管理",
  5644. $$("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 }), {
  5645. "id": "sys",
  5646. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5647. "onresize": function () { }
  5648. }, {
  5649. closecallback: function () { }
  5650. }, { "style": { "height": "36px" } }).form; //创建窗体
  5651. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5652. break;
  5653. case "courseDesign":
  5654. _formdiv = new U.UF.UI.form(
  5655. "项目设计",
  5656. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5657. "id": "courseDesign",
  5658. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5659. "onresize": function () { }
  5660. }, {
  5661. closecallback: function () { }
  5662. }, { "style": { "height": "36px" } }).form; //创建窗体
  5663. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5664. break;
  5665. case "program":
  5666. _formdiv = new U.UF.UI.form(
  5667. "编程平台",
  5668. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5669. "id": "program",
  5670. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5671. "onresize": function () { }
  5672. }, {
  5673. closecallback: function () { }
  5674. }, { "style": { "height": "36px" } }).form; //创建窗体
  5675. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5676. break;
  5677. case "class":
  5678. _formdiv = new U.UF.UI.form(
  5679. "班级管理",
  5680. $$("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 }), {
  5681. "id": "class",
  5682. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5683. "onresize": function () { }
  5684. }, {
  5685. closecallback: function () { }
  5686. }, { "style": { "height": "36px" } }).form; //创建窗体
  5687. _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); } }
  5688. break;
  5689. case "Grade":
  5690. _formdiv = new U.UF.UI.form(
  5691. "年级管理",
  5692. $$("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 }), {
  5693. "id": "Grade",
  5694. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5695. "onresize": function () { }
  5696. }, {
  5697. closecallback: function () { }
  5698. }, { "style": { "height": "36px" } }).form; //创建窗体
  5699. _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); } }
  5700. break;
  5701. case "teacherOffice":
  5702. _formdiv = new U.UF.UI.form(
  5703. "教研室",
  5704. $$("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 }), {
  5705. "id": "teacherOffice",
  5706. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5707. "onresize": function () { }
  5708. }, {
  5709. closecallback: function () { }
  5710. }, { "style": { "height": "36px" } }).form; //创建窗体
  5711. _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); } }
  5712. break;
  5713. case "my":
  5714. _formdiv = new U.UF.UI.form(
  5715. "我的资料",
  5716. $$("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 }), {
  5717. "id": "my",
  5718. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5719. "onresize": function () { }
  5720. }, {
  5721. closecallback: function () { }
  5722. }, { "style": { "height": "36px" } }).form; //创建窗体
  5723. _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); } }
  5724. break;
  5725. case "notice":
  5726. _formdiv = new U.UF.UI.form(
  5727. "通知公告",
  5728. $$("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 }), {
  5729. "id": "notice",
  5730. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5731. "onresize": function () { }
  5732. }, {
  5733. closecallback: function () { }
  5734. }, { "style": { "height": "36px" } }).form; //创建窗体
  5735. _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); } }
  5736. break;
  5737. case "library":
  5738. _formdiv = new U.UF.UI.form(
  5739. "素材库",
  5740. $$("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 }), {
  5741. "id": "library",
  5742. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5743. "onresize": function () { }
  5744. }, {
  5745. closecallback: function () { }
  5746. }, { "style": { "height": "36px" } }).form; //创建窗体
  5747. _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); } }
  5748. break;
  5749. case "whiteboard":
  5750. _formdiv = new U.UF.UI.form(
  5751. "电子白板",
  5752. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5753. "id": "whiteboard",
  5754. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5755. "onresize": function () { }
  5756. }, {
  5757. closecallback: function () { }
  5758. }, { "style": { "height": "36px" } }).form; //创建窗体
  5759. _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); } }
  5760. break;
  5761. case "investigation":
  5762. _formdiv = new U.UF.UI.form(
  5763. "问卷调查",
  5764. $$("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 }), {
  5765. "id": "investigation",
  5766. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5767. "onresize": function () { }
  5768. }, {
  5769. closecallback: function () { }
  5770. }, { "style": { "height": "36px" } }).form; //创建窗体
  5771. _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); } }
  5772. break;
  5773. case "note":
  5774. _formdiv = new U.UF.UI.form(
  5775. "便签分类",
  5776. $$("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 }), {
  5777. "id": "note",
  5778. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5779. "onresize": function () { }
  5780. }, {
  5781. closecallback: function () { }
  5782. }, { "style": { "height": "36px" } }).form; //创建窗体
  5783. _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); } }
  5784. break;
  5785. // case "score":
  5786. // _formdiv = new U.UF.UI.form(
  5787. // "量规评分",
  5788. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5789. // "id": "score",
  5790. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5791. // "onresize": function() {}
  5792. // }, {
  5793. // closecallback: function() {}
  5794. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5795. // _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); } }
  5796. // break;
  5797. case "mind":
  5798. _formdiv = new U.UF.UI.form(
  5799. "思维导图",
  5800. $$("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"
  5801. "id": "mind",
  5802. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5803. "onresize": function () { }
  5804. }, {
  5805. closecallback: function () { }
  5806. }, { "style": { "height": "36px" } }).form; //创建窗体
  5807. _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); } }
  5808. break;
  5809. case "doc":
  5810. // U.MD.D.I.isRoom();
  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": "/Office/Word/WordEditArea.htm" }), {
  5814. "id": "doc",
  5815. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5816. "onresize": function () { }
  5817. }, {
  5818. closecallback: function () { }
  5819. }, { "style": { "height": "36px" } }).form; //创建窗体
  5820. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5821. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5822. })
  5823. _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); } }
  5824. break;
  5825. case "study":
  5826. _formdiv = new U.UF.UI.form(
  5827. "课程中心",
  5828. $$("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
  5829. "id": "study",
  5830. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5831. "onresize": function () { }
  5832. }, {
  5833. closecallback: function () { }
  5834. }, { "style": { "height": "36px" } }).form; //创建窗体
  5835. _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); } }
  5836. break;
  5837. case "mindNetwork": //好友打开
  5838. _formdiv = new U.UF.UI.form(
  5839. "思维网格",
  5840. $$("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 }), {
  5841. "id": "mindNetwork",
  5842. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5843. "onresize": function () { }
  5844. }, {
  5845. closecallback: function () { }
  5846. }, { "style": { "height": "36px" } }).form; //创建窗体
  5847. _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); } }
  5848. break;
  5849. case "train": //好友打开
  5850. _formdiv = new U.UF.UI.form(
  5851. "训练平台",
  5852. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5853. "id": "mindNetwork",
  5854. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5855. "onresize": function () { }
  5856. }, {
  5857. closecallback: function () { }
  5858. }, { "style": { "height": "36px" } }).form; //创建窗体
  5859. _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); } }
  5860. break;
  5861. case "teacherClassRoom": //好友打开
  5862. _formdiv = new U.UF.UI.form(
  5863. "实时课堂",
  5864. $$("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 }), {
  5865. "id": "teacherClassRoom",
  5866. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5867. "onresize": function () { }
  5868. }, {
  5869. closecallback: function () { }
  5870. }, { "style": { "height": "36px" } }).form; //创建窗体
  5871. _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); } }
  5872. setTimeout(() => {
  5873. U.UF.F.windowZooming(_formdiv)
  5874. }, 0);
  5875. break;
  5876. }
  5877. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5878. switch (str) {
  5879. case "project": //好友打开
  5880. _formdiv = new U.UF.UI.form(
  5881. "课程管理",
  5882. $$("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 }), {
  5883. "id": "project",
  5884. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5885. "onresize": function () { }
  5886. }, {
  5887. closecallback: function () { }
  5888. }, { "style": { "height": "36px" } }).form; //创建窗体
  5889. _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); } }
  5890. break;
  5891. case "evaluate":
  5892. _formdiv = new U.UF.UI.form(
  5893. "学生评价",
  5894. $$("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 }), {
  5895. "id": "evaluate",
  5896. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5897. "onresize": function () { }
  5898. }, {
  5899. closecallback: function () { }
  5900. }, { "style": { "height": "36px" } }).form; //创建窗体
  5901. _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); } }
  5902. break;
  5903. case "notice":
  5904. _formdiv = new U.UF.UI.form(
  5905. "通知公告",
  5906. $$("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 }), {
  5907. "id": "notice",
  5908. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5909. "onresize": function () { }
  5910. }, {
  5911. closecallback: function () { }
  5912. }, { "style": { "height": "36px" } }).form; //创建窗体
  5913. _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); } }
  5914. break;
  5915. case "stuLibrary":
  5916. _formdiv = new U.UF.UI.form(
  5917. "学习资料",
  5918. $$("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 }), {
  5919. "id": "stuLibrary",
  5920. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5921. "onresize": function () { }
  5922. }, {
  5923. closecallback: function () { }
  5924. }, { "style": { "height": "36px" } }).form; //创建窗体
  5925. _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); } }
  5926. break;
  5927. case "program":
  5928. _formdiv = new U.UF.UI.form(
  5929. "编程平台",
  5930. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5931. "id": "program",
  5932. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5933. "onresize": function () { }
  5934. }, {
  5935. closecallback: function () { }
  5936. }, { "style": { "height": "36px" } }).form; //创建窗体
  5937. _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); } }
  5938. break;
  5939. case "whiteboard":
  5940. _formdiv = new U.UF.UI.form(
  5941. "电子白板",
  5942. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5943. "id": "whiteboard",
  5944. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5945. "onresize": function () { }
  5946. }, {
  5947. closecallback: function () { }
  5948. }, { "style": { "height": "36px" } }).form; //创建窗体
  5949. _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); } }
  5950. break;
  5951. case "investigation":
  5952. _formdiv = new U.UF.UI.form(
  5953. "问卷调查",
  5954. $$("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 }), {
  5955. "id": "investigation",
  5956. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5957. "onresize": function () { }
  5958. }, {
  5959. closecallback: function () { }
  5960. }, { "style": { "height": "36px" } }).form; //创建窗体
  5961. _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); } }
  5962. break;
  5963. case "mind":
  5964. _formdiv = new U.UF.UI.form(
  5965. "思维导图",
  5966. $$("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"
  5967. "id": "mind",
  5968. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5969. "onresize": function () { }
  5970. }, {
  5971. closecallback: function () { }
  5972. }, { "style": { "height": "36px" } }).form; //创建窗体
  5973. _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); } }
  5974. break;
  5975. case "doc":
  5976. // U.MD.D.I.isRoom();
  5977. _formdiv = new U.UF.UI.form(
  5978. "协同文档",
  5979. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5980. "id": "doc",
  5981. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5982. "onresize": function () { }
  5983. }, {
  5984. closecallback: function () { }
  5985. }, { "style": { "height": "36px" } }).form; //创建窗体
  5986. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5987. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5988. })
  5989. _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); } }
  5990. break;
  5991. case "study":
  5992. _formdiv = new U.UF.UI.form(
  5993. "课程中心",
  5994. $$("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
  5995. "id": "study",
  5996. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5997. "onresize": function () { }
  5998. }, {
  5999. closecallback: function () { }
  6000. }, { "style": { "height": "36px" } }).form; //创建窗体
  6001. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6002. break;
  6003. case "mindNetwork": //好友打开
  6004. _formdiv = new U.UF.UI.form(
  6005. "思维网格",
  6006. $$("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 }), {
  6007. "id": "mindNetwork",
  6008. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6009. "onresize": function () { }
  6010. }, {
  6011. closecallback: function () { }
  6012. }, { "style": { "height": "36px" } }).form; //创建窗体
  6013. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6014. break;
  6015. case "train": //好友打开
  6016. _formdiv = new U.UF.UI.form(
  6017. "训练平台",
  6018. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6019. "id": "train",
  6020. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6021. "onresize": function () { }
  6022. }, {
  6023. closecallback: function () { }
  6024. }, { "style": { "height": "36px" } }).form; //创建窗体
  6025. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6026. break;
  6027. case "sys":
  6028. _formdiv = new U.UF.UI.form(
  6029. "目标管理",
  6030. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/evaluation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6031. "id": "sys",
  6032. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6033. "onresize": function () { }
  6034. }, {
  6035. closecallback: function () { }
  6036. }, { "style": { "height": "36px" } }).form; //创建窗体
  6037. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6038. break;
  6039. case "courseDesign":
  6040. _formdiv = new U.UF.UI.form(
  6041. "项目设计",
  6042. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6043. "id": "courseDesign",
  6044. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6045. "onresize": function () { }
  6046. }, {
  6047. closecallback: function () { }
  6048. }, { "style": { "height": "36px" } }).form; //创建窗体
  6049. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6050. break;
  6051. }
  6052. } else if (!_type) {
  6053. switch (str) {
  6054. case "my":
  6055. _formdiv = new U.UF.UI.form(
  6056. "我的资料",
  6057. $$("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 }), {
  6058. "id": "my",
  6059. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6060. "onresize": function () { }
  6061. }, {
  6062. closecallback: function () { }
  6063. }, { "style": { "height": "36px" } }).form; //创建窗体
  6064. _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); } }
  6065. break;
  6066. }
  6067. }
  6068. switch (str) {
  6069. // AIprogram2 AI体验 aihub.cocorobo.cn
  6070. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6071. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6072. case "formulaEdi": //公式编辑
  6073. _formdiv = new U.UF.UI.form(
  6074. "公式编辑",
  6075. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6076. "id": "formulaEdi",
  6077. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6078. "onresize": function () { }
  6079. }, {
  6080. closecallback: function () { }
  6081. }, { "style": { "height": "36px" } }).form; //创建窗体
  6082. _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); } }
  6083. break;
  6084. case "molStr": //分子结构
  6085. _formdiv = new U.UF.UI.form(
  6086. "分子结构",
  6087. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6088. "id": "molStr",
  6089. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6090. "onresize": function () { }
  6091. }, {
  6092. closecallback: function () { }
  6093. }, { "style": { "height": "36px" } }).form; //创建窗体
  6094. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/molStr.png)" }, "name": "分子结构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6095. break;
  6096. case "timeAxis": //时间轴
  6097. _formdiv = new U.UF.UI.form(
  6098. "时间轴",
  6099. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6100. "id": "timeAxis",
  6101. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6102. "onresize": function () { }
  6103. }, {
  6104. closecallback: function () { }
  6105. }, { "style": { "height": "36px" } }).form; //创建窗体
  6106. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/timeAxis.png)" }, "name": "时间轴", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6107. break;
  6108. case "AIprogram2": //AI体验
  6109. _formdiv = new U.UF.UI.form(
  6110. "AI体验",
  6111. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6112. "id": "AIprogram2",
  6113. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6114. "onresize": function () { }
  6115. }, {
  6116. closecallback: function () { }
  6117. }, { "style": { "height": "36px" } }).form; //创建窗体
  6118. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram2.png)" }, "name": "AI体验", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6119. break;
  6120. case "Pythonprogram": //python编程
  6121. _formdiv = new U.UF.UI.form(
  6122. "Python编程",
  6123. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6124. "id": "Pythonprogram",
  6125. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6126. "onresize": function () { }
  6127. }, {
  6128. closecallback: function () { }
  6129. }, { "style": { "height": "36px" } }).form; //创建窗体
  6130. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Pythonprogram.png)" }, "name": "Python编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6131. break;
  6132. case "AIprogram": //ai编程
  6133. _formdiv = new U.UF.UI.form(
  6134. "AI编程平台",
  6135. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6136. "id": "AIprogram",
  6137. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6138. "onresize": function () { }
  6139. }, {
  6140. closecallback: function () { }
  6141. }, { "style": { "height": "36px" } }).form; //创建窗体
  6142. _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); } }
  6143. break;
  6144. case "CocoPi": //CocoPi
  6145. _formdiv = new U.UF.UI.form(
  6146. "CocoPi",
  6147. $$("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" }), {
  6148. "id": "CocoPi",
  6149. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6150. "onresize": function () { }
  6151. }, {
  6152. closecallback: function () { }
  6153. }, { "style": { "height": "36px" } }).form; //创建窗体
  6154. _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); } }
  6155. break;
  6156. case "Wood": //Wood
  6157. _formdiv = new U.UF.UI.form(
  6158. "海龟编程",
  6159. $$("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/" }), {
  6160. "id": "Wood",
  6161. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6162. "onresize": function () { }
  6163. }, {
  6164. closecallback: function () { }
  6165. }, { "style": { "height": "36px" } }).form; //创建窗体
  6166. _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); } }
  6167. break;
  6168. case "car": //模拟驾驶
  6169. _formdiv = new U.UF.UI.form(
  6170. "模拟驾驶",
  6171. $$("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/" }), {
  6172. "id": "car",
  6173. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6174. "onresize": function () { }
  6175. }, {
  6176. closecallback: function () { }
  6177. }, { "style": { "height": "36px" } }).form; //创建窗体
  6178. _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); } }
  6179. break;
  6180. case "lineSearch": //路径搜索
  6181. _formdiv = new U.UF.UI.form(
  6182. "路径搜索",
  6183. $$("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/" }), {
  6184. "id": "lineSearch",
  6185. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6186. "onresize": function () { }
  6187. }, {
  6188. closecallback: function () { }
  6189. }, { "style": { "height": "36px" } }).form; //创建窗体
  6190. _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); } }
  6191. break;
  6192. case "deepLearning": //深度学习
  6193. _formdiv = new U.UF.UI.form(
  6194. "深度学习",
  6195. $$("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/#" }), {
  6196. "id": "deepLearning",
  6197. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6198. "onresize": function () { }
  6199. }, {
  6200. closecallback: function () { }
  6201. }, { "style": { "height": "36px" } }).form; //创建窗体
  6202. _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); } }
  6203. break;
  6204. case "allHistory": //深度学习
  6205. _formdiv = new U.UF.UI.form(
  6206. "全历史",
  6207. $$("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/" }), {
  6208. "id": "allHistory",
  6209. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6210. "onresize": function () { }
  6211. }, {
  6212. closecallback: function () { }
  6213. }, { "style": { "height": "36px" } }).form; //创建窗体
  6214. _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); } }
  6215. break;
  6216. case "chatPDF": //ai编程
  6217. _formdiv = new U.UF.UI.form(
  6218. "chatPDF",
  6219. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6220. "id": "chatPDF",
  6221. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6222. "onresize": function () { }
  6223. }, {
  6224. closecallback: function () { }
  6225. }, { "style": { "height": "36px" } }).form; //创建窗体
  6226. _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); } }
  6227. break;
  6228. case "resources": //国家教育
  6229. _formdiv = new U.UF.UI.form(
  6230. "国家教育",
  6231. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6232. "id": "resources",
  6233. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6234. "onresize": function () { }
  6235. }, {
  6236. closecallback: function () { }
  6237. }, { "style": { "height": "36px" } }).form; //创建窗体
  6238. _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); } }
  6239. break;
  6240. case "codeEdit": //源码编辑
  6241. _formdiv = new U.UF.UI.form(
  6242. "源码编辑",
  6243. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6244. "id": "codeEdit",
  6245. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6246. "onresize": function () { }
  6247. }, {
  6248. closecallback: function () { }
  6249. }, { "style": { "height": "36px" } }).form; //创建窗体
  6250. _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); } }
  6251. break; //
  6252. case "MindMap": //MindMap
  6253. _formdiv = new U.UF.UI.form(
  6254. "MindMap",
  6255. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6256. "id": "MindMap",
  6257. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6258. "onresize": function () { }
  6259. }, {
  6260. closecallback: function () { }
  6261. }, { "style": { "height": "36px" } }).form; //创建窗体
  6262. _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); } }
  6263. break;
  6264. case "netWorkPanel": //netWorkPanel
  6265. _formdiv = new U.UF.UI.form(
  6266. "netWorkPanel",
  6267. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6268. "id": "netWorkPanel",
  6269. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6270. "onresize": function () { }
  6271. }, {
  6272. closecallback: function () { }
  6273. }, { "style": { "height": "36px" } }).form; //创建窗体
  6274. _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); } }
  6275. break;
  6276. case "GeoGebra": //GeoGebra
  6277. _formdiv = new U.UF.UI.form(
  6278. "GeoGebra",
  6279. $$("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" }), {
  6280. "id": "GeoGebra",
  6281. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6282. "onresize": function () { }
  6283. }, {
  6284. closecallback: function () { }
  6285. }, { "style": { "height": "36px" } }).form; //创建窗体
  6286. _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); } }
  6287. break;
  6288. case "translation": //翻译
  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": "//dict.youdao.com/" }), {
  6292. "id": "translation",
  6293. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6294. "onresize": function () { }
  6295. }, {
  6296. closecallback: function () { }
  6297. }, { "style": { "height": "36px" } }).form; //创建窗体
  6298. _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); } }
  6299. break;
  6300. case "mohe": //魔盒
  6301. _formdiv = new U.UF.UI.form(
  6302. "魔盒识字",
  6303. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6304. "id": "mohe",
  6305. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6306. "onresize": function () { }
  6307. }, {
  6308. closecallback: function () { }
  6309. }, { "style": { "height": "36px" } }).form; //创建窗体
  6310. _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); } }
  6311. break;
  6312. case "24game": //24点
  6313. _formdiv = new U.UF.UI.form(
  6314. "24点",
  6315. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6316. "id": "24game",
  6317. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6318. "onresize": function () { }
  6319. }, {
  6320. closecallback: function () { }
  6321. }, { "style": { "height": "36px" } }).form; //创建窗体
  6322. _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); } }
  6323. break;
  6324. case "case":
  6325. _formdiv = new U.UF.UI.form(
  6326. "课程进展",
  6327. $$("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 }), {
  6328. "id": "case",
  6329. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6330. "onresize": function () { }
  6331. }, {
  6332. closecallback: function () { }
  6333. }, { "style": { "height": "36px" } }).form; //创建窗体
  6334. _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); } }
  6335. break;
  6336. case "snf":
  6337. _formdiv = new U.UF.UI.form(
  6338. "赛诺梵",
  6339. $$("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" }), {
  6340. "id": "snf",
  6341. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6342. "onresize": function () { }
  6343. }, {
  6344. closecallback: function () { }
  6345. }, { "style": { "height": "36px" } }).form; //创建窗体
  6346. _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); } }
  6347. break;
  6348. case "hanFamily":
  6349. _formdiv = new U.UF.UI.form(
  6350. "汉字家族",
  6351. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6352. "id": "hanFamily",
  6353. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6354. "onresize": function () { }
  6355. }, {
  6356. closecallback: function () { }
  6357. }, { "style": { "height": "36px" } }).form; //创建窗体
  6358. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanFamily.png)" }, "name": "汉字家族", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6359. break;
  6360. case "hanClassics":
  6361. _formdiv = new U.UF.UI.form(
  6362. "国学经典",
  6363. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6364. "id": "hanClassics",
  6365. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6366. "onresize": function () { }
  6367. }, {
  6368. closecallback: function () { }
  6369. }, { "style": { "height": "36px" } }).form; //创建窗体
  6370. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClassics.png)" }, "name": "国学经典", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6371. break;
  6372. case "hanTraining":
  6373. _formdiv = new U.UF.UI.form(
  6374. "笔画训练",
  6375. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6376. "id": "hanTraining",
  6377. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6378. "onresize": function () { }
  6379. }, {
  6380. closecallback: function () { }
  6381. }, { "style": { "height": "36px" } }).form; //创建窗体
  6382. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanTraining.png)" }, "name": "笔画训练", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6383. break;
  6384. case "hanClass":
  6385. _formdiv = new U.UF.UI.form(
  6386. "书法课堂",
  6387. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6388. "id": "hanClass",
  6389. "style": { "width": "90%", "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/hanClass.png)" }, "name": "书法课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6395. break;
  6396. case "han":
  6397. _formdiv = new U.UF.UI.form(
  6398. "汉字宫",
  6399. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6400. "id": "han",
  6401. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6402. "onresize": function () { }
  6403. }, {
  6404. closecallback: function () { }
  6405. }, { "style": { "height": "36px" } }).form; //创建窗体
  6406. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/han.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6407. break;
  6408. case "projectGM": //课程管理
  6409. _formdiv = new U.UF.UI.form(
  6410. "课程管理",
  6411. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/courseGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6412. "id": "projectGM",
  6413. "style": { "width": "90%", "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/gm/courseMange.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6419. break;
  6420. case "studyGM": //课程中心
  6421. _formdiv = new U.UF.UI.form(
  6422. "课程中心",
  6423. $$("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
  6424. "id": "study",
  6425. "style": { "width": "100%", "height": "100%", "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/gm/learning.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6431. break;
  6432. // studentGM
  6433. case "studentGM": //学生管理
  6434. _formdiv = new U.UF.UI.form(
  6435. "学生管理",
  6436. $$("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 }), {
  6437. "id": "studentGM",
  6438. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6439. "onresize": function () { }
  6440. }, {
  6441. closecallback: function () { }
  6442. }, { "style": { "height": "36px" } }).form; //创建窗体
  6443. _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); } }
  6444. break;
  6445. case "evaluateGM": //学生评价
  6446. _formdiv = new U.UF.UI.form(
  6447. "学生评价",
  6448. $$("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 }), {
  6449. "id": "evaluateGM",
  6450. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6451. "onresize": function () { }
  6452. }, {
  6453. closecallback: function () { }
  6454. }, { "style": { "height": "36px" } }).form; //创建窗体
  6455. _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); } }
  6456. break;
  6457. // classGM
  6458. case "classGM": //班级管理
  6459. _formdiv = new U.UF.UI.form(
  6460. "班级管理",
  6461. $$("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 }), {
  6462. "id": "classGM",
  6463. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6464. "onresize": function () { }
  6465. }, {
  6466. closecallback: function () { }
  6467. }, { "style": { "height": "36px" } }).form; //创建窗体
  6468. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6469. break;
  6470. // dataGM
  6471. case "dataGM":
  6472. _formdiv = new U.UF.UI.form(
  6473. "我的资料",
  6474. $$("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 }), {
  6475. "id": "dataGM",
  6476. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6477. "onresize": function () { }
  6478. }, {
  6479. closecallback: function () { }
  6480. }, { "style": { "height": "36px" } }).form; //创建窗体
  6481. _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); } }
  6482. break;
  6483. // caseGM
  6484. case "caseGM": //课程进展
  6485. _formdiv = new U.UF.UI.form(
  6486. "课程进展",
  6487. $$("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 }), {
  6488. "id": "caseGM",
  6489. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6490. "onresize": function () { }
  6491. }, {
  6492. closecallback: function () { }
  6493. }, { "style": { "height": "36px" } }).form; //创建窗体
  6494. _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); } }
  6495. break;
  6496. // meterialGM
  6497. case "meterialGM": //素材库
  6498. _formdiv = new U.UF.UI.form(
  6499. "素材库",
  6500. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/libraryGM?userid=" + _userid + "&org=" + _org }), {
  6501. "id": "meterialGM",
  6502. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6503. "onresize": function () { }
  6504. }, {
  6505. closecallback: function () { }
  6506. }, { "style": { "height": "36px" } }).form; //创建窗体
  6507. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/material.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6508. break;
  6509. // evaluateSGM
  6510. case "evaluateSGM": //我的评价
  6511. _formdiv = new U.UF.UI.form(
  6512. "我的评价",
  6513. $$("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 }), {
  6514. "id": "evaluateSGM",
  6515. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6516. "onresize": function () { }
  6517. }, {
  6518. closecallback: function () { }
  6519. }, { "style": { "height": "36px" } }).form; //创建窗体
  6520. _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); } }
  6521. break;
  6522. case "jupyter": //jupyter
  6523. _formdiv = new U.UF.UI.form(
  6524. "jupyter",
  6525. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6526. "id": "jupyter",
  6527. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6528. "onresize": function () { }
  6529. }, {
  6530. closecallback: function () { }
  6531. }, { "style": { "height": "36px" } }).form; //创建窗体
  6532. _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); } }
  6533. break;
  6534. case "number": //数字实验室
  6535. _formdiv = new U.UF.UI.form(
  6536. "数字实验室",
  6537. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6538. "id": "number",
  6539. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6540. "onresize": function () { }
  6541. }, {
  6542. closecallback: function () { }
  6543. }, { "style": { "height": "36px" } }).form; //创建窗体
  6544. _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); } }
  6545. break;
  6546. case "studentCourse": //项目管理 学生
  6547. _formdiv = new U.UF.UI.form(
  6548. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6549. $$("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 }), {
  6550. "id": "studentCourse",
  6551. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6552. "onresize": function () { }
  6553. }, {
  6554. closecallback: function () { }
  6555. }, { "style": { "height": "36px" } }).form; //创建窗体
  6556. _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); } }
  6557. break;
  6558. case "studentCourseS": //项目管理 老师
  6559. _formdiv = new U.UF.UI.form(
  6560. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6561. $$("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 }), {
  6562. "id": "studentCourseS",
  6563. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6564. "onresize": function () { }
  6565. }, {
  6566. closecallback: function () { }
  6567. }, { "style": { "height": "36px" } }).form; //创建窗体
  6568. _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); } }
  6569. break;
  6570. case "studentIndex": //项目中心
  6571. _formdiv = new U.UF.UI.form(
  6572. "项目中心",
  6573. $$("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 }), {
  6574. "id": "studentIndex",
  6575. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6576. "onresize": function () { }
  6577. }, {
  6578. closecallback: function () { }
  6579. }, { "style": { "height": "36px" } }).form; //创建窗体
  6580. _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); } }
  6581. break;
  6582. case "CaseDesignS":
  6583. _formdiv = new U.UF.UI.form(
  6584. "项目进展",
  6585. $$("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 }), {
  6586. "id": "case",
  6587. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6588. "onresize": function () { }
  6589. }, {
  6590. closecallback: function () { }
  6591. }, { "style": { "height": "36px" } }).form; //创建窗体
  6592. _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); } }
  6593. break;
  6594. case "tcStudent": //腾讯学生管理
  6595. _formdiv = new U.UF.UI.form(
  6596. "学生管理",
  6597. $$("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 }), {
  6598. "id": "tcStudent",
  6599. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6600. "onresize": function () { }
  6601. }, {
  6602. closecallback: function () { }
  6603. }, { "style": { "height": "36px" } }).form; //创建窗体
  6604. _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); } }
  6605. break;
  6606. case "tcSchool": //腾讯学校管理
  6607. _formdiv = new U.UF.UI.form(
  6608. "学校管理",
  6609. $$("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 }), {
  6610. "id": "tcSchool",
  6611. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6612. "onresize": function () { }
  6613. }, {
  6614. closecallback: function () { }
  6615. }, { "style": { "height": "36px" } }).form; //创建窗体
  6616. _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); } }
  6617. break;
  6618. case "tcTeacher": //腾讯学校管理
  6619. _formdiv = new U.UF.UI.form(
  6620. "教师管理",
  6621. $$("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 }), {
  6622. "id": "tcTeacher",
  6623. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6624. "onresize": function () { }
  6625. }, {
  6626. closecallback: function () { }
  6627. }, { "style": { "height": "36px" } }).form; //创建窗体
  6628. _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); } }
  6629. break;
  6630. case "teacher":
  6631. _formdiv = new U.UF.UI.form(
  6632. "教师管理",
  6633. $$("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 }), {
  6634. "id": "teacher",
  6635. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6636. "onresize": function () { }
  6637. }, {
  6638. closecallback: function () { }
  6639. }, { "style": { "height": "36px" } }).form; //创建窗体
  6640. _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); } }
  6641. break;
  6642. case "tcData": //腾讯我的资料
  6643. _formdiv = new U.UF.UI.form(
  6644. "我的资料",
  6645. $$("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 }), {
  6646. "id": "tcData",
  6647. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6648. "onresize": function () { }
  6649. }, {
  6650. closecallback: function () { }
  6651. }, { "style": { "height": "36px" } }).form; //创建窗体
  6652. _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); } }
  6653. break;
  6654. case "tcNotice": //腾讯消息通知
  6655. _formdiv = new U.UF.UI.form(
  6656. "消息通知",
  6657. $$("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 }), {
  6658. "id": "tcNotice",
  6659. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6660. "onresize": function () { }
  6661. }, {
  6662. closecallback: function () { }
  6663. }, { "style": { "height": "36px" } }).form; //创建窗体
  6664. _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); } }
  6665. break;
  6666. case "myReport": //好友打开
  6667. _formdiv = new U.UF.UI.form(
  6668. "我的评价",
  6669. $$("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 }), {
  6670. "id": "myReport",
  6671. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6672. "onresize": function () { }
  6673. }, {
  6674. closecallback: function () { }
  6675. }, { "style": { "height": "36px" } }).form; //创建窗体
  6676. _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); } }
  6677. break;
  6678. case "learnAna": //好友打开
  6679. _formdiv = new U.UF.UI.form(
  6680. "学习分析",
  6681. $$("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 }), {
  6682. "id": "learnAna",
  6683. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6684. "onresize": function () { }
  6685. }, {
  6686. closecallback: function () { }
  6687. }, { "style": { "height": "36px" } }).form; //创建窗体
  6688. _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); } }
  6689. break;
  6690. case "AIChat": //AI共创
  6691. _formdiv = new U.UF.UI.form(
  6692. "AI共创",
  6693. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6694. "id": "AIChat",
  6695. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6696. "onresize": function () { }
  6697. }, {
  6698. istop: true,
  6699. closecallback: function () { $("#aichat_icon").remove(); },
  6700. narrowcallback: function () {
  6701. if (!$("#aichat_icon")[0]) {
  6702. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6703. }
  6704. },
  6705. }, { "style": { "height": "36px" } }).form; //创建窗体
  6706. _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); } }
  6707. break;
  6708. case "ainew": //AI共创
  6709. _formdiv = new U.UF.UI.form(
  6710. "AI协同",
  6711. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6712. "id": "ainew",
  6713. "style": { "width": "100%", "height": "100%", "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/AIChat.png)" }, "name": "AI协同", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6719. break;
  6720. case "gpt4": //gpt4
  6721. _formdiv = new U.UF.UI.form(
  6722. "AI助手",
  6723. $$("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 }), {
  6724. "id": "gpt4",
  6725. "style": { "width": "100%", "height": "100%", "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/gpt4.png)" }, "name": "AI助手", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6731. break;
  6732. case "aigpt": //gpt4
  6733. _formdiv = new U.UF.UI.form(
  6734. "AI助手+",
  6735. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6736. "id": "aigpt",
  6737. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6738. "onresize": function () { }
  6739. }, {
  6740. closecallback: function () {
  6741. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6742. }
  6743. }, { "style": { "height": "36px" } }).form; //创建窗体
  6744. _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); } }
  6745. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6746. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6747. })
  6748. break;
  6749. case "aiKnowledge": //aiKnowledge
  6750. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  6751. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  6752. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  6753. }
  6754. _formdiv = new U.UF.UI.form(
  6755. "知识建构",
  6756. $$("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 }), {
  6757. "id": "aiKnowledge",
  6758. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6759. "onresize": function () { }
  6760. }, {
  6761. closecallback: function () { }
  6762. }, { "style": { "height": "36px" } }).form; //创建窗体
  6763. _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); } }
  6764. break;
  6765. case "futureClass": //AI共创
  6766. _formdiv = new U.UF.UI.form(
  6767. "协同建构",
  6768. $$("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
  6769. "id": "synergyCourse",
  6770. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6771. "onresize": function () { }
  6772. }, {
  6773. closecallback: function () {
  6774. $("iframe", _formdiv)[0].contentWindow.loginout();
  6775. }
  6776. }, { "style": { "height": "36px" } }).form; //创建窗体
  6777. _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); } }
  6778. break;
  6779. case "aiagent": //ai agent
  6780. _formdiv = new U.UF.UI.form(
  6781. "AI Agent",
  6782. $$("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" }), {
  6783. "id": "AIAgent",
  6784. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6785. "onresize": function () { }
  6786. }, {
  6787. closecallback: function () { }
  6788. }, { "style": { "height": "36px" } }).form; //创建窗体
  6789. _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); } }
  6790. break;
  6791. case "dataBoard": //数据看板
  6792. _formdiv = new U.UF.UI.form(
  6793. "数据看板",
  6794. $$("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 }), {
  6795. "id": "dataBoard",
  6796. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6797. "onresize": function () { }
  6798. }, {
  6799. closecallback: function () { }
  6800. }, { "style": { "height": "36px" } }).form; //创建窗体
  6801. _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); } }
  6802. break;
  6803. case "dataBoardSies": //数据融合
  6804. _formdiv = new U.UF.UI.form(
  6805. "数据融合",
  6806. $$("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 }), {
  6807. "id": "dataBoardSies",
  6808. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6809. "onresize": function () { }
  6810. }, {
  6811. closecallback: function () { }
  6812. }, { "style": { "height": "36px" } }).form; //创建窗体
  6813. _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); } }
  6814. break;
  6815. case "dataBoardNew": //数据看板
  6816. _formdiv = new U.UF.UI.form(
  6817. "综合看板",
  6818. $$("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 }), {
  6819. "id": "dataBoardNew",
  6820. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6821. "onresize": function () { }
  6822. }, {
  6823. closecallback: function () { }
  6824. }, { "style": { "height": "36px" } }).form; //创建窗体
  6825. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardNew.png)" }, "name": "综合看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6826. break;
  6827. case "dataBoardTest": //数据看板
  6828. _formdiv = new U.UF.UI.form(
  6829. "评测看板",
  6830. $$("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 }), {
  6831. "id": "dataBoardTest",
  6832. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6833. "onresize": function () { }
  6834. }, {
  6835. closecallback: function () { }
  6836. }, { "style": { "height": "36px" } }).form; //创建窗体
  6837. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardTest.png)" }, "name": "评测看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6838. break;
  6839. case "AIAnalyse": //AI共创
  6840. _formdiv = new U.UF.UI.form(
  6841. "AI分析",
  6842. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6843. "id": "AIAnalyse",
  6844. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6845. "onresize": function () { }
  6846. }, {
  6847. closecallback: function () { }
  6848. }, { "style": { "height": "36px" } }).form; //创建窗体
  6849. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIChat.png)" }, "name": "AI分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6850. break;
  6851. case "studioCourse": //AI共创
  6852. _formdiv = new U.UF.UI.form(
  6853. "工作管理",
  6854. $$("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 }), {
  6855. "id": "studioCourse",
  6856. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6857. "onresize": function () { }
  6858. }, {
  6859. closecallback: function () { }
  6860. }, { "style": { "height": "36px" } }).form; //创建窗体
  6861. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioCourse.png)" }, "name": "工作管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6862. break;
  6863. case "studioIndex": //AI共创
  6864. _formdiv = new U.UF.UI.form(
  6865. "工作中心",
  6866. $$("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 }), {
  6867. "id": "studioIndex",
  6868. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6869. "onresize": function () { }
  6870. }, {
  6871. closecallback: function () { }
  6872. }, { "style": { "height": "36px" } }).form; //创建窗体
  6873. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioIndex.png)" }, "name": "工作中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6874. break;
  6875. case "source":
  6876. _formdiv = new U.UF.UI.form(
  6877. "教学资源",
  6878. $$("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 }), {
  6879. "id": "source",
  6880. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6881. "onresize": function () { }
  6882. }, {
  6883. closecallback: function () { }
  6884. }, { "style": { "height": "36px" } }).form; //创建窗体
  6885. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/source.png)" }, "name": "教学资源", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6886. break;
  6887. case "testTeacher":
  6888. _formdiv = new U.UF.UI.form(
  6889. "智能表单",
  6890. $$("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 }), {
  6891. "id": "testTeacher",
  6892. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6893. "onresize": function () { }
  6894. }, {
  6895. closecallback: function () { }
  6896. }, { "style": { "height": "36px" } }).form; //创建窗体
  6897. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testTeacher.png)" }, "name": "智能表单", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6898. break;
  6899. case "testStudent":
  6900. _formdiv = new U.UF.UI.form(
  6901. "教师中心",
  6902. $$("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 }), {
  6903. "id": "testStudent",
  6904. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6905. "onresize": function () { }
  6906. }, {
  6907. closecallback: function () { }
  6908. }, { "style": { "height": "36px" } }).form; //创建窗体
  6909. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testStudent.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6910. break;
  6911. case "testTeacherSies":
  6912. _formdiv = new U.UF.UI.form(
  6913. "教师管理",
  6914. $$("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 }), {
  6915. "id": "testTeacherSies",
  6916. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6917. "onresize": function () { }
  6918. }, {
  6919. closecallback: function () { }
  6920. }, { "style": { "height": "36px" } }).form; //创建窗体
  6921. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testTeacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6922. break;
  6923. case "testStudentSies":
  6924. _formdiv = new U.UF.UI.form(
  6925. "教师中心",
  6926. $$("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 }), {
  6927. "id": "testStudentSies",
  6928. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6929. "onresize": function () { }
  6930. }, {
  6931. closecallback: function () { }
  6932. }, { "style": { "height": "36px" } }).form; //创建窗体
  6933. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testStudent.png)" }, "name": "教师中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6934. break;
  6935. case "ytpbl": //消息通知
  6936. _formdiv = new U.UF.UI.form(
  6937. "案例征集",
  6938. $$("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 }), {
  6939. "id": "ytpbl",
  6940. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6941. "onresize": function () { }
  6942. }, {
  6943. closecallback: function () { }
  6944. }, { "style": { "height": "36px" } }).form; //创建窗体
  6945. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gpbl2.png)" }, "name": "案例征集", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6946. // 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");
  6947. break;
  6948. case "aiCourseResource": //人工智能窗体
  6949. _formdiv = new U.UF.UI.form(
  6950. false,
  6951. $$("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 }), {
  6952. "id": "aiCourseResource",
  6953. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6954. "onresize": function () { },
  6955. "isdrag": false,
  6956. }, {
  6957. closecallback: function () { }
  6958. }, { "style": { "height": "36px" } }).form; //创建窗体
  6959. _taskbar = ''
  6960. break;
  6961. case "szdjgCocooroboX": //图形化编程
  6962. _formdiv = new U.UF.UI.form(
  6963. "图形化编程",
  6964. $$("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" }), {
  6965. "id": "szdjgCocooroboX",
  6966. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6967. "onresize": function () { }
  6968. }, {
  6969. closecallback: function () { }
  6970. }, { "style": { "height": "36px" } }).form; //创建窗体
  6971. _taskbar = ''
  6972. break;
  6973. case "szdjgPython": //python编程
  6974. _formdiv = new U.UF.UI.form(
  6975. "Python编程",
  6976. $$("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" }), {
  6977. "id": "szdjgPython",
  6978. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6979. "onresize": function () { }
  6980. }, {
  6981. closecallback: function () { }
  6982. }, { "style": { "height": "36px" } }).form; //创建窗体
  6983. _taskbar = ''
  6984. break;
  6985. case "Record":
  6986. _formdiv = new U.UF.UI.form(
  6987. "观察记录",
  6988. $$("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 }), {
  6989. "id": "Record",
  6990. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6991. "onresize": function () { }
  6992. }, {
  6993. closecallback: function () { }
  6994. }, { "style": { "height": "36px" } }).form; //创建窗体
  6995. _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); } }
  6996. break;
  6997. case "aigptCourse":
  6998. _formdiv = new U.UF.UI.form(
  6999. "AI智能体",
  7000. $$("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' }), {
  7001. "id": "aigptCourse",
  7002. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7003. "onresize": function () { }
  7004. }, {
  7005. closecallback: function () { }
  7006. }, { "style": { "height": "36px" } }).form; //创建窗体
  7007. _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); } }
  7008. break;
  7009. case "classroomObservation":
  7010. _formdiv = new U.UF.UI.form(
  7011. "课堂观察",
  7012. $$("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 }), {
  7013. "id": "classroomObservation",
  7014. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7015. "onresize": function () { }
  7016. }, {
  7017. closecallback: function () { }
  7018. }, { "style": { "height": "36px" } }).form; //创建窗体
  7019. _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); } }
  7020. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7021. break;
  7022. case "pblCourse":
  7023. _formdiv = new U.UF.UI.form(
  7024. "学生PBL",
  7025. $$("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 }), {
  7026. "id": "pblCourse",
  7027. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7028. "onresize": function () { }
  7029. }, {
  7030. closecallback: function () { }
  7031. }, { "style": { "height": "36px" } }).form; //创建窗体
  7032. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "学生PBL", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7033. break;
  7034. case "appStore":
  7035. _formdiv = new U.UF.UI.form(
  7036. "CocoFlow",
  7037. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//beta.cloud.cocorobo.cn/aigpt/#/WorkSpace?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7038. "id": "appStore",
  7039. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7040. "onresize": function () { }
  7041. }, {
  7042. closecallback: function () { }
  7043. }, { "style": { "height": "36px" } }).form; //创建窗体
  7044. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/appStore.png)" }, "name": "CocoFlow", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7045. break;
  7046. case "sassPlatform":
  7047. _formdiv = new U.UF.UI.form(
  7048. "Sass通用后台管理",
  7049. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/sassPlatform?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7050. "id": "sassPlatform",
  7051. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7052. "onresize": function () { }
  7053. }, {
  7054. closecallback: function () { }
  7055. }, { "style": { "height": "36px" } }).form; //创建窗体
  7056. _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); } }
  7057. break;
  7058. case "EDU":
  7059. _formdiv = new U.UF.UI.form(
  7060. "EDU",
  7061. $$("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" }), {
  7062. "id": "EDU",
  7063. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7064. "onresize": function () { }
  7065. }, {
  7066. closecallback: function () { }
  7067. }, { "style": { "height": "36px" } }).form; //创建窗体
  7068. _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); } }
  7069. break;
  7070. case "knowledge":
  7071. _formdiv = new U.UF.UI.form(
  7072. "知识库",
  7073. $$("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 }), {
  7074. "id": "knowledge",
  7075. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7076. "onresize": function () { }
  7077. }, {
  7078. closecallback: function () { }
  7079. }, { "style": { "height": "36px" } }).form; //创建窗体
  7080. _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); } }
  7081. break;
  7082. case "userExamine":
  7083. _formdiv = new U.UF.UI.form(
  7084. "账号申请",
  7085. $$("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" }), {
  7086. "id": "userExamine",
  7087. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7088. "onresize": function () { }
  7089. }, {
  7090. closecallback: function () { }
  7091. }, { "style": { "height": "36px" } }).form; //创建窗体
  7092. break;
  7093. }
  7094. //U.MD.D.I.openClick(str);
  7095. //如果有任务栏信息
  7096. if (_taskbar) {
  7097. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7098. }
  7099. }
  7100. // U.MD.D.I.openClick = function(str){
  7101. // var click = '';
  7102. // switch(str){
  7103. // case 'friend':
  7104. // click = '我的好友';
  7105. // break;
  7106. // case 'domain':
  7107. // click = '域名管理';
  7108. // break;
  7109. // case 'disk':
  7110. // click = '我的云盘';
  7111. // break;
  7112. // case 'word':
  7113. // click = 'Word';
  7114. // break;
  7115. // case 'excel':
  7116. // click = 'Execl';
  7117. // break;
  7118. // case 'txt':
  7119. // click = '文本文件';
  7120. // break;
  7121. // case 'lookupFriend':
  7122. // click = '查找好友';
  7123. // break;
  7124. // case 'ftp':
  7125. // click = 'FTP';
  7126. // break;
  7127. // case 'group':
  7128. // click = '群组';
  7129. // break;
  7130. // case 'set':
  7131. // click = '我的设置';
  7132. // break;
  7133. // case 'systemSet':
  7134. // click = '系统设置';
  7135. // break;
  7136. // case 'boomYun':
  7137. // click = '互联办公';
  7138. // break;
  7139. // case 'xz':
  7140. // click = '云端下载';
  7141. // break;
  7142. // case 'client':
  7143. // click = '有思浏览器';
  7144. // break;
  7145. // case 'backEndProgramming':
  7146. // click = '在线后台编程';
  7147. // break;
  7148. // case 'frontEndProgramming':
  7149. // click = '在线前端编程';
  7150. // break;
  7151. // default: break;
  7152. // }
  7153. // if(U.MD.D.I.Ip && click){
  7154. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7155. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7156. // })
  7157. // }
  7158. // }
  7159. /**
  7160. *函数作用:ajax简易函数,使用post格式
  7161. *@param url {data} 后台地址
  7162. *@param data {data} 参数json
  7163. *@param fn {data} 回调函数
  7164. *
  7165. */
  7166. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7167. // var xhr = new XMLHttpRequest();
  7168. // xhr.open("GET",url,true);
  7169. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7170. // xhr.onreadystatechange = function(){
  7171. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7172. // fn.call(this,xhr.responseText);
  7173. // }
  7174. // };
  7175. // xhr.send();
  7176. // }
  7177. /*判断是否是内网IP*/
  7178. // U.MD.D.I.isInnerIPFn = function(str){
  7179. // var curPageUrl = str;
  7180. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7181. // curPageUrl =curPageUrl.replace(reg1,'');
  7182. // // console.log('curPageUrl-1 '+curPageUrl);
  7183. // var reg2 = /\:+/g;//替换冒号为一点
  7184. // curPageUrl =curPageUrl.replace(reg2,'.');
  7185. // // console.log('curPageUrl-2 '+curPageUrl);
  7186. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7187. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7188. // if(curPageUrl[2] != '16'){
  7189. // return ipAddress;
  7190. // }else{
  7191. // return false;
  7192. // }
  7193. // }
  7194. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7195. // //compatibility for firefox and chrome
  7196. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7197. // var pc = new myPeerConnection({
  7198. // iceServers: []
  7199. // }),
  7200. // noop = function() {},
  7201. // localIPs = {},
  7202. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7203. // key;
  7204. // function iterateIP(ip) {
  7205. // if (!localIPs[ip]) onNewIP(ip);
  7206. // localIPs[ip] = true;
  7207. // }
  7208. // //create a bogus data channel
  7209. // pc.createDataChannel("");
  7210. // // create offer and set local description
  7211. // pc.createOffer().then(function(sdp) {
  7212. // sdp.sdp.split('\n').forEach(function(line) {
  7213. // if (line.indexOf('candidate') < 0) return;
  7214. // line.match(ipRegex).forEach(iterateIP);
  7215. // });
  7216. // pc.setLocalDescription(sdp, noop, noop);
  7217. // }).catch(function(reason) {
  7218. // // An error occurred, so handle the failure to connect
  7219. // });
  7220. // //sten for candidate events
  7221. // pc.onicecandidate = function(ice) {
  7222. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7223. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7224. // };
  7225. // }
  7226. // U.MD.D.I.getUserIpBool = function(callback){
  7227. // U.MD.D.I.getUserIP(function(ip){
  7228. // alert("Got IP! :" + ip);
  7229. // });
  7230. //}
  7231. //#endregion
  7232. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7233. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7234. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7235. _userinfo = US.userInfo, //登录用户信息
  7236. _userid = US.userInfo.userid //登录用户id
  7237. let _iframe;
  7238. let _cid = cid,
  7239. _stage = stage,
  7240. _task = task,
  7241. _tool = tool;
  7242. var _jie = $$("div", {
  7243. "style": {
  7244. "position": "absolute",
  7245. "bottom": "50px",
  7246. "right": "50px",
  7247. "zIndex": "9999",
  7248. "backgroundColor": "#2268bc",
  7249. "color": "#fff",
  7250. "padding": "12px 20px",
  7251. "cursor": "pointer",
  7252. "borderRadius": "4px",
  7253. },
  7254. "innerHTML": "提交作业"
  7255. })
  7256. let aTool = ''
  7257. let _loading = document.createElement('div')
  7258. _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;"
  7259. // _loading.id = "";
  7260. let _lchild = document.createElement('div')
  7261. let _limg = document.createElement('img')
  7262. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7263. _limg.style = "width: 26px;margin-right: 10px;"
  7264. _lchild.appendChild(_limg)
  7265. let _lspan = document.createElement('span')
  7266. _lspan.innerHTML = "上传中..."
  7267. _lchild.appendChild(_lspan)
  7268. _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%);"
  7269. _loading.appendChild(_lchild)
  7270. var _box = $$('div', {
  7271. "style": {
  7272. "position": "relative",
  7273. "width": "100%",
  7274. "height": "100%",
  7275. },
  7276. })
  7277. _box.appendChild(_loading)
  7278. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7279. switch (str) {
  7280. case "whiteboard":
  7281. aTool = 1;
  7282. _iframe = $$("iframe", {
  7283. "frameborder": "no",
  7284. "border": "0",
  7285. "scrolling ": "no",
  7286. "style": {
  7287. "cssText": "border:0;width:100%;height:100%"
  7288. },
  7289. "src": "https://beta.iwb.cocorobo.cn/"
  7290. })
  7291. _box.appendChild(_iframe);
  7292. _box.appendChild(_jie);
  7293. _formdiv = new U.UF.UI.form(
  7294. "电子白板",
  7295. _box, {
  7296. "id": "whiteboard" + cid + stage + task + tool,
  7297. "style": {
  7298. "width": "90%",
  7299. "height": "90%",
  7300. "overflow": 'hidden'
  7301. },
  7302. "onresize": function () { }
  7303. }, {
  7304. closecallback: function () { }
  7305. }, {
  7306. "style": {
  7307. "height": "36px"
  7308. }
  7309. }).form; //创建窗体
  7310. _taskbar = {
  7311. "id": str + _formdiv.id,
  7312. "style": {
  7313. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7314. },
  7315. "name": "电子白板",
  7316. "forms": _formdiv,
  7317. "click": function () {
  7318. U.MD.D.I.openApplication(str, obj, info);
  7319. }
  7320. }
  7321. break;
  7322. case "mind":
  7323. aTool = 3;
  7324. _iframe = $$("iframe", {
  7325. "frameborder": "no",
  7326. "border": "0",
  7327. "scrolling ": "no",
  7328. "style": {
  7329. "cssText": "border:0;width:100%;height:100%"
  7330. },
  7331. "src": "/kityminder-editor/dist/index.html"
  7332. })
  7333. _box.appendChild(_iframe);
  7334. _box.appendChild(_jie);
  7335. _formdiv = new U.UF.UI.form(
  7336. "思维导图",
  7337. _box, { //"/jsmind/example/demo.html"
  7338. "id": "mind" + cid + stage + task + tool,
  7339. "style": {
  7340. "width": "90%",
  7341. "height": "90%",
  7342. "overflow": 'hidden'
  7343. },
  7344. "onresize": function () { }
  7345. }, {
  7346. closecallback: function () { }
  7347. }, {
  7348. "style": {
  7349. "height": "36px"
  7350. }
  7351. }).form; //创建窗体
  7352. _taskbar = {
  7353. "id": str + _formdiv.id,
  7354. "style": {
  7355. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7356. },
  7357. "name": "思维导图",
  7358. "forms": _formdiv,
  7359. "click": function () {
  7360. U.MD.D.I.openApplication(str, obj, info);
  7361. }
  7362. }
  7363. break;
  7364. case "MindMap":
  7365. aTool = 3;
  7366. _iframe = $$("iframe", {
  7367. "frameborder": "no",
  7368. "border": "0",
  7369. "scrolling ": "no",
  7370. "style": {
  7371. "cssText": "border:0;width:100%;height:100%"
  7372. },
  7373. "src": "//cloud.cocorobo.cn/mind/"
  7374. })
  7375. _box.appendChild(_iframe);
  7376. _box.appendChild(_jie);
  7377. _formdiv = new U.UF.UI.form(
  7378. "思维导图",
  7379. _box, { //"/jsmind/example/demo.html"
  7380. "id": "mind" + cid + stage + task + tool,
  7381. "style": {
  7382. "width": "90%",
  7383. "height": "90%",
  7384. "overflow": 'hidden'
  7385. },
  7386. "onresize": function () { }
  7387. }, {
  7388. closecallback: function () { }
  7389. }, {
  7390. "style": {
  7391. "height": "36px"
  7392. }
  7393. }).form; //创建窗体
  7394. _taskbar = {
  7395. "id": str + _formdiv.id,
  7396. "style": {
  7397. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7398. },
  7399. "name": "思维导图",
  7400. "forms": _formdiv,
  7401. "click": function () {
  7402. U.MD.D.I.openApplication(str, obj, info);
  7403. }
  7404. }
  7405. break;
  7406. case "doc":
  7407. aTool = 6;
  7408. _iframe = $$("iframe", {
  7409. "frameborder": "no",
  7410. "border": "0",
  7411. "scrolling ": "no",
  7412. "style": {
  7413. "cssText": "border:0;width:100%;height:100%"
  7414. },
  7415. "src": "/Office/Word/WordEditArea.htm"
  7416. })
  7417. _box.appendChild(_iframe);
  7418. _box.appendChild(_jie);
  7419. _formdiv = new U.UF.UI.form(
  7420. "协同文档",
  7421. _box, {
  7422. "id": "doc" + cid + stage + task + tool,
  7423. "style": {
  7424. "width": "90%",
  7425. "height": "90%",
  7426. "overflow": 'hidden'
  7427. },
  7428. "onresize": function () { }
  7429. }, {
  7430. closecallback: function () { }
  7431. }, {
  7432. "style": {
  7433. "height": "36px"
  7434. }
  7435. }).form; //创建窗体
  7436. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7437. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7438. })
  7439. _taskbar = {
  7440. "id": str + _formdiv.id,
  7441. "style": {
  7442. "backgroundImage": "url(/img/icon/doc.png)"
  7443. },
  7444. "name": "协同文档",
  7445. "forms": _formdiv,
  7446. "click": function () {
  7447. U.MD.D.I.openApplication(str, obj, info);
  7448. }
  7449. }
  7450. break;
  7451. case "mindNetwork": //好友打开
  7452. aTool = 7;
  7453. _iframe = $$("iframe", {
  7454. "webkitallowfullscreen": "",
  7455. "mozallowfullscreen": "",
  7456. "allowfullscreen": "",
  7457. "frameborder": "no",
  7458. "border": "0",
  7459. "scrolling ": "no",
  7460. "style": {
  7461. "cssText": "border:0; width:100%; height:100%;"
  7462. },
  7463. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7464. })
  7465. _box.appendChild(_iframe);
  7466. _box.appendChild(_jie);
  7467. _formdiv = new U.UF.UI.form(
  7468. "思维网格",
  7469. _box, {
  7470. "id": "mindNetwork" + cid + stage + task + tool,
  7471. "style": {
  7472. "width": "90%",
  7473. "height": "90%",
  7474. "overflow": 'hidden'
  7475. },
  7476. "onresize": function () { }
  7477. }, {
  7478. closecallback: function () { }
  7479. }, {
  7480. "style": {
  7481. "height": "36px"
  7482. }
  7483. }).form; //创建窗体
  7484. _taskbar = {
  7485. "id": str + _formdiv.id,
  7486. "style": {
  7487. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7488. },
  7489. "name": "思维网格",
  7490. "forms": _formdiv,
  7491. "click": function () {
  7492. U.MD.D.I.openApplication(str, obj, info);
  7493. }
  7494. }
  7495. break;
  7496. case "courseDesign":
  7497. _iframe = $$("iframe", {
  7498. "webkitallowfullscreen": "",
  7499. "mozallowfullscreen": "",
  7500. "allowfullscreen": "",
  7501. "frameborder": "no",
  7502. "border": "0",
  7503. "scrolling ": "no",
  7504. "style": {
  7505. "cssText": "border:0; width:100%; height:100%;"
  7506. },
  7507. "src": "/course-design-vue"
  7508. })
  7509. _box.appendChild(_iframe);
  7510. _box.appendChild(_jie);
  7511. _formdiv = new U.UF.UI.form(
  7512. "项目设计",
  7513. _box, {
  7514. "id": "courseDesign" + cid + stage + task + tool,
  7515. "style": {
  7516. "width": "90%",
  7517. "height": "90%",
  7518. "overflow": 'hidden'
  7519. },
  7520. "onresize": function () { }
  7521. }, {
  7522. closecallback: function () { }
  7523. }, {
  7524. "style": {
  7525. "height": "36px"
  7526. }
  7527. }).form; //创建窗体
  7528. _taskbar = {
  7529. "id": str + _formdiv.id,
  7530. "style": {
  7531. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7532. },
  7533. "name": "项目设计",
  7534. "forms": _formdiv,
  7535. "click": function () {
  7536. U.MD.D.I.openApplication(str, obj, info);
  7537. }
  7538. }
  7539. break;
  7540. }
  7541. const script1 = document.createElement("script");
  7542. script1.type = "text/javascript";
  7543. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7544. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7545. const script2 = document.createElement("script");
  7546. script2.type = "text/javascript";
  7547. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7548. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7549. const script3 = document.createElement("script");
  7550. script3.type = "text/javascript";
  7551. script3.charset = "UTF-8";
  7552. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7553. const script4 = document.createElement("script");
  7554. script4.type = "text/javascript";
  7555. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7556. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7557. if (_iframe) {
  7558. if (str == 'doc') {
  7559. _iframe = _formdiv.querySelector('iframe')
  7560. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7561. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7562. _iframe.contentWindow.document.body.appendChild(script1);
  7563. _iframe.contentWindow.document.body.appendChild(script2);
  7564. // _iframe.contentWindow.document.body.appendChild(script3);
  7565. _iframe.contentWindow.document.body.appendChild(script4);
  7566. })
  7567. if (onloadListener) {
  7568. _iframe.contentDocument.location.reload()
  7569. } else {
  7570. _iframe.contentDocument.location.reload()
  7571. }
  7572. } else if (str == 'courseDesign') {
  7573. U.UF.DL.iframeLoad(_iframe, function () {
  7574. // _iframe.contentWindow.U.MD.O.W.load();
  7575. // _iframe.contentWindow.document.body.appendChild(script1);
  7576. _iframe.contentWindow.document.body.appendChild(script2);
  7577. _iframe.contentWindow.document.body.appendChild(script4);
  7578. })
  7579. } else if (str == 'mind') {
  7580. _iframe = _formdiv.querySelector('iframe')
  7581. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7582. //
  7583. _iframe.contentWindow.document.body.appendChild(script1);
  7584. _iframe.contentWindow.document.body.appendChild(script2);
  7585. _iframe.contentWindow.document.body.appendChild(script4);
  7586. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7587. })
  7588. if (onloadListener) {
  7589. _iframe.contentDocument.location.reload()
  7590. } else {
  7591. _iframe.contentDocument.location.reload()
  7592. }
  7593. } else if (str == 'whiteboard') {
  7594. _iframe = _formdiv.querySelector('iframe')
  7595. let onloadListener = _iframe.onload = () => {
  7596. _iframe.contentWindow.document.body.appendChild(script1);
  7597. _iframe.contentWindow.document.body.appendChild(script2);
  7598. _iframe.contentWindow.document.body.appendChild(script4);
  7599. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7600. };
  7601. // if (onloadListener) {
  7602. // try {
  7603. // _iframe.src += "?cocorobo="+new Date().getTime()
  7604. // _iframe.contentWindow.document.location.reload()
  7605. // } catch (error) {
  7606. // }
  7607. // } else {
  7608. // _iframe.contentDocument.location.reload()
  7609. // }
  7610. } else {
  7611. _iframe.onload = () => {
  7612. _iframe.contentWindow.document.body.appendChild(script1);
  7613. _iframe.contentWindow.document.body.appendChild(script2);
  7614. // _iframe.contentWindow.document.body.appendChild(script3);
  7615. _iframe.contentWindow.document.body.appendChild(script4);
  7616. };
  7617. }
  7618. _jie.onclick = async () => {
  7619. let text = ''
  7620. if (aTool == 1) {
  7621. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7622. } else if (aTool == 6) {
  7623. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7624. } else if (aTool == 3) {
  7625. text = await U.MD.D.I.getEditorContent(_iframe);
  7626. }
  7627. _loading.style.display = 'flex'
  7628. console.log(_loading);
  7629. var _ajs = _iframe.contentWindow.document.createElement("script");
  7630. _ajs.type = "text/javascript";
  7631. _ajs.innerHTML =
  7632. // 'console.log(' + _loading + ');\n' +
  7633. 'var _js = document.createElement("script");\n' +
  7634. '_js.type="text/javascript";\n' +
  7635. '_js.charset="UTF-8";\n' +
  7636. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7637. "_js.onload = function(){\n" +
  7638. ' var a = document.getElementsByTagName("img")\n' +
  7639. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7640. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7641. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7642. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7643. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7644. "beforeUpload_shishi(file," +
  7645. "'" +
  7646. _userid +
  7647. "'" +
  7648. ", " +
  7649. "'" +
  7650. _cid +
  7651. "'" +
  7652. ", " +
  7653. "'" +
  7654. _stage +
  7655. "'" +
  7656. ", " +
  7657. "'" +
  7658. _task +
  7659. "'" +
  7660. ", " +
  7661. "'" +
  7662. _tool +
  7663. "'" +
  7664. ", " +
  7665. "'" +
  7666. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7667. "'" +
  7668. ", " +
  7669. "'" +
  7670. aTool +
  7671. "'" +
  7672. ", " +
  7673. "`" +
  7674. text +
  7675. "`" +
  7676. ")\n" +
  7677. " });\n" +
  7678. "}\n" +
  7679. "document.head.appendChild(_js);\n";
  7680. _iframe.contentWindow.document.head.appendChild(_ajs);
  7681. }
  7682. }
  7683. //U.MD.D.I.openClick(str);
  7684. //如果有任务栏信息
  7685. // if (_taskbar) {
  7686. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7687. // }
  7688. }
  7689. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7690. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7691. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7692. _userinfo = US.userInfo, //登录用户信息
  7693. _userid = US.userInfo.userid //登录用户id
  7694. let _iframe;
  7695. let _cid = cid,
  7696. _stage = stage,
  7697. _task = task,
  7698. _tool = tool;
  7699. var _jie = $$("div", {
  7700. "style": {
  7701. "position": "absolute",
  7702. "bottom": "50px",
  7703. "right": "50px",
  7704. "zIndex": "9999",
  7705. "backgroundColor": "#2268bc",
  7706. "color": "#fff",
  7707. "padding": "12px 20px",
  7708. "cursor": "pointer",
  7709. "borderRadius": "4px",
  7710. },
  7711. "innerHTML": "提交作业"
  7712. })
  7713. let aTool = ''
  7714. let _loading = document.createElement('div')
  7715. _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;"
  7716. // _loading.id = "";
  7717. let _lchild = document.createElement('div')
  7718. let _limg = document.createElement('img')
  7719. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7720. _limg.style = "width: 26px;margin-right: 10px;"
  7721. _lchild.appendChild(_limg)
  7722. let _lspan = document.createElement('span')
  7723. _lspan.innerHTML = "上传中..."
  7724. _lchild.appendChild(_lspan)
  7725. _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%);"
  7726. _loading.appendChild(_lchild)
  7727. let _box = $$('div', {
  7728. "style": {
  7729. "position": "relative",
  7730. "width": "100%",
  7731. "height": "100%",
  7732. },
  7733. })
  7734. _box.appendChild(_loading)
  7735. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7736. switch (str) {
  7737. case "whiteboard":
  7738. aTool = 1;
  7739. _iframe = $$("iframe", {
  7740. "frameborder": "no",
  7741. "border": "0",
  7742. "scrolling ": "no",
  7743. "style": {
  7744. "cssText": "border:0;width:100%;height:100%"
  7745. },
  7746. "src": "https://beta.iwb.cocorobo.cn/"
  7747. })
  7748. _box.appendChild(_iframe);
  7749. _box.appendChild(_jie);
  7750. _formdiv = new U.UF.UI.form(
  7751. "电子白板",
  7752. _box, {
  7753. "id": "whiteboard" + cid + stage + task + tool,
  7754. "style": {
  7755. "width": "90%",
  7756. "height": "90%",
  7757. "overflow": 'hidden'
  7758. },
  7759. "onresize": function () { }
  7760. }, {
  7761. closecallback: function () { }
  7762. }, {
  7763. "style": {
  7764. "height": "36px"
  7765. }
  7766. }).form; //创建窗体
  7767. _taskbar = {
  7768. "id": str + _formdiv.id,
  7769. "style": {
  7770. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7771. },
  7772. "name": "电子白板",
  7773. "forms": _formdiv,
  7774. "click": function () {
  7775. U.MD.D.I.openApplication(str, obj, info);
  7776. }
  7777. }
  7778. break;
  7779. case "mind":
  7780. aTool = 3;
  7781. _iframe = $$("iframe", {
  7782. "frameborder": "no",
  7783. "border": "0",
  7784. "scrolling ": "no",
  7785. "style": {
  7786. "cssText": "border:0;width:100%;height:100%"
  7787. },
  7788. "src": "/kityminder-editor/dist/index.html"
  7789. })
  7790. _box.appendChild(_iframe);
  7791. _box.appendChild(_jie);
  7792. _formdiv = new U.UF.UI.form(
  7793. "思维导图",
  7794. _box, { //"/jsmind/example/demo.html"
  7795. "id": "mind" + cid + stage + task + tool,
  7796. "style": {
  7797. "width": "90%",
  7798. "height": "90%",
  7799. "overflow": 'hidden'
  7800. },
  7801. "onresize": function () { }
  7802. }, {
  7803. closecallback: function () { }
  7804. }, {
  7805. "style": {
  7806. "height": "36px"
  7807. }
  7808. }).form; //创建窗体
  7809. _taskbar = {
  7810. "id": str + _formdiv.id,
  7811. "style": {
  7812. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7813. },
  7814. "name": "思维导图",
  7815. "forms": _formdiv,
  7816. "click": function () {
  7817. U.MD.D.I.openApplication(str, obj, info);
  7818. }
  7819. }
  7820. break;
  7821. case "MindMap":
  7822. aTool = 3;
  7823. _iframe = $$("iframe", {
  7824. "frameborder": "no",
  7825. "border": "0",
  7826. "scrolling ": "no",
  7827. "style": {
  7828. "cssText": "border:0;width:100%;height:100%"
  7829. },
  7830. "src": "//cloud.cocorobo.cn/mind/"
  7831. })
  7832. _box.appendChild(_iframe);
  7833. _box.appendChild(_jie);
  7834. _formdiv = new U.UF.UI.form(
  7835. "思维导图",
  7836. _box, { //"/jsmind/example/demo.html"
  7837. "id": "mind" + cid + stage + task + tool,
  7838. "style": {
  7839. "width": "90%",
  7840. "height": "90%",
  7841. "overflow": 'hidden'
  7842. },
  7843. "onresize": function () { }
  7844. }, {
  7845. closecallback: function () { }
  7846. }, {
  7847. "style": {
  7848. "height": "36px"
  7849. }
  7850. }).form; //创建窗体
  7851. _taskbar = {
  7852. "id": str + _formdiv.id,
  7853. "style": {
  7854. "backgroundImage": "url(/img/icon/mindMapping.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 "doc":
  7864. aTool = 6;
  7865. _iframe = $$("iframe", {
  7866. "frameborder": "no",
  7867. "border": "0",
  7868. "scrolling ": "no",
  7869. "style": {
  7870. "cssText": "border:0;width:100%;height:100%"
  7871. },
  7872. "src": "/Office/Word/WordEditArea.htm"
  7873. })
  7874. _box.appendChild(_iframe);
  7875. _box.appendChild(_jie);
  7876. _formdiv = new U.UF.UI.form(
  7877. "协同文档",
  7878. _box, {
  7879. "id": "doc" + cid + stage + task + tool,
  7880. "style": {
  7881. "width": "90%",
  7882. "height": "90%",
  7883. "overflow": 'hidden'
  7884. },
  7885. "onresize": function () { }
  7886. }, {
  7887. closecallback: function () { }
  7888. }, {
  7889. "style": {
  7890. "height": "36px"
  7891. }
  7892. }).form; //创建窗体
  7893. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7894. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7895. })
  7896. _taskbar = {
  7897. "id": str + _formdiv.id,
  7898. "style": {
  7899. "backgroundImage": "url(/img/icon/doc.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 "mindNetwork": //好友打开
  7909. aTool = 7;
  7910. _iframe = $$("iframe", {
  7911. "webkitallowfullscreen": "",
  7912. "mozallowfullscreen": "",
  7913. "allowfullscreen": "",
  7914. "frameborder": "no",
  7915. "border": "0",
  7916. "scrolling ": "no",
  7917. "style": {
  7918. "cssText": "border:0; width:100%; height:100%;"
  7919. },
  7920. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7921. })
  7922. _box.appendChild(_iframe);
  7923. _box.appendChild(_jie);
  7924. _formdiv = new U.UF.UI.form(
  7925. "思维网格",
  7926. _box, {
  7927. "id": "mindNetwork" + cid + stage + task + tool,
  7928. "style": {
  7929. "width": "90%",
  7930. "height": "90%",
  7931. "overflow": 'hidden'
  7932. },
  7933. "onresize": function () { }
  7934. }, {
  7935. closecallback: function () { }
  7936. }, {
  7937. "style": {
  7938. "height": "36px"
  7939. }
  7940. }).form; //创建窗体
  7941. _taskbar = {
  7942. "id": str + _formdiv.id,
  7943. "style": {
  7944. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7945. },
  7946. "name": "思维网格",
  7947. "forms": _formdiv,
  7948. "click": function () {
  7949. U.MD.D.I.openApplication(str, obj, info);
  7950. }
  7951. }
  7952. break;
  7953. case "courseDesign":
  7954. _iframe = $$("iframe", {
  7955. "webkitallowfullscreen": "",
  7956. "mozallowfullscreen": "",
  7957. "allowfullscreen": "",
  7958. "frameborder": "no",
  7959. "border": "0",
  7960. "scrolling ": "no",
  7961. "style": {
  7962. "cssText": "border:0; width:100%; height:100%;"
  7963. },
  7964. "src": "/course-design-vue"
  7965. })
  7966. _box.appendChild(_iframe);
  7967. _box.appendChild(_jie);
  7968. _formdiv = new U.UF.UI.form(
  7969. "项目设计",
  7970. _box, {
  7971. "id": "courseDesign" + cid + stage + task + tool,
  7972. "style": {
  7973. "width": "90%",
  7974. "height": "90%",
  7975. "overflow": 'hidden'
  7976. },
  7977. "onresize": function () { }
  7978. }, {
  7979. closecallback: function () { }
  7980. }, {
  7981. "style": {
  7982. "height": "36px"
  7983. }
  7984. }).form; //创建窗体
  7985. _taskbar = {
  7986. "id": str + _formdiv.id,
  7987. "style": {
  7988. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7989. },
  7990. "name": "项目设计",
  7991. "forms": _formdiv,
  7992. "click": function () {
  7993. U.MD.D.I.openApplication(str, obj, info);
  7994. }
  7995. }
  7996. break;
  7997. }
  7998. const script1 = document.createElement("script");
  7999. script1.type = "text/javascript";
  8000. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8001. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8002. const script2 = document.createElement("script");
  8003. script2.type = "text/javascript";
  8004. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8005. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8006. const script3 = document.createElement("script");
  8007. script3.type = "text/javascript";
  8008. script3.charset = "UTF-8";
  8009. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8010. const script4 = document.createElement("script");
  8011. script4.type = "text/javascript";
  8012. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8013. script4.src = window.origin + "/js/Common/jietu2E.js";
  8014. if (_iframe) {
  8015. if (str == 'doc') {
  8016. _iframe = _formdiv.querySelector('iframe')
  8017. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8018. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8019. _iframe.contentWindow.document.body.appendChild(script1);
  8020. _iframe.contentWindow.document.body.appendChild(script2);
  8021. // _iframe.contentWindow.document.body.appendChild(script3);
  8022. _iframe.contentWindow.document.body.appendChild(script4);
  8023. })
  8024. if (onloadListener) {
  8025. _iframe.contentDocument.location.reload()
  8026. } else {
  8027. _iframe.contentDocument.location.reload()
  8028. }
  8029. } else if (str == 'courseDesign') {
  8030. U.UF.DL.iframeLoad(_iframe, function () {
  8031. // _iframe.contentWindow.U.MD.O.W.load();
  8032. // _iframe.contentWindow.document.body.appendChild(script1);
  8033. _iframe.contentWindow.document.body.appendChild(script2);
  8034. _iframe.contentWindow.document.body.appendChild(script4);
  8035. })
  8036. } else if (str == 'mind') {
  8037. _iframe = _formdiv.querySelector('iframe')
  8038. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8039. //
  8040. _iframe.contentWindow.document.body.appendChild(script1);
  8041. _iframe.contentWindow.document.body.appendChild(script2);
  8042. _iframe.contentWindow.document.body.appendChild(script4);
  8043. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8044. })
  8045. if (onloadListener) {
  8046. _iframe.contentDocument.location.reload()
  8047. } else {
  8048. _iframe.contentDocument.location.reload()
  8049. }
  8050. } else if (str == 'whiteboard') {
  8051. _iframe = _formdiv.querySelector('iframe')
  8052. let onloadListener = _iframe.onload = () => {
  8053. _iframe.contentWindow.document.body.appendChild(script1);
  8054. _iframe.contentWindow.document.body.appendChild(script2);
  8055. _iframe.contentWindow.document.body.appendChild(script4);
  8056. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8057. };
  8058. // if (onloadListener) {
  8059. // try {
  8060. // _iframe.src += "?cocorobo="+new Date().getTime()
  8061. // _iframe.contentWindow.document.location.reload()
  8062. // } catch (error) {
  8063. // }
  8064. // } else {
  8065. // _iframe.contentDocument.location.reload()
  8066. // }
  8067. } else {
  8068. _iframe.onload = () => {
  8069. _iframe.contentWindow.document.body.appendChild(script1);
  8070. _iframe.contentWindow.document.body.appendChild(script2);
  8071. // _iframe.contentWindow.document.body.appendChild(script3);
  8072. _iframe.contentWindow.document.body.appendChild(script4);
  8073. };
  8074. }
  8075. _jie.onclick = async () => {
  8076. let text = ''
  8077. if (aTool == 1) {
  8078. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8079. } else if (aTool == 6) {
  8080. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8081. } else if (aTool == 3) {
  8082. text = await U.MD.D.I.getEditorContent(_iframe);
  8083. }
  8084. _loading.style.display = 'flex'
  8085. console.log(_loading);
  8086. var _ajs = _iframe.contentWindow.document.createElement("script");
  8087. _ajs.type = "text/javascript";
  8088. _ajs.innerHTML =
  8089. // 'console.log(' + _loading + ');\n' +
  8090. 'var _js = document.createElement("script");\n' +
  8091. '_js.type="text/javascript";\n' +
  8092. '_js.charset="UTF-8";\n' +
  8093. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8094. "_js.onload = function(){\n" +
  8095. ' var a = document.getElementsByTagName("img")\n' +
  8096. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8097. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8098. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8099. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8100. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8101. "beforeUpload_shishi(file," +
  8102. "'" +
  8103. _userid +
  8104. "'" +
  8105. ", " +
  8106. "'" +
  8107. _cid +
  8108. "'" +
  8109. ", " +
  8110. "'" +
  8111. _stage +
  8112. "'" +
  8113. ", " +
  8114. "'" +
  8115. _task +
  8116. "'" +
  8117. ", " +
  8118. "'" +
  8119. _tool +
  8120. "'" +
  8121. ", " +
  8122. "'" +
  8123. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8124. "'" +
  8125. ", " +
  8126. "'" +
  8127. aTool +
  8128. "'" +
  8129. ", " +
  8130. "`" +
  8131. text +
  8132. "`" +
  8133. ")\n" +
  8134. " });\n" +
  8135. "}\n" +
  8136. "document.head.appendChild(_js);\n";
  8137. _iframe.contentWindow.document.head.appendChild(_ajs);
  8138. }
  8139. }
  8140. //U.MD.D.I.openClick(str);
  8141. //如果有任务栏信息
  8142. // if (_taskbar) {
  8143. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8144. // }
  8145. }
  8146. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8147. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8148. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8149. _userid = student.userid, //登录用户id
  8150. _username = student.student //用户名字
  8151. let _iframe;
  8152. let _cid = cid,
  8153. _stage = stage,
  8154. _task = task,
  8155. _tool = tool;
  8156. var _jie = $$("div", {
  8157. "style": {
  8158. "position": "absolute",
  8159. "bottom": "50px",
  8160. "right": "50px",
  8161. "zIndex": "9999",
  8162. "backgroundColor": "#2268bc",
  8163. "color": "#fff",
  8164. "padding": "12px 20px",
  8165. "cursor": "pointer",
  8166. "borderRadius": "4px",
  8167. },
  8168. "innerHTML": "提交作业"
  8169. })
  8170. let aTool = ''
  8171. let _loading = document.createElement('div')
  8172. _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;"
  8173. // _loading.id = "";
  8174. let _lchild = document.createElement('div')
  8175. let _limg = document.createElement('img')
  8176. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8177. _limg.style = "width: 26px;margin-right: 10px;"
  8178. _lchild.appendChild(_limg)
  8179. let _lspan = document.createElement('span')
  8180. _lspan.innerHTML = "上传中..."
  8181. _lchild.appendChild(_lspan)
  8182. _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%);"
  8183. _loading.appendChild(_lchild)
  8184. var _box = $$('div', {
  8185. "style": {
  8186. "position": "relative",
  8187. "width": "100%",
  8188. "height": "100%",
  8189. },
  8190. })
  8191. _box.appendChild(_loading)
  8192. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8193. switch (str) {
  8194. case "whiteboard":
  8195. aTool = 1;
  8196. _iframe = $$("iframe", {
  8197. "frameborder": "no",
  8198. "border": "0",
  8199. "scrolling ": "no",
  8200. "style": {
  8201. "cssText": "border:0;width:100%;height:100%"
  8202. },
  8203. "src": "https://beta.iwb.cocorobo.cn/"
  8204. })
  8205. _box.appendChild(_iframe);
  8206. _box.appendChild(_jie);
  8207. _formdiv = new U.UF.UI.form(
  8208. "电子白板-" + _username,
  8209. _box, {
  8210. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8211. "style": {
  8212. "width": "90%",
  8213. "height": "90%",
  8214. "overflow": 'hidden'
  8215. },
  8216. "onresize": function () { }
  8217. }, {
  8218. closecallback: function () { }
  8219. }, {
  8220. "style": {
  8221. "height": "36px"
  8222. }
  8223. }).form; //创建窗体
  8224. _taskbar = {
  8225. "id": str + _formdiv.id,
  8226. "style": {
  8227. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8228. },
  8229. "name": "电子白板",
  8230. "forms": _formdiv,
  8231. "click": function () {
  8232. U.MD.D.I.openApplication(str, obj, info);
  8233. }
  8234. }
  8235. break;
  8236. case "mind":
  8237. aTool = 3;
  8238. _iframe = $$("iframe", {
  8239. "frameborder": "no",
  8240. "border": "0",
  8241. "scrolling ": "no",
  8242. "style": {
  8243. "cssText": "border:0;width:100%;height:100%"
  8244. },
  8245. "src": "/kityminder-editor/dist/index.html"
  8246. })
  8247. _box.appendChild(_iframe);
  8248. _box.appendChild(_jie);
  8249. _formdiv = new U.UF.UI.form(
  8250. "思维导图-" + _username,
  8251. _box, { //"/jsmind/example/demo.html"
  8252. "id": "mind" + cid + stage + task + tool + _userid,
  8253. "style": {
  8254. "width": "90%",
  8255. "height": "90%",
  8256. "overflow": 'hidden'
  8257. },
  8258. "onresize": function () { }
  8259. }, {
  8260. closecallback: function () { }
  8261. }, {
  8262. "style": {
  8263. "height": "36px"
  8264. }
  8265. }).form; //创建窗体
  8266. _taskbar = {
  8267. "id": str + _formdiv.id,
  8268. "style": {
  8269. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8270. },
  8271. "name": "思维导图",
  8272. "forms": _formdiv,
  8273. "click": function () {
  8274. U.MD.D.I.openApplication(str, obj, info);
  8275. }
  8276. }
  8277. break;
  8278. case "MindMap":
  8279. aTool = 3;
  8280. _iframe = $$("iframe", {
  8281. "frameborder": "no",
  8282. "border": "0",
  8283. "scrolling ": "no",
  8284. "style": {
  8285. "cssText": "border:0;width:100%;height:100%"
  8286. },
  8287. "src": "//cloud.cocorobo.cn/mind/"
  8288. })
  8289. _box.appendChild(_iframe);
  8290. _box.appendChild(_jie);
  8291. _formdiv = new U.UF.UI.form(
  8292. "思维导图-" + _username,
  8293. _box, { //"/jsmind/example/demo.html"
  8294. "id": "mind" + cid + stage + task + tool + _userid,
  8295. "style": {
  8296. "width": "90%",
  8297. "height": "90%",
  8298. "overflow": 'hidden'
  8299. },
  8300. "onresize": function () { }
  8301. }, {
  8302. closecallback: function () { }
  8303. }, {
  8304. "style": {
  8305. "height": "36px"
  8306. }
  8307. }).form; //创建窗体
  8308. _taskbar = {
  8309. "id": str + _formdiv.id,
  8310. "style": {
  8311. "backgroundImage": "url(/img/icon/mindMapping.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 "doc":
  8321. aTool = 6;
  8322. _iframe = $$("iframe", {
  8323. "frameborder": "no",
  8324. "border": "0",
  8325. "scrolling ": "no",
  8326. "style": {
  8327. "cssText": "border:0;width:100%;height:100%"
  8328. },
  8329. "src": "/Office/Word/WordEditArea.htm"
  8330. })
  8331. _box.appendChild(_iframe);
  8332. _box.appendChild(_jie);
  8333. _formdiv = new U.UF.UI.form(
  8334. "协同文档-" + _username,
  8335. _box, {
  8336. "id": "doc" + cid + stage + task + tool + _userid,
  8337. "style": {
  8338. "width": "90%",
  8339. "height": "90%",
  8340. "overflow": 'hidden'
  8341. },
  8342. "onresize": function () { }
  8343. }, {
  8344. closecallback: function () { }
  8345. }, {
  8346. "style": {
  8347. "height": "36px"
  8348. }
  8349. }).form; //创建窗体
  8350. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8351. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8352. })
  8353. _taskbar = {
  8354. "id": str + _formdiv.id,
  8355. "style": {
  8356. "backgroundImage": "url(/img/icon/doc.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 "mindNetwork": //好友打开
  8366. aTool = 7;
  8367. _iframe = $$("iframe", {
  8368. "webkitallowfullscreen": "",
  8369. "mozallowfullscreen": "",
  8370. "allowfullscreen": "",
  8371. "frameborder": "no",
  8372. "border": "0",
  8373. "scrolling ": "no",
  8374. "style": {
  8375. "cssText": "border:0; width:100%; height:100%;"
  8376. },
  8377. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8378. })
  8379. _box.appendChild(_iframe);
  8380. _box.appendChild(_jie);
  8381. _formdiv = new U.UF.UI.form(
  8382. "思维网格-" + _username,
  8383. _box, {
  8384. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8385. "style": {
  8386. "width": "90%",
  8387. "height": "90%",
  8388. "overflow": 'hidden'
  8389. },
  8390. "onresize": function () { }
  8391. }, {
  8392. closecallback: function () { }
  8393. }, {
  8394. "style": {
  8395. "height": "36px"
  8396. }
  8397. }).form; //创建窗体
  8398. _taskbar = {
  8399. "id": str + _formdiv.id,
  8400. "style": {
  8401. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8402. },
  8403. "name": "思维网格",
  8404. "forms": _formdiv,
  8405. "click": function () {
  8406. U.MD.D.I.openApplication(str, obj, info);
  8407. }
  8408. }
  8409. break;
  8410. case "courseDesign":
  8411. _iframe = $$("iframe", {
  8412. "webkitallowfullscreen": "",
  8413. "mozallowfullscreen": "",
  8414. "allowfullscreen": "",
  8415. "frameborder": "no",
  8416. "border": "0",
  8417. "scrolling ": "no",
  8418. "style": {
  8419. "cssText": "border:0; width:100%; height:100%;"
  8420. },
  8421. "src": "/course-design-vue"
  8422. })
  8423. _box.appendChild(_iframe);
  8424. _box.appendChild(_jie);
  8425. _formdiv = new U.UF.UI.form(
  8426. "项目设计-" + _username,
  8427. _box, {
  8428. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8429. "style": {
  8430. "width": "90%",
  8431. "height": "90%",
  8432. "overflow": 'hidden'
  8433. },
  8434. "onresize": function () { }
  8435. }, {
  8436. closecallback: function () { }
  8437. }, {
  8438. "style": {
  8439. "height": "36px"
  8440. }
  8441. }).form; //创建窗体
  8442. _taskbar = {
  8443. "id": str + _formdiv.id,
  8444. "style": {
  8445. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8446. },
  8447. "name": "项目设计",
  8448. "forms": _formdiv,
  8449. "click": function () {
  8450. U.MD.D.I.openApplication(str, obj, info);
  8451. }
  8452. }
  8453. break;
  8454. }
  8455. const script1 = document.createElement("script");
  8456. script1.type = "text/javascript";
  8457. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8458. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8459. const script2 = document.createElement("script");
  8460. script2.type = "text/javascript";
  8461. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8462. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8463. const script3 = document.createElement("script");
  8464. script3.type = "text/javascript";
  8465. script3.charset = "UTF-8";
  8466. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8467. const script4 = document.createElement("script");
  8468. script4.type = "text/javascript";
  8469. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8470. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8471. if (_iframe) {
  8472. if (str == 'doc') {
  8473. _iframe = _formdiv.querySelector('iframe')
  8474. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8475. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8476. _iframe.contentWindow.document.body.appendChild(script1);
  8477. _iframe.contentWindow.document.body.appendChild(script2);
  8478. // _iframe.contentWindow.document.body.appendChild(script3);
  8479. _iframe.contentWindow.document.body.appendChild(script4);
  8480. })
  8481. if (onloadListener) {
  8482. _iframe.contentDocument.location.reload()
  8483. } else {
  8484. _iframe.contentDocument.location.reload()
  8485. }
  8486. } else if (str == 'courseDesign') {
  8487. U.UF.DL.iframeLoad(_iframe, function () {
  8488. // _iframe.contentWindow.U.MD.O.W.load();
  8489. // _iframe.contentWindow.document.body.appendChild(script1);
  8490. _iframe.contentWindow.document.body.appendChild(script2);
  8491. _iframe.contentWindow.document.body.appendChild(script4);
  8492. })
  8493. } else if (str == 'mind') {
  8494. _iframe = _formdiv.querySelector('iframe')
  8495. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8496. //
  8497. _iframe.contentWindow.document.body.appendChild(script1);
  8498. _iframe.contentWindow.document.body.appendChild(script2);
  8499. _iframe.contentWindow.document.body.appendChild(script4);
  8500. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8501. })
  8502. if (onloadListener) {
  8503. _iframe.contentDocument.location.reload()
  8504. } else {
  8505. _iframe.contentDocument.location.reload()
  8506. }
  8507. } else if (str == 'whiteboard') {
  8508. _iframe = _formdiv.querySelector('iframe')
  8509. let onloadListener = _iframe.onload = () => {
  8510. _iframe.contentWindow.document.body.appendChild(script1);
  8511. _iframe.contentWindow.document.body.appendChild(script2);
  8512. _iframe.contentWindow.document.body.appendChild(script4);
  8513. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8514. };
  8515. // if (onloadListener) {
  8516. // try {
  8517. // _iframe.src += "?cocorobo="+new Date().getTime()
  8518. // _iframe.contentWindow.document.location.reload()
  8519. // } catch (error) {
  8520. // }
  8521. // } else {
  8522. // _iframe.contentDocument.location.reload()
  8523. // }
  8524. } else {
  8525. _iframe.onload = () => {
  8526. _iframe.contentWindow.document.body.appendChild(script1);
  8527. _iframe.contentWindow.document.body.appendChild(script2);
  8528. // _iframe.contentWindow.document.body.appendChild(script3);
  8529. _iframe.contentWindow.document.body.appendChild(script4);
  8530. };
  8531. }
  8532. _jie.onclick = async () => {
  8533. let text = ''
  8534. if (aTool == 1) {
  8535. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8536. } else if (aTool == 6) {
  8537. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8538. } else if (aTool == 3) {
  8539. text = await U.MD.D.I.getEditorContent(_iframe);
  8540. }
  8541. _loading.style.display = 'flex'
  8542. console.log(_loading);
  8543. var _ajs = _iframe.contentWindow.document.createElement("script");
  8544. _ajs.type = "text/javascript";
  8545. _ajs.innerHTML =
  8546. // 'console.log(' + _loading + ');\n' +
  8547. 'var _js = document.createElement("script");\n' +
  8548. '_js.type="text/javascript";\n' +
  8549. '_js.charset="UTF-8";\n' +
  8550. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8551. "_js.onload = function(){\n" +
  8552. ' var a = document.getElementsByTagName("img")\n' +
  8553. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8554. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8555. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8556. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8557. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8558. "beforeUpload_shishi(file," +
  8559. "'" +
  8560. _userid +
  8561. "'" +
  8562. ", " +
  8563. "'" +
  8564. _cid +
  8565. "'" +
  8566. ", " +
  8567. "'" +
  8568. _stage +
  8569. "'" +
  8570. ", " +
  8571. "'" +
  8572. _task +
  8573. "'" +
  8574. ", " +
  8575. "'" +
  8576. _tool +
  8577. "'" +
  8578. ", " +
  8579. "'" +
  8580. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8581. "'" +
  8582. ", " +
  8583. "'" +
  8584. aTool +
  8585. "'" +
  8586. ", " +
  8587. "`" +
  8588. text +
  8589. "`" +
  8590. ")\n" +
  8591. " });\n" +
  8592. "}\n" +
  8593. "document.head.appendChild(_js);\n";
  8594. _iframe.contentWindow.document.head.appendChild(_ajs);
  8595. }
  8596. }
  8597. }
  8598. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8599. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8600. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8601. _userid = student.userid, //登录用户id
  8602. _username = student.student //用户名字
  8603. let _iframe;
  8604. let _cid = cid,
  8605. _stage = stage,
  8606. _task = task,
  8607. _tool = tool;
  8608. var _jie = $$("div", {
  8609. "style": {
  8610. "position": "absolute",
  8611. "bottom": "50px",
  8612. "right": "50px",
  8613. "zIndex": "9999",
  8614. "backgroundColor": "#2268bc",
  8615. "color": "#fff",
  8616. "padding": "12px 20px",
  8617. "cursor": "pointer",
  8618. "borderRadius": "4px",
  8619. },
  8620. "innerHTML": "提交作业"
  8621. })
  8622. let aTool = ''
  8623. let _loading = document.createElement('div')
  8624. _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;"
  8625. // _loading.id = "";
  8626. let _lchild = document.createElement('div')
  8627. let _limg = document.createElement('img')
  8628. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8629. _limg.style = "width: 26px;margin-right: 10px;"
  8630. _lchild.appendChild(_limg)
  8631. let _lspan = document.createElement('span')
  8632. _lspan.innerHTML = "上传中..."
  8633. _lchild.appendChild(_lspan)
  8634. _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%);"
  8635. _loading.appendChild(_lchild)
  8636. var _box = $$('div', {
  8637. "style": {
  8638. "position": "relative",
  8639. "width": "100%",
  8640. "height": "100%",
  8641. },
  8642. })
  8643. _box.appendChild(_loading)
  8644. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8645. switch (str) {
  8646. case "whiteboard":
  8647. aTool = 1;
  8648. _iframe = $$("iframe", {
  8649. "frameborder": "no",
  8650. "border": "0",
  8651. "scrolling ": "no",
  8652. "style": {
  8653. "cssText": "border:0;width:100%;height:100%"
  8654. },
  8655. "src": "https://beta.iwb.cocorobo.cn/"
  8656. })
  8657. _box.appendChild(_iframe);
  8658. _box.appendChild(_jie);
  8659. _formdiv = new U.UF.UI.form(
  8660. "电子白板-" + _username,
  8661. _box, {
  8662. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8663. "style": {
  8664. "width": "90%",
  8665. "height": "90%",
  8666. "overflow": 'hidden'
  8667. },
  8668. "onresize": function () { }
  8669. }, {
  8670. closecallback: function () { }
  8671. }, {
  8672. "style": {
  8673. "height": "36px"
  8674. }
  8675. }).form; //创建窗体
  8676. _taskbar = {
  8677. "id": str + _formdiv.id,
  8678. "style": {
  8679. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8680. },
  8681. "name": "电子白板",
  8682. "forms": _formdiv,
  8683. "click": function () {
  8684. U.MD.D.I.openApplication(str, obj, info);
  8685. }
  8686. }
  8687. break;
  8688. case "mind":
  8689. aTool = 3;
  8690. _iframe = $$("iframe", {
  8691. "frameborder": "no",
  8692. "border": "0",
  8693. "scrolling ": "no",
  8694. "style": {
  8695. "cssText": "border:0;width:100%;height:100%"
  8696. },
  8697. "src": "/kityminder-editor/dist/index.html"
  8698. })
  8699. _box.appendChild(_iframe);
  8700. _box.appendChild(_jie);
  8701. _formdiv = new U.UF.UI.form(
  8702. "思维导图-" + _username,
  8703. _box, { //"/jsmind/example/demo.html"
  8704. "id": "mind" + cid + stage + task + tool + _userid,
  8705. "style": {
  8706. "width": "90%",
  8707. "height": "90%",
  8708. "overflow": 'hidden'
  8709. },
  8710. "onresize": function () { }
  8711. }, {
  8712. closecallback: function () { }
  8713. }, {
  8714. "style": {
  8715. "height": "36px"
  8716. }
  8717. }).form; //创建窗体
  8718. _taskbar = {
  8719. "id": str + _formdiv.id,
  8720. "style": {
  8721. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8722. },
  8723. "name": "思维导图",
  8724. "forms": _formdiv,
  8725. "click": function () {
  8726. U.MD.D.I.openApplication(str, obj, info);
  8727. }
  8728. }
  8729. break;
  8730. case "MindMap":
  8731. aTool = 3;
  8732. _iframe = $$("iframe", {
  8733. "frameborder": "no",
  8734. "border": "0",
  8735. "scrolling ": "no",
  8736. "style": {
  8737. "cssText": "border:0;width:100%;height:100%"
  8738. },
  8739. "src": "//cloud.cocorobo.cn/mind/"
  8740. })
  8741. _box.appendChild(_iframe);
  8742. _box.appendChild(_jie);
  8743. _formdiv = new U.UF.UI.form(
  8744. "思维导图-" + _username,
  8745. _box, { //"/jsmind/example/demo.html"
  8746. "id": "mind" + cid + stage + task + tool + _userid,
  8747. "style": {
  8748. "width": "90%",
  8749. "height": "90%",
  8750. "overflow": 'hidden'
  8751. },
  8752. "onresize": function () { }
  8753. }, {
  8754. closecallback: function () { }
  8755. }, {
  8756. "style": {
  8757. "height": "36px"
  8758. }
  8759. }).form; //创建窗体
  8760. _taskbar = {
  8761. "id": str + _formdiv.id,
  8762. "style": {
  8763. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8764. },
  8765. "name": "思维导图",
  8766. "forms": _formdiv,
  8767. "click": function () {
  8768. U.MD.D.I.openApplication(str, obj, info);
  8769. }
  8770. }
  8771. break;
  8772. case "doc":
  8773. aTool = 6;
  8774. _iframe = $$("iframe", {
  8775. "frameborder": "no",
  8776. "border": "0",
  8777. "scrolling ": "no",
  8778. "style": {
  8779. "cssText": "border:0;width:100%;height:100%"
  8780. },
  8781. "src": "/Office/Word/WordEditArea.htm"
  8782. })
  8783. _box.appendChild(_iframe);
  8784. _box.appendChild(_jie);
  8785. _formdiv = new U.UF.UI.form(
  8786. "协同文档-" + _username,
  8787. _box, {
  8788. "id": "doc" + cid + stage + task + tool + _userid,
  8789. "style": {
  8790. "width": "90%",
  8791. "height": "90%",
  8792. "overflow": 'hidden'
  8793. },
  8794. "onresize": function () { }
  8795. }, {
  8796. closecallback: function () { }
  8797. }, {
  8798. "style": {
  8799. "height": "36px"
  8800. }
  8801. }).form; //创建窗体
  8802. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8803. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8804. })
  8805. _taskbar = {
  8806. "id": str + _formdiv.id,
  8807. "style": {
  8808. "backgroundImage": "url(/img/icon/doc.png)"
  8809. },
  8810. "name": "协同文档",
  8811. "forms": _formdiv,
  8812. "click": function () {
  8813. U.MD.D.I.openApplication(str, obj, info);
  8814. }
  8815. }
  8816. break;
  8817. case "mindNetwork": //好友打开
  8818. aTool = 7;
  8819. _iframe = $$("iframe", {
  8820. "webkitallowfullscreen": "",
  8821. "mozallowfullscreen": "",
  8822. "allowfullscreen": "",
  8823. "frameborder": "no",
  8824. "border": "0",
  8825. "scrolling ": "no",
  8826. "style": {
  8827. "cssText": "border:0; width:100%; height:100%;"
  8828. },
  8829. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8830. })
  8831. _box.appendChild(_iframe);
  8832. _box.appendChild(_jie);
  8833. _formdiv = new U.UF.UI.form(
  8834. "思维网格-" + _username,
  8835. _box, {
  8836. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8837. "style": {
  8838. "width": "90%",
  8839. "height": "90%",
  8840. "overflow": 'hidden'
  8841. },
  8842. "onresize": function () { }
  8843. }, {
  8844. closecallback: function () { }
  8845. }, {
  8846. "style": {
  8847. "height": "36px"
  8848. }
  8849. }).form; //创建窗体
  8850. _taskbar = {
  8851. "id": str + _formdiv.id,
  8852. "style": {
  8853. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8854. },
  8855. "name": "思维网格",
  8856. "forms": _formdiv,
  8857. "click": function () {
  8858. U.MD.D.I.openApplication(str, obj, info);
  8859. }
  8860. }
  8861. break;
  8862. case "courseDesign":
  8863. _iframe = $$("iframe", {
  8864. "webkitallowfullscreen": "",
  8865. "mozallowfullscreen": "",
  8866. "allowfullscreen": "",
  8867. "frameborder": "no",
  8868. "border": "0",
  8869. "scrolling ": "no",
  8870. "style": {
  8871. "cssText": "border:0; width:100%; height:100%;"
  8872. },
  8873. "src": "/course-design-vue"
  8874. })
  8875. _box.appendChild(_iframe);
  8876. _box.appendChild(_jie);
  8877. _formdiv = new U.UF.UI.form(
  8878. "项目设计-" + _username,
  8879. _box, {
  8880. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8881. "style": {
  8882. "width": "90%",
  8883. "height": "90%",
  8884. "overflow": 'hidden'
  8885. },
  8886. "onresize": function () { }
  8887. }, {
  8888. closecallback: function () { }
  8889. }, {
  8890. "style": {
  8891. "height": "36px"
  8892. }
  8893. }).form; //创建窗体
  8894. _taskbar = {
  8895. "id": str + _formdiv.id,
  8896. "style": {
  8897. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8898. },
  8899. "name": "项目设计",
  8900. "forms": _formdiv,
  8901. "click": function () {
  8902. U.MD.D.I.openApplication(str, obj, info);
  8903. }
  8904. }
  8905. break;
  8906. }
  8907. const script1 = document.createElement("script");
  8908. script1.type = "text/javascript";
  8909. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8910. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8911. const script2 = document.createElement("script");
  8912. script2.type = "text/javascript";
  8913. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8914. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8915. const script3 = document.createElement("script");
  8916. script3.type = "text/javascript";
  8917. script3.charset = "UTF-8";
  8918. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8919. const script4 = document.createElement("script");
  8920. script4.type = "text/javascript";
  8921. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8922. script4.src = window.origin + "/js/Common/jietu2E.js";
  8923. if (_iframe) {
  8924. if (str == 'doc') {
  8925. _iframe = _formdiv.querySelector('iframe')
  8926. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8927. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8928. _iframe.contentWindow.document.body.appendChild(script1);
  8929. _iframe.contentWindow.document.body.appendChild(script2);
  8930. // _iframe.contentWindow.document.body.appendChild(script3);
  8931. _iframe.contentWindow.document.body.appendChild(script4);
  8932. })
  8933. if (onloadListener) {
  8934. _iframe.contentDocument.location.reload()
  8935. } else {
  8936. _iframe.contentDocument.location.reload()
  8937. }
  8938. } else if (str == 'courseDesign') {
  8939. U.UF.DL.iframeLoad(_iframe, function () {
  8940. // _iframe.contentWindow.U.MD.O.W.load();
  8941. // _iframe.contentWindow.document.body.appendChild(script1);
  8942. _iframe.contentWindow.document.body.appendChild(script2);
  8943. _iframe.contentWindow.document.body.appendChild(script4);
  8944. })
  8945. } else if (str == 'mind') {
  8946. _iframe = _formdiv.querySelector('iframe')
  8947. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8948. //
  8949. _iframe.contentWindow.document.body.appendChild(script1);
  8950. _iframe.contentWindow.document.body.appendChild(script2);
  8951. _iframe.contentWindow.document.body.appendChild(script4);
  8952. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8953. })
  8954. if (onloadListener) {
  8955. _iframe.contentDocument.location.reload()
  8956. } else {
  8957. _iframe.contentDocument.location.reload()
  8958. }
  8959. } else if (str == 'whiteboard') {
  8960. _iframe = _formdiv.querySelector('iframe')
  8961. let onloadListener = _iframe.onload = () => {
  8962. _iframe.contentWindow.document.body.appendChild(script1);
  8963. _iframe.contentWindow.document.body.appendChild(script2);
  8964. _iframe.contentWindow.document.body.appendChild(script4);
  8965. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8966. };
  8967. // if (onloadListener) {
  8968. // try {
  8969. // _iframe.src += "?cocorobo="+new Date().getTime()
  8970. // _iframe.contentWindow.document.location.reload()
  8971. // } catch (error) {
  8972. // }
  8973. // } else {
  8974. // _iframe.contentDocument.location.reload()
  8975. // }
  8976. } else {
  8977. _iframe.onload = () => {
  8978. _iframe.contentWindow.document.body.appendChild(script1);
  8979. _iframe.contentWindow.document.body.appendChild(script2);
  8980. // _iframe.contentWindow.document.body.appendChild(script3);
  8981. _iframe.contentWindow.document.body.appendChild(script4);
  8982. };
  8983. }
  8984. _jie.onclick = async () => {
  8985. let text = ''
  8986. if (aTool == 1) {
  8987. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8988. } else if (aTool == 6) {
  8989. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8990. } else if (aTool == 3) {
  8991. text = await U.MD.D.I.getEditorContent(_iframe);
  8992. }
  8993. _loading.style.display = 'flex'
  8994. console.log(_loading);
  8995. var _ajs = _iframe.contentWindow.document.createElement("script");
  8996. _ajs.type = "text/javascript";
  8997. _ajs.innerHTML =
  8998. // 'console.log(' + _loading + ');\n' +
  8999. 'var _js = document.createElement("script");\n' +
  9000. '_js.type="text/javascript";\n' +
  9001. '_js.charset="UTF-8";\n' +
  9002. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9003. "_js.onload = function(){\n" +
  9004. ' var a = document.getElementsByTagName("img")\n' +
  9005. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9006. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9007. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9008. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9009. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9010. "beforeUpload_shishi(file," +
  9011. "'" +
  9012. _userid +
  9013. "'" +
  9014. ", " +
  9015. "'" +
  9016. _cid +
  9017. "'" +
  9018. ", " +
  9019. "'" +
  9020. _stage +
  9021. "'" +
  9022. ", " +
  9023. "'" +
  9024. _task +
  9025. "'" +
  9026. ", " +
  9027. "'" +
  9028. _tool +
  9029. "'" +
  9030. ", " +
  9031. "'" +
  9032. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9033. "'" +
  9034. ", " +
  9035. "'" +
  9036. aTool +
  9037. "'" +
  9038. ", " +
  9039. "`" +
  9040. text +
  9041. "`" +
  9042. ")\n" +
  9043. " });\n" +
  9044. "}\n" +
  9045. "document.head.appendChild(_js);\n";
  9046. _iframe.contentWindow.document.head.appendChild(_ajs);
  9047. }
  9048. }
  9049. }
  9050. U.MD.D.I.getEditorContent = function (iframe) {
  9051. return new Promise((resolve, reject) => {
  9052. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9053. console.log(content);
  9054. resolve(content)
  9055. });
  9056. });
  9057. }
  9058. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9059. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9060. // if (res.value[0].length > 0) {
  9061. // // resolve(res.value[0][0].text);
  9062. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9063. // $(fileInput).val('');
  9064. // });
  9065. // }
  9066. // }, [], { "type": "GET", "withCredentials": true });
  9067. var xmlhttp;
  9068. var Mac, Sn, DeviceId
  9069. if (window.XMLHttpRequest) {
  9070. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9071. xmlhttp = new XMLHttpRequest();
  9072. } else {
  9073. // IE6, IE5 浏览器执行代码
  9074. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9075. }
  9076. xmlhttp.onreadystatechange = function () {
  9077. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9078. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9079. // resolve(res.value[0][0].text);
  9080. if (type == '2') {
  9081. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9082. } else if (type == '3') {
  9083. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9084. }
  9085. } else {
  9086. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9087. }
  9088. }
  9089. }
  9090. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9091. xmlhttp.send();
  9092. }
  9093. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9094. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9095. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9096. _userinfo = US.userInfo, //登录用户信息
  9097. _userid = US.userInfo.userid //登录用户id
  9098. let _iframe;
  9099. let _cid = cid,
  9100. _stage = stage,
  9101. _task = task,
  9102. _tool = tool;
  9103. var _jie = $$("div", {
  9104. "style": {
  9105. "position": "absolute",
  9106. "bottom": "50px",
  9107. "right": "50px",
  9108. "zIndex": "9999",
  9109. "backgroundColor": "#2268bc",
  9110. "color": "#fff",
  9111. "padding": "12px 20px",
  9112. "cursor": "pointer",
  9113. "borderRadius": "4px",
  9114. },
  9115. "innerHTML": "确认并提交"
  9116. })
  9117. let aTool = ''
  9118. let _loading = document.createElement('div')
  9119. _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;"
  9120. // _loading.id = "";
  9121. let _lchild = document.createElement('div')
  9122. let _limg = document.createElement('img')
  9123. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9124. _limg.style = "width: 26px;margin-right: 10px;"
  9125. _lchild.appendChild(_limg)
  9126. let _lspan = document.createElement('span')
  9127. _lspan.innerHTML = "上传中..."
  9128. _lchild.appendChild(_lspan)
  9129. _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%);"
  9130. _loading.appendChild(_lchild)
  9131. var _box = $$('div', {
  9132. "style": {
  9133. "position": "relative",
  9134. "width": "100%",
  9135. "height": "100%",
  9136. },
  9137. })
  9138. _box.appendChild(_loading)
  9139. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9140. switch (str) {
  9141. case "whiteboard":
  9142. aTool = 1;
  9143. _iframe = $$("iframe", {
  9144. "frameborder": "no",
  9145. "border": "0",
  9146. "scrolling ": "no",
  9147. "style": {
  9148. "cssText": "border:0;width:100%;height:100%"
  9149. },
  9150. "src": "https://beta.iwb.cocorobo.cn/"
  9151. })
  9152. _box.appendChild(_iframe);
  9153. _box.appendChild(_jie);
  9154. _formdiv = new U.UF.UI.form(
  9155. "电子白板",
  9156. _box, {
  9157. "id": "whiteboards" + cid + stage + task + tool,
  9158. "style": {
  9159. "width": "90%",
  9160. "height": "90%",
  9161. "overflow": 'hidden'
  9162. },
  9163. "onresize": function () { }
  9164. }, {
  9165. closecallback: function () { }
  9166. }, {
  9167. "style": {
  9168. "height": "36px"
  9169. }
  9170. }).form; //创建窗体
  9171. _taskbar = {
  9172. "id": str + _formdiv.id,
  9173. "style": {
  9174. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9175. },
  9176. "name": "电子白板",
  9177. "forms": _formdiv,
  9178. "click": function () {
  9179. U.MD.D.I.openApplication(str, obj, info);
  9180. }
  9181. }
  9182. break;
  9183. case "mind":
  9184. aTool = 3;
  9185. _iframe = $$("iframe", {
  9186. "frameborder": "no",
  9187. "border": "0",
  9188. "scrolling ": "no",
  9189. "style": {
  9190. "cssText": "border:0;width:100%;height:100%"
  9191. },
  9192. "src": "/kityminder-editor/dist/index.html"
  9193. });
  9194. _box.appendChild(_iframe);
  9195. _box.appendChild(_jie);
  9196. _formdiv = new U.UF.UI.form(
  9197. "思维导图",
  9198. _box, { //"/jsmind/example/demo.html"
  9199. "id": "minds" + cid + stage + task + tool,
  9200. "style": {
  9201. "width": "90%",
  9202. "height": "90%",
  9203. "overflow": 'hidden'
  9204. },
  9205. "onresize": function () { }
  9206. }, {
  9207. closecallback: function () { }
  9208. }, {
  9209. "style": {
  9210. "height": "36px"
  9211. }
  9212. }).form; //创建窗体
  9213. _taskbar = {
  9214. "id": str + _formdiv.id,
  9215. "style": {
  9216. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9217. },
  9218. "name": "思维导图",
  9219. "forms": _formdiv,
  9220. "click": function () {
  9221. U.MD.D.I.openApplication(str, obj, info);
  9222. }
  9223. }
  9224. break;
  9225. case "doc":
  9226. aTool = 6;
  9227. _iframe = $$("iframe", {
  9228. "frameborder": "no",
  9229. "border": "0",
  9230. "scrolling ": "no",
  9231. "style": {
  9232. "cssText": "border:0;width:100%;height:100%"
  9233. },
  9234. "src": "/Office/Word/WordEditArea.htm"
  9235. })
  9236. _box.appendChild(_iframe);
  9237. _box.appendChild(_jie);
  9238. _formdiv = new U.UF.UI.form(
  9239. "协同文档",
  9240. _box, {
  9241. "id": "docs" + cid + stage + task + tool,
  9242. "style": {
  9243. "width": "90%",
  9244. "height": "90%",
  9245. "overflow": 'hidden'
  9246. },
  9247. "onresize": function () { }
  9248. }, {
  9249. closecallback: function () { }
  9250. }, {
  9251. "style": {
  9252. "height": "36px"
  9253. }
  9254. }).form; //创建窗体
  9255. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9256. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9257. })
  9258. _taskbar = {
  9259. "id": str + _formdiv.id,
  9260. "style": {
  9261. "backgroundImage": "url(/img/icon/doc.png)"
  9262. },
  9263. "name": "协同文档",
  9264. "forms": _formdiv,
  9265. "click": function () {
  9266. U.MD.D.I.openApplication(str, obj, info);
  9267. }
  9268. }
  9269. break;
  9270. }
  9271. const script1 = document.createElement("script");
  9272. script1.type = "text/javascript";
  9273. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9274. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9275. const script2 = document.createElement("script");
  9276. script2.type = "text/javascript";
  9277. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9278. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9279. const script3 = document.createElement("script");
  9280. script3.type = "text/javascript";
  9281. script3.charset = "UTF-8";
  9282. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9283. const script4 = document.createElement("script");
  9284. script4.type = "text/javascript";
  9285. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9286. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9287. if (_iframe) {
  9288. if (str == 'doc') {
  9289. _iframe = _formdiv.querySelector('iframe')
  9290. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9291. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9292. _iframe.contentWindow.document.body.appendChild(script1);
  9293. _iframe.contentWindow.document.body.appendChild(script2);
  9294. // _iframe.contentWindow.document.body.appendChild(script3);
  9295. _iframe.contentWindow.document.body.appendChild(script4);
  9296. })
  9297. if (onloadListener) {
  9298. _iframe.contentDocument.location.reload()
  9299. } else {
  9300. _iframe.contentDocument.location.reload()
  9301. }
  9302. } else if (str == 'mind') {
  9303. _iframe = _formdiv.querySelector('iframe')
  9304. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9305. _iframe.contentWindow.document.body.appendChild(script1);
  9306. _iframe.contentWindow.document.body.appendChild(script2);
  9307. _iframe.contentWindow.document.body.appendChild(script4);
  9308. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9309. })
  9310. if (onloadListener) {
  9311. _iframe.contentDocument.location.reload()
  9312. } else {
  9313. _iframe.contentDocument.location.reload()
  9314. }
  9315. } else {
  9316. _iframe.onload = () => {
  9317. _iframe.contentWindow.document.body.appendChild(script1);
  9318. _iframe.contentWindow.document.body.appendChild(script2);
  9319. // _iframe.contentWindow.document.body.appendChild(script3);
  9320. _iframe.contentWindow.document.body.appendChild(script4);
  9321. };
  9322. }
  9323. _jie.onclick = async () => {
  9324. let text = ''
  9325. if (aTool == 6) {
  9326. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9327. } else if (aTool == 3) {
  9328. text = await U.MD.D.I.getEditorContent(_iframe);
  9329. }
  9330. _loading.style.display = 'flex'
  9331. console.log(_loading);
  9332. var _ajs = _iframe.contentWindow.document.createElement("script");
  9333. _ajs.type = "text/javascript";
  9334. _ajs.innerHTML =
  9335. // 'console.log(' + _loading + ');\n' +
  9336. 'var _js = document.createElement("script");\n' +
  9337. '_js.type="text/javascript";\n' +
  9338. '_js.charset="UTF-8";\n' +
  9339. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9340. "_js.onload = function(){\n" +
  9341. ' var a = document.getElementsByTagName("img")\n' +
  9342. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9343. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9344. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9345. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9346. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9347. "beforeUpload_shishi(file," +
  9348. "'" +
  9349. _userid +
  9350. "'" +
  9351. ", " +
  9352. "'" +
  9353. _cid +
  9354. "'" +
  9355. ", " +
  9356. "'" +
  9357. _stage +
  9358. "'" +
  9359. ", " +
  9360. "'" +
  9361. _task +
  9362. "'" +
  9363. ", " +
  9364. "'" +
  9365. _tool +
  9366. "'" +
  9367. ", " +
  9368. "'" +
  9369. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9370. "'" +
  9371. ", " +
  9372. "'" +
  9373. aTool +
  9374. "'" +
  9375. ", " +
  9376. "`" +
  9377. text +
  9378. "`" +
  9379. ")\n" +
  9380. " });\n" +
  9381. "}\n" +
  9382. "document.head.appendChild(_js);\n";
  9383. _iframe.contentWindow.document.head.appendChild(_ajs);
  9384. }
  9385. }
  9386. //U.MD.D.I.openClick(str);
  9387. //如果有任务栏信息
  9388. // if (_taskbar) {
  9389. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9390. // }
  9391. }
  9392. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9393. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9394. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9395. _userinfo = US.userInfo, //登录用户信息
  9396. _userid = US.userInfo.userid //登录用户id
  9397. let _iframe;
  9398. let _cid = cid,
  9399. _stage = stage,
  9400. _task = task,
  9401. _tool = tool;
  9402. var _jie = $$("div", {
  9403. "style": {
  9404. "position": "absolute",
  9405. "bottom": "50px",
  9406. "right": "50px",
  9407. "zIndex": "9999",
  9408. "backgroundColor": "#2268bc",
  9409. "color": "#fff",
  9410. "padding": "12px 20px",
  9411. "cursor": "pointer",
  9412. "borderRadius": "4px",
  9413. },
  9414. "innerHTML": "确认并提交"
  9415. })
  9416. let aTool = ''
  9417. let _loading = document.createElement('div')
  9418. _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;"
  9419. // _loading.id = "";
  9420. let _lchild = document.createElement('div')
  9421. let _limg = document.createElement('img')
  9422. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9423. _limg.style = "width: 26px;margin-right: 10px;"
  9424. _lchild.appendChild(_limg)
  9425. let _lspan = document.createElement('span')
  9426. _lspan.innerHTML = "上传中..."
  9427. _lchild.appendChild(_lspan)
  9428. _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%);"
  9429. _loading.appendChild(_lchild)
  9430. var _box = $$('div', {
  9431. "style": {
  9432. "position": "relative",
  9433. "width": "100%",
  9434. "height": "100%",
  9435. },
  9436. })
  9437. _box.appendChild(_loading)
  9438. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9439. switch (str) {
  9440. case "whiteboard":
  9441. aTool = 1;
  9442. _iframe = $$("iframe", {
  9443. "frameborder": "no",
  9444. "border": "0",
  9445. "scrolling ": "no",
  9446. "style": {
  9447. "cssText": "border:0;width:100%;height:100%"
  9448. },
  9449. "src": "https://beta.iwb.cocorobo.cn/"
  9450. })
  9451. _box.appendChild(_iframe);
  9452. _box.appendChild(_jie);
  9453. _formdiv = new U.UF.UI.form(
  9454. "电子白板",
  9455. _box, {
  9456. "id": "whiteboards" + cid + stage + task + tool,
  9457. "style": {
  9458. "width": "90%",
  9459. "height": "90%",
  9460. "overflow": 'hidden'
  9461. },
  9462. "onresize": function () { }
  9463. }, {
  9464. closecallback: function () { }
  9465. }, {
  9466. "style": {
  9467. "height": "36px"
  9468. }
  9469. }).form; //创建窗体
  9470. _taskbar = {
  9471. "id": str + _formdiv.id,
  9472. "style": {
  9473. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9474. },
  9475. "name": "电子白板",
  9476. "forms": _formdiv,
  9477. "click": function () {
  9478. U.MD.D.I.openApplication(str, obj, info);
  9479. }
  9480. }
  9481. break;
  9482. case "mind":
  9483. aTool = 3;
  9484. _iframe = $$("iframe", {
  9485. "frameborder": "no",
  9486. "border": "0",
  9487. "scrolling ": "no",
  9488. "style": {
  9489. "cssText": "border:0;width:100%;height:100%"
  9490. },
  9491. "src": "/kityminder-editor/dist/index.html"
  9492. });
  9493. _box.appendChild(_iframe);
  9494. _box.appendChild(_jie);
  9495. _formdiv = new U.UF.UI.form(
  9496. "思维导图",
  9497. _box, { //"/jsmind/example/demo.html"
  9498. "id": "minds" + cid + stage + task + tool,
  9499. "style": {
  9500. "width": "90%",
  9501. "height": "90%",
  9502. "overflow": 'hidden'
  9503. },
  9504. "onresize": function () { }
  9505. }, {
  9506. closecallback: function () { }
  9507. }, {
  9508. "style": {
  9509. "height": "36px"
  9510. }
  9511. }).form; //创建窗体
  9512. _taskbar = {
  9513. "id": str + _formdiv.id,
  9514. "style": {
  9515. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9516. },
  9517. "name": "思维导图",
  9518. "forms": _formdiv,
  9519. "click": function () {
  9520. U.MD.D.I.openApplication(str, obj, info);
  9521. }
  9522. }
  9523. break;
  9524. case "doc":
  9525. aTool = 6;
  9526. _iframe = $$("iframe", {
  9527. "frameborder": "no",
  9528. "border": "0",
  9529. "scrolling ": "no",
  9530. "style": {
  9531. "cssText": "border:0;width:100%;height:100%"
  9532. },
  9533. "src": "/Office/Word/WordEditArea.htm"
  9534. })
  9535. _box.appendChild(_iframe);
  9536. _box.appendChild(_jie);
  9537. _formdiv = new U.UF.UI.form(
  9538. "协同文档",
  9539. _box, {
  9540. "id": "docs" + cid + stage + task + tool,
  9541. "style": {
  9542. "width": "90%",
  9543. "height": "90%",
  9544. "overflow": 'hidden'
  9545. },
  9546. "onresize": function () { }
  9547. }, {
  9548. closecallback: function () { }
  9549. }, {
  9550. "style": {
  9551. "height": "36px"
  9552. }
  9553. }).form; //创建窗体
  9554. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9555. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9556. })
  9557. _taskbar = {
  9558. "id": str + _formdiv.id,
  9559. "style": {
  9560. "backgroundImage": "url(/img/icon/doc.png)"
  9561. },
  9562. "name": "协同文档",
  9563. "forms": _formdiv,
  9564. "click": function () {
  9565. U.MD.D.I.openApplication(str, obj, info);
  9566. }
  9567. }
  9568. break;
  9569. }
  9570. const script1 = document.createElement("script");
  9571. script1.type = "text/javascript";
  9572. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9573. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9574. const script2 = document.createElement("script");
  9575. script2.type = "text/javascript";
  9576. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9577. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9578. const script3 = document.createElement("script");
  9579. script3.type = "text/javascript";
  9580. script3.charset = "UTF-8";
  9581. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9582. const script4 = document.createElement("script");
  9583. script4.type = "text/javascript";
  9584. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9585. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9586. if (_iframe) {
  9587. if (str == 'doc') {
  9588. _iframe = _formdiv.querySelector('iframe')
  9589. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9590. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9591. _iframe.contentWindow.document.body.appendChild(script1);
  9592. _iframe.contentWindow.document.body.appendChild(script2);
  9593. // _iframe.contentWindow.document.body.appendChild(script3);
  9594. _iframe.contentWindow.document.body.appendChild(script4);
  9595. })
  9596. if (onloadListener) {
  9597. _iframe.contentDocument.location.reload()
  9598. } else {
  9599. _iframe.contentDocument.location.reload()
  9600. }
  9601. } else if (str == 'mind') {
  9602. _iframe = _formdiv.querySelector('iframe')
  9603. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9604. _iframe.contentWindow.document.body.appendChild(script1);
  9605. _iframe.contentWindow.document.body.appendChild(script2);
  9606. _iframe.contentWindow.document.body.appendChild(script4);
  9607. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9608. })
  9609. if (onloadListener) {
  9610. _iframe.contentDocument.location.reload()
  9611. } else {
  9612. _iframe.contentDocument.location.reload()
  9613. }
  9614. } else {
  9615. _iframe.onload = () => {
  9616. _iframe.contentWindow.document.body.appendChild(script1);
  9617. _iframe.contentWindow.document.body.appendChild(script2);
  9618. // _iframe.contentWindow.document.body.appendChild(script3);
  9619. _iframe.contentWindow.document.body.appendChild(script4);
  9620. };
  9621. }
  9622. _jie.onclick = async () => {
  9623. let text = ''
  9624. if (aTool == 6) {
  9625. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9626. } else if (aTool == 3) {
  9627. text = await U.MD.D.I.getEditorContent(_iframe);
  9628. }
  9629. _loading.style.display = 'flex'
  9630. console.log(_loading);
  9631. var _ajs = _iframe.contentWindow.document.createElement("script");
  9632. _ajs.type = "text/javascript";
  9633. _ajs.innerHTML =
  9634. // 'console.log(' + _loading + ');\n' +
  9635. 'var _js = document.createElement("script");\n' +
  9636. '_js.type="text/javascript";\n' +
  9637. '_js.charset="UTF-8";\n' +
  9638. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9639. "_js.onload = function(){\n" +
  9640. ' var a = document.getElementsByTagName("img")\n' +
  9641. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9642. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9643. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9644. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9645. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9646. "beforeUpload_shishi(file," +
  9647. "'" +
  9648. _userid +
  9649. "'" +
  9650. ", " +
  9651. "'" +
  9652. _cid +
  9653. "'" +
  9654. ", " +
  9655. "'" +
  9656. _stage +
  9657. "'" +
  9658. ", " +
  9659. "'" +
  9660. _task +
  9661. "'" +
  9662. ", " +
  9663. "'" +
  9664. _tool +
  9665. "'" +
  9666. ", " +
  9667. "'" +
  9668. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9669. "'" +
  9670. ", " +
  9671. "'" +
  9672. aTool +
  9673. "'" +
  9674. ", " +
  9675. "`" +
  9676. text +
  9677. "`" +
  9678. ")\n" +
  9679. " });\n" +
  9680. "}\n" +
  9681. "document.head.appendChild(_js);\n";
  9682. _iframe.contentWindow.document.head.appendChild(_ajs);
  9683. }
  9684. }
  9685. //U.MD.D.I.openClick(str);
  9686. //如果有任务栏信息
  9687. // if (_taskbar) {
  9688. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9689. // }
  9690. }
  9691. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9692. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9693. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9694. _userinfo = US.userInfo, //登录用户信息
  9695. _userid = US.userInfo.userid //登录用户id
  9696. let _iframe;
  9697. let _cid = cid,
  9698. _stage = stage,
  9699. _task = task,
  9700. _tool = tool;
  9701. var _jie = $$("div", {
  9702. "style": {
  9703. "position": "absolute",
  9704. "bottom": "50px",
  9705. "right": "50px",
  9706. "zIndex": "9999",
  9707. "backgroundColor": "#2268bc",
  9708. "color": "#fff",
  9709. "padding": "12px 20px",
  9710. "cursor": "pointer",
  9711. "borderRadius": "4px",
  9712. },
  9713. "innerHTML": "上传模板"
  9714. })
  9715. let aTool = ''
  9716. let _loading = document.createElement('div')
  9717. _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;"
  9718. // _loading.id = "";
  9719. let _lchild = document.createElement('div')
  9720. let _limg = document.createElement('img')
  9721. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9722. _limg.style = "width: 26px;margin-right: 10px;"
  9723. _lchild.appendChild(_limg)
  9724. let _lspan = document.createElement('span')
  9725. _lspan.innerHTML = "上传中..."
  9726. _lchild.appendChild(_lspan)
  9727. _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%);"
  9728. _loading.appendChild(_lchild)
  9729. var _box = $$('div', {
  9730. "style": {
  9731. "position": "relative",
  9732. "width": "100%",
  9733. "height": "100%",
  9734. },
  9735. })
  9736. _box.appendChild(_loading)
  9737. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9738. switch (str) {
  9739. case "whiteboard":
  9740. aTool = 1;
  9741. _iframe = $$("iframe", {
  9742. "frameborder": "no",
  9743. "border": "0",
  9744. "scrolling ": "no",
  9745. "style": {
  9746. "cssText": "border:0;width:100%;height:100%"
  9747. },
  9748. "src": "https://beta.iwb.cocorobo.cn/"
  9749. })
  9750. _box.appendChild(_iframe);
  9751. _box.appendChild(_jie);
  9752. _formdiv = new U.UF.UI.form(
  9753. "电子白板",
  9754. _box, {
  9755. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9756. "style": {
  9757. "width": "90%",
  9758. "height": "90%",
  9759. "overflow": 'hidden'
  9760. },
  9761. "onresize": function () { }
  9762. }, {
  9763. closecallback: function () { }
  9764. }, {
  9765. "style": {
  9766. "height": "36px"
  9767. }
  9768. }).form; //创建窗体
  9769. _taskbar = {
  9770. "id": str + _formdiv.id,
  9771. "style": {
  9772. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9773. },
  9774. "name": "电子白板",
  9775. "forms": _formdiv,
  9776. "click": function () {
  9777. U.MD.D.I.openApplication(str, obj, info);
  9778. }
  9779. }
  9780. break;
  9781. case "mind":
  9782. aTool = 3;
  9783. _iframe = $$("iframe", {
  9784. "frameborder": "no",
  9785. "border": "0",
  9786. "scrolling ": "no",
  9787. "style": {
  9788. "cssText": "border:0;width:100%;height:100%"
  9789. },
  9790. "src": "/kityminder-editor/dist/index.html"
  9791. });
  9792. _box.appendChild(_iframe);
  9793. _box.appendChild(_jie);
  9794. _formdiv = new U.UF.UI.form(
  9795. "思维导图",
  9796. _box, { //"/jsmind/example/demo.html"
  9797. "id": "minds_Yu" + cid + stage + task + tool,
  9798. "style": {
  9799. "width": "90%",
  9800. "height": "90%",
  9801. "overflow": 'hidden'
  9802. },
  9803. "onresize": function () { }
  9804. }, {
  9805. closecallback: function () { }
  9806. }, {
  9807. "style": {
  9808. "height": "36px"
  9809. }
  9810. }).form; //创建窗体
  9811. _taskbar = {
  9812. "id": str + _formdiv.id,
  9813. "style": {
  9814. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9815. },
  9816. "name": "思维导图",
  9817. "forms": _formdiv,
  9818. "click": function () {
  9819. U.MD.D.I.openApplication(str, obj, info);
  9820. }
  9821. }
  9822. break;
  9823. case "doc":
  9824. aTool = 6;
  9825. _iframe = $$("iframe", {
  9826. "frameborder": "no",
  9827. "border": "0",
  9828. "scrolling ": "no",
  9829. "style": {
  9830. "cssText": "border:0;width:100%;height:100%"
  9831. },
  9832. "src": "/Office/Word/WordEditArea.htm"
  9833. })
  9834. _box.appendChild(_iframe);
  9835. _box.appendChild(_jie);
  9836. _formdiv = new U.UF.UI.form(
  9837. "协同文档",
  9838. _box, {
  9839. "id": "docs_Yu" + cid + stage + task + tool,
  9840. "style": {
  9841. "width": "90%",
  9842. "height": "90%",
  9843. "overflow": 'hidden'
  9844. },
  9845. "onresize": function () { }
  9846. }, {
  9847. closecallback: function () { }
  9848. }, {
  9849. "style": {
  9850. "height": "36px"
  9851. }
  9852. }).form; //创建窗体
  9853. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9854. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9855. })
  9856. _taskbar = {
  9857. "id": str + _formdiv.id,
  9858. "style": {
  9859. "backgroundImage": "url(/img/icon/doc.png)"
  9860. },
  9861. "name": "协同文档",
  9862. "forms": _formdiv,
  9863. "click": function () {
  9864. U.MD.D.I.openApplication(str, obj, info);
  9865. }
  9866. }
  9867. break;
  9868. case "CocoPi":
  9869. aTool = 57;
  9870. _iframe = $$("iframe", {
  9871. "allowpaymentrequest": "allowpaymentrequest",
  9872. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9873. "webkitallowfullscreen": "",
  9874. "mozallowfullscreen": "",
  9875. "frameborder": "no",
  9876. "border": "0",
  9877. "scrolling ": "no",
  9878. "style": {
  9879. "cssText": "border:0;width:100%;height:100%"
  9880. },
  9881. "src": "https://pi.cocorobo.cn/"
  9882. })
  9883. _box.appendChild(_iframe);
  9884. _box.appendChild(_jie);
  9885. _formdiv = new U.UF.UI.form(
  9886. "CocoPi",
  9887. _box, {
  9888. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9889. "style": {
  9890. "width": "90%",
  9891. "height": "90%",
  9892. "overflow": 'hidden'
  9893. },
  9894. "onresize": function () { }
  9895. }, {
  9896. closecallback: function () { }
  9897. }, {
  9898. "style": {
  9899. "height": "36px"
  9900. }
  9901. }).form; //创建窗体
  9902. _taskbar = {
  9903. "id": str + _formdiv.id,
  9904. "style": {
  9905. "backgroundImage": "url(/img/icon/cocopi.png)"
  9906. },
  9907. "name": "CocoPi",
  9908. "forms": _formdiv,
  9909. "click": function () {
  9910. U.MD.D.I.openApplication(str, obj, info);
  9911. }
  9912. }
  9913. break;
  9914. }
  9915. if (_iframe) {
  9916. if (str == 'doc') {
  9917. _iframe = _formdiv.querySelector('iframe')
  9918. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9919. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9920. })
  9921. if (onloadListener) {
  9922. _iframe.contentDocument.location.reload()
  9923. } else {
  9924. _iframe.contentDocument.location.reload()
  9925. }
  9926. } else if (str == 'mind') {
  9927. _iframe = _formdiv.querySelector('iframe')
  9928. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9929. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9930. })
  9931. if (onloadListener) {
  9932. _iframe.contentDocument.location.reload()
  9933. } else {
  9934. _iframe.contentDocument.location.reload()
  9935. }
  9936. } else if (str == 'whiteboard') {
  9937. _iframe = _formdiv.querySelector('iframe')
  9938. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9939. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9940. })
  9941. // if (onloadListener) {
  9942. // try {
  9943. // _iframe.src += "?cocorobo="+new Date().getTime()
  9944. // _iframe.contentWindow.document.location.reload()
  9945. // } catch (error) {
  9946. // }
  9947. // } else {
  9948. // _iframe.contentDocument.location.reload()
  9949. // }
  9950. } else if (str == 'CocoPi') {
  9951. _iframe = _formdiv.querySelector('iframe')
  9952. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9953. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9954. })
  9955. if (onloadListener) {
  9956. _iframe.contentDocument.location.reload()
  9957. } else {
  9958. _iframe.contentDocument.location.reload()
  9959. }
  9960. } else {
  9961. _iframe.onload = () => { };
  9962. }
  9963. _jie.onclick = async () => {
  9964. let text = ''
  9965. let type = '2'
  9966. if (aTool == 1) {
  9967. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9968. type = '3'
  9969. } else if (aTool == 6) {
  9970. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9971. type = '1'
  9972. } else if (aTool == 3) {
  9973. text = await U.MD.D.I.getEditorContent(_iframe);
  9974. type = '2'
  9975. } else if (aTool == 57) {
  9976. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9977. type = '4'
  9978. }
  9979. _loading.style.display = 'flex'
  9980. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9981. }
  9982. }
  9983. //U.MD.D.I.openClick(str);
  9984. //如果有任务栏信息
  9985. // if (_taskbar) {
  9986. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9987. // }
  9988. }
  9989. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9990. var xmlhttp;
  9991. var Mac, Sn, DeviceId
  9992. if (window.XMLHttpRequest) {
  9993. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9994. xmlhttp = new XMLHttpRequest();
  9995. } else {
  9996. // IE6, IE5 浏览器执行代码
  9997. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9998. }
  9999. xmlhttp.onreadystatechange = function () {
  10000. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10001. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10002. // resolve(res.value[0][0].text);
  10003. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10004. }
  10005. }
  10006. }
  10007. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10008. xmlhttp.send();
  10009. }
  10010. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10011. var xmlhttp;
  10012. var Mac, Sn, DeviceId
  10013. if (window.XMLHttpRequest) {
  10014. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10015. xmlhttp = new XMLHttpRequest();
  10016. } else {
  10017. // IE6, IE5 浏览器执行代码
  10018. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10019. }
  10020. xmlhttp.onreadystatechange = function () {
  10021. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10022. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10023. // resolve(res.value[0][0].text);
  10024. if (type == '2') {
  10025. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10026. } else if (type == '3') {
  10027. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10028. } else if (type == '4') {
  10029. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10030. }
  10031. } else {
  10032. if (type == '2') {
  10033. iframe.contentWindow.editor.minder.importData('json', '')
  10034. } else if (type == '3') {
  10035. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10036. } else if (type == '4') {
  10037. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10038. }
  10039. }
  10040. }
  10041. }
  10042. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10043. xmlhttp.send();
  10044. }
  10045. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10046. var xmlhttp;
  10047. var Mac, Sn, DeviceId
  10048. if (window.XMLHttpRequest) {
  10049. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10050. xmlhttp = new XMLHttpRequest();
  10051. } else {
  10052. // IE6, IE5 浏览器执行代码
  10053. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10054. }
  10055. xmlhttp.onreadystatechange = function () {
  10056. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10057. if (xmlhttp.response) {
  10058. // resolve(res.value[0][0].text);
  10059. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10060. // $(fileInput).val('');
  10061. // });
  10062. span.innerHTML = '上传成功'
  10063. setTimeout(() => {
  10064. loading.style.display = 'none'
  10065. }, 1000);
  10066. }
  10067. }
  10068. }
  10069. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10070. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10071. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10072. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10073. // 设置请求头,表示请求体的编码格式
  10074. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10075. // 设置请求体,使用url-encoded格式的数据
  10076. }
  10077. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10078. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10079. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10080. _userinfo = US.userInfo, //登录用户信息
  10081. _userid = US.userInfo.userid //登录用户id
  10082. let _iframe;
  10083. let _cid = cid,
  10084. _stage = stage,
  10085. _task = task,
  10086. _tool = tool;
  10087. var _jie = $$("div", {
  10088. "style": {
  10089. "position": "absolute",
  10090. "bottom": "50px",
  10091. "right": "50px",
  10092. "zIndex": "9999",
  10093. "backgroundColor": "#2268bc",
  10094. "color": "#fff",
  10095. "padding": "12px 20px",
  10096. "cursor": "pointer",
  10097. "borderRadius": "4px",
  10098. },
  10099. "innerHTML": "提交作业"
  10100. })
  10101. let aTool = ''
  10102. let _loading = document.createElement('div')
  10103. _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;"
  10104. // _loading.id = "";
  10105. let _lchild = document.createElement('div')
  10106. let _limg = document.createElement('img')
  10107. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10108. _limg.style = "width: 26px;margin-right: 10px;"
  10109. _lchild.appendChild(_limg)
  10110. let _lspan = document.createElement('span')
  10111. _lspan.innerHTML = "上传中..."
  10112. _lchild.appendChild(_lspan)
  10113. _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%);"
  10114. _loading.appendChild(_lchild)
  10115. var _box = $$('div', {
  10116. "style": {
  10117. "position": "relative",
  10118. "width": "100%",
  10119. "height": "100%",
  10120. },
  10121. })
  10122. _box.appendChild(_loading)
  10123. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10124. switch (str) {
  10125. case "CocoPi":
  10126. aTool = 57;
  10127. _iframe = $$("iframe", {
  10128. "allowpaymentrequest": "allowpaymentrequest",
  10129. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10130. "webkitallowfullscreen": "",
  10131. "mozallowfullscreen": "",
  10132. "frameborder": "no",
  10133. "border": "0",
  10134. "scrolling ": "no",
  10135. "style": {
  10136. "cssText": "border:0;width:100%;height:100%"
  10137. },
  10138. "src": "https://pi.cocorobo.cn/"
  10139. })
  10140. _box.appendChild(_iframe);
  10141. _box.appendChild(_jie);
  10142. _formdiv = new U.UF.UI.form(
  10143. "CocoPi",
  10144. _box, {
  10145. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10146. "style": {
  10147. "width": "90%",
  10148. "height": "90%",
  10149. "overflow": 'hidden'
  10150. },
  10151. "onresize": function () { }
  10152. }, {
  10153. closecallback: function () { }
  10154. }, {
  10155. "style": {
  10156. "height": "36px"
  10157. }
  10158. }).form; //创建窗体
  10159. _taskbar = {
  10160. "id": str + _formdiv.id,
  10161. "style": {
  10162. "backgroundImage": "url(/img/icon/cocopi.png)"
  10163. },
  10164. "name": "CocoPi",
  10165. "forms": _formdiv,
  10166. "click": function () {
  10167. U.MD.D.I.openApplication(str, obj, info);
  10168. }
  10169. }
  10170. break;
  10171. }
  10172. if (_iframe) {
  10173. if (str == 'CocoPi') {
  10174. _iframe = _formdiv.querySelector('iframe')
  10175. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10176. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10177. })
  10178. if (onloadListener) {
  10179. _iframe.contentDocument.location.reload()
  10180. } else {
  10181. _iframe.contentDocument.location.reload()
  10182. }
  10183. }
  10184. _jie.onclick = async () => {
  10185. let text = ''
  10186. if (aTool == 57) {
  10187. text = _iframe.contentWindow.getLoadXmlStr()
  10188. }
  10189. _loading.style.display = 'flex'
  10190. console.log(_loading);
  10191. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10192. _loading.style.display = 'none'
  10193. let _div = document.createElement('div')
  10194. _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;"
  10195. let _inner = document.createElement('div')
  10196. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10197. _inner.innerHTML = "上传成功"
  10198. _div.appendChild(_inner)
  10199. _iframe.contentWindow.window.document.body.appendChild(_div)
  10200. _div.onclick = () => {
  10201. _iframe.contentWindow.window.document.body.removeChild(_div)
  10202. }
  10203. setTimeout(() => {
  10204. _iframe.contentWindow.window.document.body.removeChild(_div)
  10205. }, 1000);
  10206. }, [], { "type": "POST", "withCredentials": true });
  10207. }
  10208. }
  10209. }
  10210. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10211. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10212. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10213. _userid = student.userid, //登录用户id
  10214. _username = student.student //用户名字
  10215. let _iframe;
  10216. let _cid = cid,
  10217. _stage = stage,
  10218. _task = task,
  10219. _tool = tool;
  10220. var _jie = $$("div", {
  10221. "style": {
  10222. "position": "absolute",
  10223. "bottom": "50px",
  10224. "right": "50px",
  10225. "zIndex": "9999",
  10226. "backgroundColor": "#2268bc",
  10227. "color": "#fff",
  10228. "padding": "12px 20px",
  10229. "cursor": "pointer",
  10230. "borderRadius": "4px",
  10231. },
  10232. "innerHTML": "提交作业"
  10233. })
  10234. let aTool = ''
  10235. let _loading = document.createElement('div')
  10236. _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;"
  10237. // _loading.id = "";
  10238. let _lchild = document.createElement('div')
  10239. let _limg = document.createElement('img')
  10240. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10241. _limg.style = "width: 26px;margin-right: 10px;"
  10242. _lchild.appendChild(_limg)
  10243. let _lspan = document.createElement('span')
  10244. _lspan.innerHTML = "上传中..."
  10245. _lchild.appendChild(_lspan)
  10246. _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%);"
  10247. _loading.appendChild(_lchild)
  10248. var _box = $$('div', {
  10249. "style": {
  10250. "position": "relative",
  10251. "width": "100%",
  10252. "height": "100%",
  10253. },
  10254. })
  10255. _box.appendChild(_loading)
  10256. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10257. switch (str) {
  10258. case "CocoPi":
  10259. aTool = 57;
  10260. _iframe = $$("iframe", {
  10261. "allowpaymentrequest": "allowpaymentrequest",
  10262. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10263. "webkitallowfullscreen": "",
  10264. "mozallowfullscreen": "",
  10265. "frameborder": "no",
  10266. "border": "0",
  10267. "scrolling ": "no",
  10268. "style": {
  10269. "cssText": "border:0;width:100%;height:100%"
  10270. },
  10271. "src": "https://pi.cocorobo.cn/"
  10272. })
  10273. _box.appendChild(_iframe);
  10274. _box.appendChild(_jie);
  10275. _formdiv = new U.UF.UI.form(
  10276. "CocoPi-" + _username,
  10277. _box, {
  10278. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10279. "style": {
  10280. "width": "90%",
  10281. "height": "90%",
  10282. "overflow": 'hidden'
  10283. },
  10284. "onresize": function () { }
  10285. }, {
  10286. closecallback: function () { }
  10287. }, {
  10288. "style": {
  10289. "height": "36px"
  10290. }
  10291. }).form; //创建窗体
  10292. _taskbar = {
  10293. "id": str + _formdiv.id,
  10294. "style": {
  10295. "backgroundImage": "url(/img/icon/cocopi.png)"
  10296. },
  10297. "name": "CocoPi",
  10298. "forms": _formdiv,
  10299. "click": function () {
  10300. U.MD.D.I.openApplication(str, obj, info);
  10301. }
  10302. }
  10303. break;
  10304. }
  10305. if (_iframe) {
  10306. if (str == 'CocoPi') {
  10307. _iframe = _formdiv.querySelector('iframe')
  10308. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10309. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10310. })
  10311. if (onloadListener) {
  10312. _iframe.contentDocument.location.reload()
  10313. } else {
  10314. _iframe.contentDocument.location.reload()
  10315. }
  10316. }
  10317. _jie.onclick = async () => {
  10318. let text = ''
  10319. if (aTool == 57) {
  10320. text = _iframe.contentWindow.getLoadXmlStr()
  10321. }
  10322. _loading.style.display = 'flex'
  10323. console.log(_loading);
  10324. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10325. _loading.style.display = 'none'
  10326. let _div = document.createElement('div')
  10327. _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;"
  10328. let _inner = document.createElement('div')
  10329. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10330. _inner.innerHTML = "上传成功"
  10331. _div.appendChild(_inner)
  10332. _iframe.contentWindow.window.document.body.appendChild(_div)
  10333. _div.onclick = () => {
  10334. _iframe.contentWindow.window.document.body.removeChild(_div)
  10335. }
  10336. setTimeout(() => {
  10337. _iframe.contentWindow.window.document.body.removeChild(_div)
  10338. }, 1000);
  10339. }, [], { "type": "POST", "withCredentials": true });
  10340. }
  10341. }
  10342. }
  10343. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10344. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10345. if (res.value[0].length > 0) {
  10346. if (atool == 57) {
  10347. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10348. }
  10349. } else {
  10350. if (atool == 57) {
  10351. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10352. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10353. }
  10354. }
  10355. }, [], { "type": "POST", "withCredentials": true });
  10356. }