DeskTop.js 650 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447
  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. ];
  594. //教科院实小教师桌面图标的全局变量
  595. U.MD.D.I.siesStudentDeskIcon = [
  596. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  597. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  598. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  599. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  600. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  601. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  602. ];
  603. //中山小学教师桌面图标的全局变量
  604. U.MD.D.I.guzmsteacherDeskIcon = [
  605. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  606. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  607. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  608. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  609. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  610. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  611. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  612. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  613. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  614. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  615. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  616. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  617. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  618. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  619. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  620. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  621. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  622. ];
  623. //中山小学学生桌面图标的全局变量
  624. U.MD.D.I.guzmsStudentDeskIcon = [
  625. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  626. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  627. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  628. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  629. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  630. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  631. ];
  632. //福田
  633. U.MD.D.I.gdjgTeacherDeskIcon = [
  634. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  635. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  636. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  637. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  638. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  639. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  640. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  641. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  642. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  643. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  644. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  645. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  646. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  647. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  648. ];
  649. //gdjg
  650. U.MD.D.I.gdjgAdminDeskIcon = [
  651. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  652. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  653. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  654. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  655. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  656. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  657. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  658. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  659. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  660. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  661. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  662. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  663. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  664. ];
  665. //hk
  666. U.MD.D.I.hkteacherDeskIcon = [
  667. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  668. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  669. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  670. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  671. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  672. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  673. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  674. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  675. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  676. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  677. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  678. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  679. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  680. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  681. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  682. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  683. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  684. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  685. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  686. ];
  687. //hk
  688. U.MD.D.I.hkStudentDeskIcon = [
  689. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  690. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  691. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  692. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  693. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  694. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  695. ];
  696. //hk
  697. U.MD.D.I.hkaceteacherDeskIcon = [
  698. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  699. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  700. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  701. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  702. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  703. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  704. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  705. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  706. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  707. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  708. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  709. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  710. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  711. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  712. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  713. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  714. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  715. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  716. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  717. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  718. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  719. ];
  720. //hk
  721. U.MD.D.I.hkaceStudentDeskIcon = [
  722. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  723. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  724. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  725. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  726. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  727. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  728. ];
  729. //香海正覺蓮社佛教正覺中學
  730. U.MD.D.I.hkZJLSteacherDeskIcon = [
  731. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  732. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  733. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  734. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  735. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  736. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  737. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  738. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  739. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  740. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  741. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  742. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  743. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  744. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  745. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  746. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  747. ];
  748. //香海正覺蓮社佛教正覺中學
  749. U.MD.D.I.hkZJLSStudentDeskIcon = [
  750. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  751. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  752. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  753. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  754. ];
  755. //云海
  756. U.MD.D.I.yunhaiTeacherDeskIcon = [
  757. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  758. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  759. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  760. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  761. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  762. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  763. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  764. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  765. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  766. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  767. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  768. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  769. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  770. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  771. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  772. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  773. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  774. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  775. ];
  776. //福田
  777. U.MD.D.I.heyuanTeacherDeskIcon = [
  778. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  779. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  780. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  781. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  782. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  783. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  784. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  785. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  786. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  787. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  788. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  789. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  790. ];
  791. //福田
  792. U.MD.D.I.heyuanAdminDeskIcon = [
  793. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  794. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  795. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  796. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  797. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  798. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  799. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  800. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  801. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  802. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  803. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  804. ];
  805. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  806. U.MD.D.I.szherTeacherDeskIcon = [
  807. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  808. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  809. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  810. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  811. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  812. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  813. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  814. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  815. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  816. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  817. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  818. ];
  819. //dsei
  820. U.MD.D.I.dseiTeacherDeskIcon = [
  821. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  822. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  823. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  824. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  825. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  826. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  827. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  828. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  829. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  830. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  831. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  832. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  833. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  834. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  835. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  836. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  837. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  838. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  839. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  840. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  841. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  842. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  843. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  844. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  845. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  846. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  847. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  848. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  849. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  850. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  851. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  852. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  853. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  854. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  855. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  856. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  857. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  858. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  859. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  860. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  861. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  862. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  863. ];
  864. //dsei
  865. U.MD.D.I.dseiAdminDeskIcon = [
  866. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  867. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  868. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  869. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  870. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  871. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  872. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  873. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  874. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  875. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  876. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  877. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  878. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  879. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  880. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  881. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  882. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  883. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  884. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  885. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  886. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  887. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  888. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  889. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  890. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  891. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  892. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  893. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  894. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  895. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  896. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  897. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  898. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  899. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  900. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  901. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  902. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  903. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  904. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  905. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  906. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  907. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  908. ];
  909. //dsei
  910. U.MD.D.I.dseiStudentDeskIcon = [
  911. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  912. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  913. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  914. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  915. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  916. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  917. ];
  918. //未来教育基地
  919. U.MD.D.I.szjkyTeacherDeskIcon = [
  920. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  921. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  922. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  923. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  924. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  925. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  926. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  927. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  928. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  929. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  930. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  931. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  932. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  933. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  934. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  935. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  936. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  937. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  938. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  939. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  940. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  941. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  942. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  943. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  944. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  945. ];
  946. //未来教育基地
  947. U.MD.D.I.szjkyAdminDeskIcon = [
  948. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  949. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  950. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  951. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  952. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  953. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  954. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  955. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  956. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  957. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  958. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  959. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  960. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  961. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  962. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  963. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  964. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  965. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  966. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  967. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  968. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  969. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  970. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  971. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  972. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  973. ];
  974. //未来教育基地
  975. U.MD.D.I.szjkyStudentDeskIcon = [
  976. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  977. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  978. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  979. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  980. ];
  981. //成华教育局
  982. U.MD.D.I.chjyjTeacherDeskIcon = [
  983. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  984. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  985. { "Name": "项目管理", "Url": "studentCourseS", "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": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  988. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  989. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  990. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  991. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  992. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  993. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  994. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  995. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  996. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  997. ];
  998. //成华教育局chjyj
  999. U.MD.D.I.chjyjAdminDeskIcon = [
  1000. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1001. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1002. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1003. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1004. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1005. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1006. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1007. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1008. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1009. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1010. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1011. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1012. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1013. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1014. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1015. ];
  1016. //成华教育局chjyj
  1017. U.MD.D.I.chjyjStudentDeskIcon = [
  1018. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1019. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1020. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1021. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1022. ];
  1023. //tpc
  1024. U.MD.D.I.tpcStudentDeskIcon = [
  1025. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1026. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1027. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1028. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1029. ];
  1030. //tpc
  1031. U.MD.D.I.tpcTeacherDeskIcon = [
  1032. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1033. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1034. { "Name": "项目管理", "Url": "studentCourseS", "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. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1038. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1039. ];
  1040. //tpc
  1041. U.MD.D.I.tpcAdminDeskIcon = [
  1042. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1043. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1044. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1045. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1046. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1047. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1048. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1049. ];
  1050. //THU-IOE
  1051. U.MD.D.I.thuioeTeacherDeskIcon = [
  1052. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1053. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1054. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1055. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1056. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1057. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1058. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1059. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1060. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1061. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1062. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1063. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1064. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1065. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1066. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1067. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1068. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1069. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1070. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1071. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1072. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1073. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1074. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1075. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1076. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1077. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1078. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1079. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1080. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1081. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1082. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1083. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1084. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1085. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1086. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1087. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1088. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1089. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1090. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1091. ];
  1092. //THU-IOE
  1093. U.MD.D.I.thuioeStudentDeskIcon = [
  1094. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1095. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1096. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1097. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1098. ];
  1099. //jccssyl
  1100. U.MD.D.I.jccssylTeacherDeskIcon = [
  1101. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1102. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1103. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1104. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1105. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1106. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1107. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1108. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1109. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1110. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1111. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1112. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1113. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1114. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1115. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1116. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1117. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1118. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1119. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1120. ];
  1121. //jccssyl
  1122. U.MD.D.I.jccssylStudentDeskIcon = [
  1123. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1124. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1125. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1126. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1127. ];
  1128. //cale
  1129. U.MD.D.I.caleTeacherDeskIcon = [
  1130. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1131. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1132. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1133. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1134. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1135. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1136. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1137. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1138. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1139. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1140. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1141. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1142. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1143. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1144. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1145. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1146. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1147. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1148. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1149. ];
  1150. //cale
  1151. U.MD.D.I.caleStudentDeskIcon = [
  1152. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1153. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1154. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1155. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1156. ];
  1157. //lqwmsgzs
  1158. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1159. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1160. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1161. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1162. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1163. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1164. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1165. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1166. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1167. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1168. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1169. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1170. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1171. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1172. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1173. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1174. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1175. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1176. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1177. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1178. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1179. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1180. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1181. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1182. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1183. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1184. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1185. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1186. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1187. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1188. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1189. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1190. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1191. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1192. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1193. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1194. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1195. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1196. ];
  1197. //lqwmsgzs
  1198. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1199. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1200. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1201. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1202. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1203. ];
  1204. //盐田区幼儿园
  1205. U.MD.D.I.ytyTeacherDeskIcon = [
  1206. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1207. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1208. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1209. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1210. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1211. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1212. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1213. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1214. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1215. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1216. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1217. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1218. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1219. ];
  1220. //盐田区幼儿园
  1221. U.MD.D.I.ytyStudentDeskIcon = [
  1222. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1223. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1224. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1225. ];
  1226. //scnuai
  1227. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1228. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1229. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1230. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1231. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1232. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1233. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1234. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1235. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1236. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1237. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1238. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1239. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1240. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1241. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1242. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1243. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1244. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1245. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1246. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1247. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1248. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1249. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1250. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1251. ];
  1252. //scnuai
  1253. U.MD.D.I.scnuaiAdminDeskIcon = [
  1254. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1255. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1256. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1257. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1258. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1259. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1260. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1261. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1262. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1263. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1264. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1265. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1266. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1267. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1268. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1269. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1270. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1271. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1272. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1273. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1274. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1275. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1276. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1277. ];
  1278. //scnuai
  1279. U.MD.D.I.scnuaiStudentDeskIcon = [
  1280. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1281. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1282. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1283. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1284. ];
  1285. //cocobiz
  1286. U.MD.D.I.cocobizteacherDeskIcon = [
  1287. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1288. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1289. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1290. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1291. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1292. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1293. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1294. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1295. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1296. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1297. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1298. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1299. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1300. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1301. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1302. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1303. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1304. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1305. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1306. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1307. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1308. ];
  1309. //cocobiz
  1310. U.MD.D.I.cocobizStudentDeskIcon = [
  1311. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1312. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1313. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1314. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1315. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1316. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1317. ];
  1318. //xxzjky
  1319. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1320. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1321. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1322. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1323. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1324. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1325. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1326. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1327. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1328. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1329. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1330. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1331. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1332. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1333. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1334. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1335. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1336. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1337. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1338. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1339. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1340. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1341. ];
  1342. //xxzjky
  1343. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1344. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1345. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1346. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1347. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1348. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1349. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1350. ];
  1351. //nsfx
  1352. U.MD.D.I.nsfxTeacherDeskIcon = [
  1353. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1354. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1355. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1356. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1357. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1358. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1359. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1360. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1361. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1362. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1363. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1364. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1365. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1366. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1367. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1368. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1369. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1370. ];
  1371. //nsfx
  1372. U.MD.D.I.nsfxStudentDeskIcon = [
  1373. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1374. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1375. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1376. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1377. ];
  1378. //stia
  1379. U.MD.D.I.stiaTeacherDeskIcon = [
  1380. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1381. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1382. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1383. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1384. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1385. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1386. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1387. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1388. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1389. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1390. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1391. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1392. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1393. ];
  1394. //stia
  1395. U.MD.D.I.stiaStudentDeskIcon = [
  1396. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1397. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1398. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1399. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1400. ];
  1401. //szdjg
  1402. U.MD.D.I.szdjgTeacherDeskIcon = [
  1403. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1404. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1405. ];
  1406. //szdjg
  1407. U.MD.D.I.szdjgStudentDeskIcon = [
  1408. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1409. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1410. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1411. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1412. ];
  1413. //010607
  1414. U.MD.D.I.x010607TeacherDeskIcon = [
  1415. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1416. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1417. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1418. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1419. { "Name": "项目管理", "Url": "studentCourseS", "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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1422. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1423. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1424. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1425. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1426. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1427. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1428. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1429. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1430. ];
  1431. //010607
  1432. U.MD.D.I.x010607StudentDeskIcon = [
  1433. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1434. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1435. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1436. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1437. ];
  1438. //010608
  1439. U.MD.D.I.x010608TeacherDeskIcon = [
  1440. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1441. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1442. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1443. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1444. { "Name": "项目管理", "Url": "studentCourseS", "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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1447. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1448. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1449. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1450. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1451. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1452. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1453. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1454. ];
  1455. //010608
  1456. U.MD.D.I.x010608StudentDeskIcon = [
  1457. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1458. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1459. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1460. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1461. ];
  1462. //xhly
  1463. U.MD.D.I.xhlyTeacherDeskIcon = [
  1464. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1465. ];
  1466. //010608
  1467. U.MD.D.I.xhlyStudentDeskIcon = [
  1468. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1469. ];
  1470. //北师大
  1471. U.MD.D.I.BSDNSteacherDeskIcon = [
  1472. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1473. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1474. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1475. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1476. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1477. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1478. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1479. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1480. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1481. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1482. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1483. ];
  1484. //北师大
  1485. U.MD.D.I.BSDNSstudentDeskIcon = [
  1486. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1487. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1488. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1489. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1490. ];
  1491. //CUHK_EDU
  1492. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1493. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1494. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1495. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1496. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1497. { "Name": "项目管理", "Url": "studentCourseS", "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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1500. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1501. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1502. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1503. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1504. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1505. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1506. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1507. ];
  1508. //CUHK_EDU
  1509. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1510. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1511. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1512. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1513. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1514. ];
  1515. //010503
  1516. U.MD.D.I.x010503TeacherDeskIcon = [
  1517. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1518. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1519. ];
  1520. //010503
  1521. U.MD.D.I.x010503StudentDeskIcon = [
  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. //SPROUT Lab
  1528. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1536. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1537. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1538. ];
  1539. //SPROUT Lab
  1540. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1541. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1542. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1543. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1544. ];
  1545. //010204
  1546. U.MD.D.I.x010204TeacherDeskIcon = [
  1547. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1548. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1549. ];
  1550. //010204
  1551. U.MD.D.I.x010204StudentDeskIcon = [
  1552. // { "Name": "项目管理", "Url": "studentCourse", "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": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1555. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1556. ];
  1557. //trail
  1558. U.MD.D.I.trailTeacherDeskIcon = [
  1559. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1560. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1561. ];
  1562. //trail
  1563. U.MD.D.I.trailStudentDeskIcon = [
  1564. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1565. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1566. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1567. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1568. ];
  1569. //010504
  1570. U.MD.D.I.x010504TeacherDeskIcon = [
  1571. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1572. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1573. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1574. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1575. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1576. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1577. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1578. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1579. ];
  1580. //010504
  1581. U.MD.D.I.x010504StudentDeskIcon = [
  1582. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1583. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1584. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1585. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1586. ];
  1587. //SCNUET
  1588. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1589. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1590. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1591. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1592. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1593. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1594. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1595. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1596. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1597. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1598. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1599. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1600. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1601. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1602. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1603. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1604. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1605. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1606. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1607. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1608. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1609. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1610. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1611. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1612. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1613. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1614. ];
  1615. //SCNUET
  1616. U.MD.D.I.SCNUETAdminDeskIcon = [
  1617. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1618. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1619. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1620. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1621. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1622. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1623. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1624. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1625. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1626. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1627. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1628. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1629. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1630. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1631. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1632. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1633. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1634. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1635. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1636. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1637. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1638. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1639. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1640. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1641. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1642. ];
  1643. //SCNUET
  1644. U.MD.D.I.SCNUETStudentDeskIcon = [
  1645. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1646. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1647. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1648. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1649. ];
  1650. //x020201
  1651. U.MD.D.I.x020201TeacherDeskIcon = [
  1652. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1653. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1654. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1655. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1656. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1657. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1658. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1659. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1660. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1661. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1662. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1663. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1664. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1665. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1666. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1667. ];
  1668. //x020201
  1669. U.MD.D.I.x020201AdminDeskIcon = [
  1670. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1671. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1672. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1673. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1674. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1675. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1676. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1677. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1678. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1679. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1680. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1681. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1682. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1683. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1684. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1685. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1686. ];
  1687. //020201
  1688. U.MD.D.I.x020201StudentDeskIcon = [
  1689. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1690. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1691. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1692. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1693. ];
  1694. //010611
  1695. U.MD.D.I.x010611TeacherDeskIcon = [
  1696. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1697. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1698. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1699. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1700. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1701. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.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": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1705. ];
  1706. //010611
  1707. U.MD.D.I.x010611StudentDeskIcon = [
  1708. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1709. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1710. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1711. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1712. ];
  1713. //#region 桌面初始化a
  1714. /**
  1715. * 初始化桌面的起始函数
  1716. *
  1717. */
  1718. U.MD.D.I.init = function () {
  1719. if ($("#U_MD_D_K")[0]) {
  1720. //初始化桌面图标
  1721. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1722. // var clickUrl = ':12588/requestIp.php';
  1723. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1724. // U.MD.D.I.Ip = data;
  1725. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1726. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1727. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1728. // })
  1729. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1730. // })
  1731. }
  1732. }
  1733. /**
  1734. * 模式切换
  1735. *
  1736. */
  1737. U.MD.D.I.ModeCheck = function (type) {
  1738. if (US.Config.type == type) {
  1739. return
  1740. }
  1741. US.Config.type = type
  1742. $('.U_PBL_Check .active')[0].className = ''
  1743. if (type == 1) {
  1744. $('.U_PBL_Check div')[0].className = 'active'
  1745. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1746. } else {
  1747. $('.U_PBL_Check div')[1].className = 'active'
  1748. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1749. }
  1750. //初始化桌面图标
  1751. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1752. if (type == 2) {
  1753. U.MD.D.I.openApplication("project")
  1754. }
  1755. }
  1756. /**
  1757. * 隐藏任务栏
  1758. *
  1759. * @param {element} 桌面元素
  1760. */
  1761. U.MD.D.I.hiddenTaskbar = function (el) {
  1762. //任务栏位置变小
  1763. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1764. //桌面的位置变大
  1765. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1766. }
  1767. /**
  1768. * 隐藏任务栏
  1769. *
  1770. * @param {element} 桌面元素
  1771. */
  1772. U.MD.D.I.hiddenTaskbarout = function (el) {
  1773. //任务栏位置变小
  1774. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1775. //任务栏位置变化
  1776. U.selectEl(el).css({ "bottom": "-60px" });
  1777. //桌面的位置变大
  1778. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1779. }
  1780. }
  1781. /**
  1782. * 初始化打印桌面图标
  1783. *
  1784. * @param {element} 桌面元素
  1785. */
  1786. U.MD.D.I.initDesktopIcons = function (el, type) {
  1787. var i, //用于循环
  1788. _content, //桌面图标元素
  1789. _iconcontent, //桌面图标元素
  1790. _frag = $$("frag"), //定义一个碎片元素
  1791. _type = US.userInfo.type,
  1792. _org = US.userInfo.org,
  1793. _oid = US.userInfo.organizeid,
  1794. _role = US.userInfo.role,
  1795. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1796. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1797. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1798. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1799. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1800. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1801. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1802. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1803. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1804. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1805. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1806. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1807. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1808. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1809. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1810. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1811. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1812. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1813. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1814. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1815. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1816. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1817. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1818. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1819. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1820. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1821. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1822. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1823. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1824. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1825. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1826. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1827. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1828. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1829. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1830. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1831. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1832. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1833. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1834. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1835. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1836. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1837. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1838. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1839. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1840. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1841. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1842. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1843. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1844. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1845. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1846. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1847. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1848. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1849. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1850. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1851. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1852. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1853. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1854. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1855. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1856. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1857. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1858. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1859. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1860. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1861. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1862. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1863. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1864. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1865. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1866. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1867. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1868. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1869. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1870. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1871. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1872. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1873. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1874. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1875. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1876. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1877. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1878. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  1879. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  1880. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1881. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1882. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1883. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1884. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1885. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1886. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  1887. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  1888. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1889. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1890. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  1891. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  1892. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  1893. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  1894. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  1895. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1896. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1897. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  1898. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  1899. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  1900. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  1901. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1902. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1903. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  1904. 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'];
  1905. 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'];
  1906. //清楚桌面图标
  1907. el.innerHTML = "";
  1908. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1909. _teacherDesktopIconInfo.push(
  1910. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1911. { "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)" } },
  1912. )
  1913. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1914. }
  1915. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1916. _teacherDesktopIconInfo.push(
  1917. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1918. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1919. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1920. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1921. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1922. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1923. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1924. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1925. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1926. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1927. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1928. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1929. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1930. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1931. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1932. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1933. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1934. )
  1935. }
  1936. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1937. _teacherDesktopIconInfo.push(
  1938. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1939. )
  1940. }
  1941. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1942. // _teacherDesktopIconInfo.push(
  1943. // )
  1944. // }
  1945. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1946. _teacherDesktopIconInfo.push(
  1947. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1948. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1949. )
  1950. }
  1951. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1952. _teacherDesktopIconInfo.push(
  1953. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1954. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1955. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1956. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1957. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1958. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1959. )
  1960. _studentDesktopIconInfo.push(
  1961. )
  1962. }
  1963. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1964. _teacherDesktopIconInfo.push(
  1965. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1966. )
  1967. _studentDesktopIconInfo.push(
  1968. )
  1969. }
  1970. //010606 组织
  1971. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  1972. _teacherDesktopIconInfo.push(
  1973. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1974. )
  1975. _studentDesktopIconInfo.push(
  1976. )
  1977. }
  1978. //麒麟二中 和 民新小学
  1979. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1980. _teacherDesktopIconInfo.push(
  1981. )
  1982. }
  1983. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1984. _teacherDesktopIconInfo.push(
  1985. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1986. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1987. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1988. )
  1989. }
  1990. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  1991. _hkTeacherDeskIconInfo.push(
  1992. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1993. )
  1994. }
  1995. //北师大附中(010601)
  1996. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  1997. // _teacherDesktopIconInfo.push(
  1998. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1999. // )
  2000. // _studentDesktopIconInfo.push(
  2001. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2002. // )
  2003. // }
  2004. //樂善堂余近卿中學
  2005. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2006. _teacherDesktopIconInfo.push(
  2007. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2008. )
  2009. }
  2010. // Education Artificial Intelligence
  2011. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2012. _teacherDesktopIconInfo.push(
  2013. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2014. )
  2015. }
  2016. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2017. _teacherDesktopIconInfo.push(
  2018. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2019. )
  2020. }
  2021. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2022. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2023. _teacherDesktopIconInfo.push(
  2024. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2025. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2026. )
  2027. }
  2028. //麒麟二中
  2029. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2030. _studentDesktopIconInfo.push(
  2031. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2032. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2033. )
  2034. }
  2035. //万科双语
  2036. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2037. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2038. if (el.Name == '项目管理') {
  2039. el.Name = 'PBL项目'
  2040. }
  2041. return el
  2042. })
  2043. _studentDesktopIconInfo3.push(
  2044. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2045. )
  2046. }
  2047. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2048. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2049. return el.Name != '魔盒识字' && el.Name != '24点'
  2050. })
  2051. }
  2052. 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) {
  2053. _studentDesktopIconInfo.push(
  2054. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2055. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2056. )
  2057. }
  2058. //循环创建桌面图标
  2059. if (type == 1) {
  2060. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2061. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2062. _content = $$("div", {
  2063. className: "U_MD_D_KO",
  2064. "onmousedown": U.UF.C.closure(function (obj) {
  2065. //防止拖动图标即打开了桌面应用
  2066. U.MD.D.click(this, obj);
  2067. }, [_studentDesktopIconInfo[i]]),
  2068. "onclick": U.UF.C.closure(function (obj) {
  2069. //防止拖动图标即打开了桌面应用
  2070. U.MD.D.click(this, obj);
  2071. }, [_studentDesktopIconInfo[i]])
  2072. }, _frag); //
  2073. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2074. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2075. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2076. }
  2077. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2078. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2079. _content = $$("div", {
  2080. className: "U_MD_D_KO",
  2081. "onmousedown": U.UF.C.closure(function (obj) {
  2082. //防止拖动图标即打开了桌面应用
  2083. U.MD.D.click(this, obj);
  2084. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2085. "onclick": U.UF.C.closure(function (obj) {
  2086. //防止拖动图标即打开了桌面应用
  2087. U.MD.D.click(this, obj);
  2088. }, [_hkZJLSStudentDeskIconInfo[i]])
  2089. }, _frag); //
  2090. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2091. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2092. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2093. } //
  2094. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2095. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2096. _content = $$("div", {
  2097. className: "U_MD_D_KO",
  2098. "onmousedown": U.UF.C.closure(function (obj) {
  2099. //防止拖动图标即打开了桌面应用
  2100. U.MD.D.click(this, obj);
  2101. }, [_ytyStudentDeskIconInfo[i]]),
  2102. "onclick": U.UF.C.closure(function (obj) {
  2103. //防止拖动图标即打开了桌面应用
  2104. U.MD.D.click(this, obj);
  2105. }, [_ytyStudentDeskIconInfo[i]])
  2106. }, _frag); //
  2107. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2108. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2109. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2110. } //
  2111. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2112. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2113. _content = $$("div", {
  2114. className: "U_MD_D_KO",
  2115. "onmousedown": U.UF.C.closure(function (obj) {
  2116. //防止拖动图标即打开了桌面应用
  2117. U.MD.D.click(this, obj);
  2118. }, [_jccssylStudentDeskIconInfo[i]]),
  2119. "onclick": U.UF.C.closure(function (obj) {
  2120. //防止拖动图标即打开了桌面应用
  2121. U.MD.D.click(this, obj);
  2122. }, [_jccssylStudentDeskIconInfo[i]])
  2123. }, _frag); //
  2124. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2125. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2126. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2127. }
  2128. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2129. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2130. _content = $$("div", {
  2131. className: "U_MD_D_KO",
  2132. "onmousedown": U.UF.C.closure(function (obj) {
  2133. //防止拖动图标即打开了桌面应用
  2134. U.MD.D.click(this, obj);
  2135. }, [_scnuaiStudentDeskIconInfo[i]]),
  2136. "onclick": U.UF.C.closure(function (obj) {
  2137. //防止拖动图标即打开了桌面应用
  2138. U.MD.D.click(this, obj);
  2139. }, [_scnuaiStudentDeskIconInfo[i]])
  2140. }, _frag); //
  2141. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2142. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2143. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2144. }
  2145. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2146. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2147. _content = $$("div", {
  2148. className: "U_MD_D_KO",
  2149. "onmousedown": U.UF.C.closure(function (obj) {
  2150. //防止拖动图标即打开了桌面应用
  2151. U.MD.D.click(this, obj);
  2152. }, [_caleStudentDeskIconInfo[i]]),
  2153. "onclick": U.UF.C.closure(function (obj) {
  2154. //防止拖动图标即打开了桌面应用
  2155. U.MD.D.click(this, obj);
  2156. }, [_caleStudentDeskIconInfo[i]])
  2157. }, _frag); //
  2158. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2159. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2160. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2161. }
  2162. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2163. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2164. _content = $$("div", {
  2165. className: "U_MD_D_KO",
  2166. "onmousedown": U.UF.C.closure(function (obj) {
  2167. //防止拖动图标即打开了桌面应用
  2168. U.MD.D.click(this, obj);
  2169. }, [_thuioeStudentDeskIconInfo[i]]),
  2170. "onclick": U.UF.C.closure(function (obj) {
  2171. //防止拖动图标即打开了桌面应用
  2172. U.MD.D.click(this, obj);
  2173. }, [_thuioeStudentDeskIconInfo[i]])
  2174. }, _frag); //
  2175. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2176. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2177. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2178. }
  2179. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2180. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2181. _content = $$("div", {
  2182. className: "U_MD_D_KO",
  2183. "onmousedown": U.UF.C.closure(function (obj) {
  2184. //防止拖动图标即打开了桌面应用
  2185. U.MD.D.click(this, obj);
  2186. }, [_tpcStudentDeskIconInfo[i]]),
  2187. "onclick": U.UF.C.closure(function (obj) {
  2188. //防止拖动图标即打开了桌面应用
  2189. U.MD.D.click(this, obj);
  2190. }, [_tpcStudentDeskIconInfo[i]])
  2191. }, _frag); //
  2192. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2193. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2194. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2195. } //
  2196. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2197. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2198. _content = $$("div", {
  2199. className: "U_MD_D_KO",
  2200. "onmousedown": U.UF.C.closure(function (obj) {
  2201. //防止拖动图标即打开了桌面应用
  2202. U.MD.D.click(this, obj);
  2203. }, [_chjyjStudentDeskIconInfo[i]]),
  2204. "onclick": U.UF.C.closure(function (obj) {
  2205. //防止拖动图标即打开了桌面应用
  2206. U.MD.D.click(this, obj);
  2207. }, [_chjyjStudentDeskIconInfo[i]])
  2208. }, _frag); //
  2209. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2210. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2211. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2212. }
  2213. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2214. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2215. _content = $$("div", {
  2216. className: "U_MD_D_KO",
  2217. "onmousedown": U.UF.C.closure(function (obj) {
  2218. //防止拖动图标即打开了桌面应用
  2219. U.MD.D.click(this, obj);
  2220. }, [_szjkyStudentDeskIconInfo[i]]),
  2221. "onclick": U.UF.C.closure(function (obj) {
  2222. //防止拖动图标即打开了桌面应用
  2223. U.MD.D.click(this, obj);
  2224. }, [_szjkyStudentDeskIconInfo[i]])
  2225. }, _frag); //
  2226. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2227. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2228. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2229. }
  2230. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2231. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2232. _content = $$("div", {
  2233. className: "U_MD_D_KO",
  2234. "onmousedown": U.UF.C.closure(function (obj) {
  2235. //防止拖动图标即打开了桌面应用
  2236. U.MD.D.click(this, obj);
  2237. }, [_x020201StudentDeskIconInfo[i]]),
  2238. "onclick": U.UF.C.closure(function (obj) {
  2239. //防止拖动图标即打开了桌面应用
  2240. U.MD.D.click(this, obj);
  2241. }, [_x020201StudentDeskIconInfo[i]])
  2242. }, _frag); //
  2243. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2244. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2245. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2246. }
  2247. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2248. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2249. _content = $$("div", {
  2250. className: "U_MD_D_KO",
  2251. "onmousedown": U.UF.C.closure(function (obj) {
  2252. //防止拖动图标即打开了桌面应用
  2253. U.MD.D.click(this, obj);
  2254. }, [_SCNUETStudentDeskIconInfo[i]]),
  2255. "onclick": U.UF.C.closure(function (obj) {
  2256. //防止拖动图标即打开了桌面应用
  2257. U.MD.D.click(this, obj);
  2258. }, [_SCNUETStudentDeskIconInfo[i]])
  2259. }, _frag); //
  2260. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2261. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2262. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2263. }
  2264. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2265. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2266. _content = $$("div", {
  2267. className: "U_MD_D_KO",
  2268. "onmousedown": U.UF.C.closure(function (obj) {
  2269. //防止拖动图标即打开了桌面应用
  2270. U.MD.D.click(this, obj);
  2271. }, [_dseiStudentDeskIconInfo[i]]),
  2272. "onclick": U.UF.C.closure(function (obj) {
  2273. //防止拖动图标即打开了桌面应用
  2274. U.MD.D.click(this, obj);
  2275. }, [_dseiStudentDeskIconInfo[i]])
  2276. }, _frag); //
  2277. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2278. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2279. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2280. }
  2281. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2282. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2283. _content = $$("div", {
  2284. className: "U_MD_D_KO",
  2285. "onmousedown": U.UF.C.closure(function (obj) {
  2286. //防止拖动图标即打开了桌面应用
  2287. U.MD.D.click(this, obj);
  2288. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2289. "onclick": U.UF.C.closure(function (obj) {
  2290. //防止拖动图标即打开了桌面应用
  2291. U.MD.D.click(this, obj);
  2292. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2293. }, _frag); //
  2294. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2295. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2296. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2297. }
  2298. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2299. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2300. _content = $$("div", {
  2301. className: "U_MD_D_KO",
  2302. "onmousedown": U.UF.C.closure(function (obj) {
  2303. //防止拖动图标即打开了桌面应用
  2304. U.MD.D.click(this, obj);
  2305. }, [_nsfxStudentDeskIconInfo[i]]),
  2306. "onclick": U.UF.C.closure(function (obj) {
  2307. //防止拖动图标即打开了桌面应用
  2308. U.MD.D.click(this, obj);
  2309. }, [_nsfxStudentDeskIconInfo[i]])
  2310. }, _frag); //
  2311. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2312. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2313. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2314. }
  2315. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2316. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2317. _content = $$("div", {
  2318. className: "U_MD_D_KO",
  2319. "onmousedown": U.UF.C.closure(function (obj) {
  2320. //防止拖动图标即打开了桌面应用
  2321. U.MD.D.click(this, obj);
  2322. }, [_stiaStudentDeskIconInfo[i]]),
  2323. "onclick": U.UF.C.closure(function (obj) {
  2324. //防止拖动图标即打开了桌面应用
  2325. U.MD.D.click(this, obj);
  2326. }, [_stiaStudentDeskIconInfo[i]])
  2327. }, _frag); //
  2328. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2329. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2330. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2331. }
  2332. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2333. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2334. _content = $$("div", {
  2335. className: "U_MD_D_KO",
  2336. "onmousedown": U.UF.C.closure(function (obj) {
  2337. //防止拖动图标即打开了桌面应用
  2338. U.MD.D.click(this, obj);
  2339. }, [_szdjgStudentDeskIconInfo[i]]),
  2340. "onclick": U.UF.C.closure(function (obj) {
  2341. //防止拖动图标即打开了桌面应用
  2342. U.MD.D.click(this, obj);
  2343. }, [_szdjgStudentDeskIconInfo[i]])
  2344. }, _frag); //
  2345. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2346. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2347. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2348. }
  2349. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2350. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2351. _content = $$("div", {
  2352. className: "U_MD_D_KO",
  2353. "onmousedown": U.UF.C.closure(function (obj) {
  2354. //防止拖动图标即打开了桌面应用
  2355. U.MD.D.click(this, obj);
  2356. }, [_x010607StudentDeskIconInfo[i]]),
  2357. "onclick": U.UF.C.closure(function (obj) {
  2358. //防止拖动图标即打开了桌面应用
  2359. U.MD.D.click(this, obj);
  2360. }, [_x010607StudentDeskIconInfo[i]])
  2361. }, _frag); //
  2362. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2363. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2364. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2365. }
  2366. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2367. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2368. _content = $$("div", {
  2369. className: "U_MD_D_KO",
  2370. "onmousedown": U.UF.C.closure(function (obj) {
  2371. //防止拖动图标即打开了桌面应用
  2372. U.MD.D.click(this, obj);
  2373. }, [_xhlyStudentDeskIconInfo[i]]),
  2374. "onclick": U.UF.C.closure(function (obj) {
  2375. //防止拖动图标即打开了桌面应用
  2376. U.MD.D.click(this, obj);
  2377. }, [_xhlyStudentDeskIconInfo[i]])
  2378. }, _frag); //
  2379. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2380. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2381. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2382. }
  2383. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2384. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2385. _content = $$("div", {
  2386. className: "U_MD_D_KO",
  2387. "onmousedown": U.UF.C.closure(function (obj) {
  2388. //防止拖动图标即打开了桌面应用
  2389. U.MD.D.click(this, obj);
  2390. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2391. "onclick": U.UF.C.closure(function (obj) {
  2392. //防止拖动图标即打开了桌面应用
  2393. U.MD.D.click(this, obj);
  2394. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2395. }, _frag); //
  2396. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2397. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2398. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2399. }
  2400. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2401. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2402. _content = $$("div", {
  2403. className: "U_MD_D_KO",
  2404. "onmousedown": U.UF.C.closure(function (obj) {
  2405. //防止拖动图标即打开了桌面应用
  2406. U.MD.D.click(this, obj);
  2407. }, [_x010503StudentDeskIconInfo[i]]),
  2408. "onclick": U.UF.C.closure(function (obj) {
  2409. //防止拖动图标即打开了桌面应用
  2410. U.MD.D.click(this, obj);
  2411. }, [_x010503StudentDeskIconInfo[i]])
  2412. }, _frag); //
  2413. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2414. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2415. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2416. }
  2417. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2418. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2419. _content = $$("div", {
  2420. className: "U_MD_D_KO",
  2421. "onmousedown": U.UF.C.closure(function (obj) {
  2422. //防止拖动图标即打开了桌面应用
  2423. U.MD.D.click(this, obj);
  2424. }, [_x010504StudentDeskIconInfo[i]]),
  2425. "onclick": U.UF.C.closure(function (obj) {
  2426. //防止拖动图标即打开了桌面应用
  2427. U.MD.D.click(this, obj);
  2428. }, [_x010504StudentDeskIconInfo[i]])
  2429. }, _frag); //
  2430. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2431. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2432. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2433. }
  2434. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2435. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2436. _content = $$("div", {
  2437. className: "U_MD_D_KO",
  2438. "onmousedown": U.UF.C.closure(function (obj) {
  2439. //防止拖动图标即打开了桌面应用
  2440. U.MD.D.click(this, obj);
  2441. }, [_x010204StudentDeskIconInfo[i]]),
  2442. "onclick": U.UF.C.closure(function (obj) {
  2443. //防止拖动图标即打开了桌面应用
  2444. U.MD.D.click(this, obj);
  2445. }, [_x010204StudentDeskIconInfo[i]])
  2446. }, _frag); //
  2447. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2448. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2449. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2450. }
  2451. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2452. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2453. _content = $$("div", {
  2454. className: "U_MD_D_KO",
  2455. "onmousedown": U.UF.C.closure(function (obj) {
  2456. //防止拖动图标即打开了桌面应用
  2457. U.MD.D.click(this, obj);
  2458. }, [_trailStudentDeskIconInfo[i]]),
  2459. "onclick": U.UF.C.closure(function (obj) {
  2460. //防止拖动图标即打开了桌面应用
  2461. U.MD.D.click(this, obj);
  2462. }, [_trailStudentDeskIconInfo[i]])
  2463. }, _frag); //
  2464. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2465. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2466. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2467. }
  2468. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2469. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2470. _content = $$("div", {
  2471. className: "U_MD_D_KO",
  2472. "onmousedown": U.UF.C.closure(function (obj) {
  2473. //防止拖动图标即打开了桌面应用
  2474. U.MD.D.click(this, obj);
  2475. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2476. "onclick": U.UF.C.closure(function (obj) {
  2477. //防止拖动图标即打开了桌面应用
  2478. U.MD.D.click(this, obj);
  2479. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2480. }, _frag); //
  2481. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2482. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2483. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2484. }
  2485. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2486. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2487. _content = $$("div", {
  2488. className: "U_MD_D_KO",
  2489. "onmousedown": U.UF.C.closure(function (obj) {
  2490. //防止拖动图标即打开了桌面应用
  2491. U.MD.D.click(this, obj);
  2492. }, [_x010608StudentDeskIconInfo[i]]),
  2493. "onclick": U.UF.C.closure(function (obj) {
  2494. //防止拖动图标即打开了桌面应用
  2495. U.MD.D.click(this, obj);
  2496. }, [_x010608StudentDeskIconInfo[i]])
  2497. }, _frag); //
  2498. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2499. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2500. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2501. }
  2502. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2503. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2504. _content = $$("div", {
  2505. className: "U_MD_D_KO",
  2506. "onmousedown": U.UF.C.closure(function (obj) {
  2507. //防止拖动图标即打开了桌面应用
  2508. U.MD.D.click(this, obj);
  2509. }, [_x010611StudentDeskIconInfo[i]]),
  2510. "onclick": U.UF.C.closure(function (obj) {
  2511. //防止拖动图标即打开了桌面应用
  2512. U.MD.D.click(this, obj);
  2513. }, [_x010611StudentDeskIconInfo[i]])
  2514. }, _frag); //
  2515. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2516. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2517. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2518. }
  2519. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2520. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2521. _content = $$("div", {
  2522. className: "U_MD_D_KO",
  2523. "onmousedown": U.UF.C.closure(function (obj) {
  2524. //防止拖动图标即打开了桌面应用
  2525. U.MD.D.click(this, obj);
  2526. }, [_siesStudentDeskIconInfo[i]]),
  2527. "onclick": U.UF.C.closure(function (obj) {
  2528. //防止拖动图标即打开了桌面应用
  2529. U.MD.D.click(this, obj);
  2530. }, [_siesStudentDeskIconInfo[i]])
  2531. }, _frag); //
  2532. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2533. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2534. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2535. }
  2536. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2537. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2538. _content = $$("div", {
  2539. className: "U_MD_D_KO",
  2540. "onmousedown": U.UF.C.closure(function (obj) {
  2541. //防止拖动图标即打开了桌面应用
  2542. U.MD.D.click(this, obj);
  2543. }, [_guzmsStudentDeskIconInfo[i]]),
  2544. "onclick": U.UF.C.closure(function (obj) {
  2545. //防止拖动图标即打开了桌面应用
  2546. U.MD.D.click(this, obj);
  2547. }, [_guzmsStudentDeskIconInfo[i]])
  2548. }, _frag); //
  2549. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2550. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2551. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2552. }
  2553. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2554. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2555. _content = $$("div", {
  2556. className: "U_MD_D_KO",
  2557. "onmousedown": U.UF.C.closure(function (obj) {
  2558. //防止拖动图标即打开了桌面应用
  2559. U.MD.D.click(this, obj);
  2560. }, [_hkStudentDeskIconInfo[i]]),
  2561. "onclick": U.UF.C.closure(function (obj) {
  2562. //防止拖动图标即打开了桌面应用
  2563. U.MD.D.click(this, obj);
  2564. }, [_hkStudentDeskIconInfo[i]])
  2565. }, _frag); //
  2566. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2567. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2568. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2569. }
  2570. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2571. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2572. _content = $$("div", {
  2573. className: "U_MD_D_KO",
  2574. "onmousedown": U.UF.C.closure(function (obj) {
  2575. //防止拖动图标即打开了桌面应用
  2576. U.MD.D.click(this, obj);
  2577. }, [_hkaceStudentDeskIconInfo[i]]),
  2578. "onclick": U.UF.C.closure(function (obj) {
  2579. //防止拖动图标即打开了桌面应用
  2580. U.MD.D.click(this, obj);
  2581. }, [_hkaceStudentDeskIconInfo[i]])
  2582. }, _frag); //
  2583. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2584. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2585. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2586. }
  2587. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2588. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2589. _content = $$("div", {
  2590. className: "U_MD_D_KO",
  2591. "onmousedown": U.UF.C.closure(function (obj) {
  2592. //防止拖动图标即打开了桌面应用
  2593. U.MD.D.click(this, obj);
  2594. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2595. "onclick": U.UF.C.closure(function (obj) {
  2596. //防止拖动图标即打开了桌面应用
  2597. U.MD.D.click(this, obj);
  2598. }, [_BSDNSstudentDesktopIconInfo[i]])
  2599. }, _frag); //
  2600. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2601. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2602. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2603. }
  2604. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2605. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2606. _content = $$("div", {
  2607. className: "U_MD_D_KO",
  2608. "onmousedown": U.UF.C.closure(function (obj) {
  2609. //防止拖动图标即打开了桌面应用
  2610. U.MD.D.click(this, obj);
  2611. }, [_cocobizStudentDeskIconInfo[i]]),
  2612. "onclick": U.UF.C.closure(function (obj) {
  2613. //防止拖动图标即打开了桌面应用
  2614. U.MD.D.click(this, obj);
  2615. }, [_cocobizStudentDeskIconInfo[i]])
  2616. }, _frag); //
  2617. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2618. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2619. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2620. }
  2621. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2622. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2623. _content = $$("div", {
  2624. className: "U_MD_D_KO",
  2625. "onmousedown": U.UF.C.closure(function (obj) {
  2626. //防止拖动图标即打开了桌面应用
  2627. U.MD.D.click(this, obj);
  2628. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2629. "onclick": U.UF.C.closure(function (obj) {
  2630. //防止拖动图标即打开了桌面应用
  2631. U.MD.D.click(this, obj);
  2632. }, [_xxzjkyStudentDeskIconInfo[i]])
  2633. }, _frag); //
  2634. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2635. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2636. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2637. }
  2638. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2639. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2640. _content = $$("div", {
  2641. className: "U_MD_D_KO",
  2642. "onmousedown": U.UF.C.closure(function (obj) {
  2643. //防止拖动图标即打开了桌面应用
  2644. U.MD.D.click(this, obj);
  2645. }, [_studentDesktopIconInfo[i]]),
  2646. "onclick": U.UF.C.closure(function (obj) {
  2647. //防止拖动图标即打开了桌面应用
  2648. U.MD.D.click(this, obj);
  2649. }, [_studentDesktopIconInfo[i]])
  2650. }, _frag); //
  2651. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2652. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2653. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2654. }
  2655. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2656. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2657. _content = $$("div", {
  2658. className: "U_MD_D_KO",
  2659. "onmousedown": U.UF.C.closure(function (obj) {
  2660. //防止拖动图标即打开了桌面应用
  2661. U.MD.D.click(this, obj);
  2662. }, [_tcStudentDeskIconInfo[i]]),
  2663. "onclick": U.UF.C.closure(function (obj) {
  2664. //防止拖动图标即打开了桌面应用
  2665. U.MD.D.click(this, obj);
  2666. }, [_tcStudentDeskIconInfo[i]])
  2667. }, _frag); //
  2668. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2669. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2670. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2671. }
  2672. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2673. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2674. _content = $$("div", {
  2675. className: "U_MD_D_KO",
  2676. "onmousedown": U.UF.C.closure(function (obj) {
  2677. //防止拖动图标即打开了桌面应用
  2678. U.MD.D.click(this, obj);
  2679. }, [_szscStudentDeskIconInfo[i]]),
  2680. "onclick": U.UF.C.closure(function (obj) {
  2681. //防止拖动图标即打开了桌面应用
  2682. U.MD.D.click(this, obj);
  2683. }, [_szscStudentDeskIconInfo[i]])
  2684. }, _frag); //
  2685. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2686. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2687. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2688. }
  2689. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2690. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2691. _content = $$("div", {
  2692. className: "U_MD_D_KO",
  2693. "onmousedown": U.UF.C.closure(function (obj) {
  2694. //防止拖动图标即打开了桌面应用
  2695. U.MD.D.click(this, obj);
  2696. }, [_studentDesktopIconInfo3[i]]),
  2697. "onclick": U.UF.C.closure(function (obj) {
  2698. //防止拖动图标即打开了桌面应用
  2699. U.MD.D.click(this, obj);
  2700. }, [_studentDesktopIconInfo3[i]])
  2701. }, _frag); //
  2702. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2703. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2704. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2705. }
  2706. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2707. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2708. _content = $$("div", {
  2709. className: "U_MD_D_KO",
  2710. "onmousedown": U.UF.C.closure(function (obj) {
  2711. //防止拖动图标即打开了桌面应用
  2712. U.MD.D.click(this, obj);
  2713. }, [_studentDesktopIconInfo2[i]]),
  2714. "onclick": U.UF.C.closure(function (obj) {
  2715. //防止拖动图标即打开了桌面应用
  2716. U.MD.D.click(this, obj);
  2717. }, [_studentDesktopIconInfo2[i]])
  2718. }, _frag); //
  2719. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2720. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2721. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2722. }
  2723. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2724. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2725. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2726. continue
  2727. }
  2728. _content = $$("div", {
  2729. className: "U_MD_D_KO",
  2730. "onmousedown": U.UF.C.closure(function (obj) {
  2731. //防止拖动图标即打开了桌面应用
  2732. U.MD.D.click(this, obj);
  2733. }, [_wanketeacherDesktopIconInfo[i]]),
  2734. "onclick": U.UF.C.closure(function (obj) {
  2735. //防止拖动图标即打开了桌面应用
  2736. U.MD.D.click(this, obj);
  2737. }, [_wanketeacherDesktopIconInfo[i]])
  2738. }, _frag); //
  2739. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2740. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2741. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2742. }
  2743. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2744. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2745. _content = $$("div", {
  2746. className: "U_MD_D_KO",
  2747. "onmousedown": U.UF.C.closure(function (obj) {
  2748. //防止拖动图标即打开了桌面应用
  2749. U.MD.D.click(this, obj);
  2750. }, [_wankeAdminDesktopIconInfo[i]]),
  2751. "onclick": U.UF.C.closure(function (obj) {
  2752. //防止拖动图标即打开了桌面应用
  2753. U.MD.D.click(this, obj);
  2754. }, [_wankeAdminDesktopIconInfo[i]])
  2755. }, _frag); //
  2756. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2757. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2758. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2759. }
  2760. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2761. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2762. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2763. continue
  2764. }
  2765. _content = $$("div", {
  2766. className: "U_MD_D_KO",
  2767. "onmousedown": U.UF.C.closure(function (obj) {
  2768. //防止拖动图标即打开了桌面应用
  2769. U.MD.D.click(this, obj);
  2770. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2771. "onclick": U.UF.C.closure(function (obj) {
  2772. //防止拖动图标即打开了桌面应用
  2773. U.MD.D.click(this, obj);
  2774. }, [_scnuaiTeacherDeskIconInfo[i]])
  2775. }, _frag); //
  2776. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2777. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2778. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2779. }
  2780. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2781. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2782. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2783. continue
  2784. }
  2785. _content = $$("div", {
  2786. className: "U_MD_D_KO",
  2787. "onmousedown": U.UF.C.closure(function (obj) {
  2788. //防止拖动图标即打开了桌面应用
  2789. U.MD.D.click(this, obj);
  2790. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2791. "onclick": U.UF.C.closure(function (obj) {
  2792. //防止拖动图标即打开了桌面应用
  2793. U.MD.D.click(this, obj);
  2794. }, [_BSDNSteacherDesktopIconInfo[i]])
  2795. }, _frag); //
  2796. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2797. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2798. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2799. }
  2800. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2801. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2802. _content = $$("div", {
  2803. className: "U_MD_D_KO",
  2804. "onmousedown": U.UF.C.closure(function (obj) {
  2805. //防止拖动图标即打开了桌面应用
  2806. U.MD.D.click(this, obj);
  2807. }, [_scnuaiAdminDeskIconInfo[i]]),
  2808. "onclick": U.UF.C.closure(function (obj) {
  2809. //防止拖动图标即打开了桌面应用
  2810. U.MD.D.click(this, obj);
  2811. }, [_scnuaiAdminDeskIconInfo[i]])
  2812. }, _frag); //
  2813. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2814. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2815. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2816. }
  2817. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2818. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2819. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2820. continue
  2821. }
  2822. _content = $$("div", {
  2823. className: "U_MD_D_KO",
  2824. "onmousedown": U.UF.C.closure(function (obj) {
  2825. //防止拖动图标即打开了桌面应用
  2826. U.MD.D.click(this, obj);
  2827. }, [_jccssylTeacherDeskIconInfo[i]]),
  2828. "onclick": U.UF.C.closure(function (obj) {
  2829. //防止拖动图标即打开了桌面应用
  2830. U.MD.D.click(this, obj);
  2831. }, [_jccssylTeacherDeskIconInfo[i]])
  2832. }, _frag); //
  2833. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2834. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2835. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2836. }
  2837. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2838. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2839. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2840. continue
  2841. }
  2842. _content = $$("div", {
  2843. className: "U_MD_D_KO",
  2844. "onmousedown": U.UF.C.closure(function (obj) {
  2845. //防止拖动图标即打开了桌面应用
  2846. U.MD.D.click(this, obj);
  2847. }, [_caleTeacherDeskIconInfo[i]]),
  2848. "onclick": U.UF.C.closure(function (obj) {
  2849. //防止拖动图标即打开了桌面应用
  2850. U.MD.D.click(this, obj);
  2851. }, [_caleTeacherDeskIconInfo[i]])
  2852. }, _frag); //
  2853. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2854. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2855. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2856. }
  2857. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2858. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2859. _content = $$("div", {
  2860. className: "U_MD_D_KO",
  2861. "onmousedown": U.UF.C.closure(function (obj) {
  2862. //防止拖动图标即打开了桌面应用
  2863. U.MD.D.click(this, obj);
  2864. }, [_tpcOrganizerDeskIconInfo[i]]),
  2865. "onclick": U.UF.C.closure(function (obj) {
  2866. //防止拖动图标即打开了桌面应用
  2867. U.MD.D.click(this, obj);
  2868. }, [_tpcOrganizerDeskIconInfo[i]])
  2869. }, _frag); //
  2870. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2871. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2872. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2873. }
  2874. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2875. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2876. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2877. continue
  2878. }
  2879. _content = $$("div", {
  2880. className: "U_MD_D_KO",
  2881. "onmousedown": U.UF.C.closure(function (obj) {
  2882. //防止拖动图标即打开了桌面应用
  2883. U.MD.D.click(this, obj);
  2884. }, [_tpcTeacherDeskIconInfo[i]]),
  2885. "onclick": U.UF.C.closure(function (obj) {
  2886. //防止拖动图标即打开了桌面应用
  2887. U.MD.D.click(this, obj);
  2888. }, [_tpcTeacherDeskIconInfo[i]])
  2889. }, _frag); //
  2890. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2891. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2892. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2893. }
  2894. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2895. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2896. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2897. continue
  2898. }
  2899. _content = $$("div", {
  2900. className: "U_MD_D_KO",
  2901. "onmousedown": U.UF.C.closure(function (obj) {
  2902. //防止拖动图标即打开了桌面应用
  2903. U.MD.D.click(this, obj);
  2904. }, [_teacherDesktopIconInfo2[i]]),
  2905. "onclick": U.UF.C.closure(function (obj) {
  2906. //防止拖动图标即打开了桌面应用
  2907. U.MD.D.click(this, obj);
  2908. }, [_teacherDesktopIconInfo2[i]])
  2909. }, _frag); //
  2910. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2911. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2912. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2913. }
  2914. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2915. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2916. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2917. continue
  2918. }
  2919. _content = $$("div", {
  2920. className: "U_MD_D_KO",
  2921. "onmousedown": U.UF.C.closure(function (obj) {
  2922. //防止拖动图标即打开了桌面应用
  2923. U.MD.D.click(this, obj);
  2924. }, [_thuioeTeacherDeskIconInfo[i]]),
  2925. "onclick": U.UF.C.closure(function (obj) {
  2926. //防止拖动图标即打开了桌面应用
  2927. U.MD.D.click(this, obj);
  2928. }, [_thuioeTeacherDeskIconInfo[i]])
  2929. }, _frag); //
  2930. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2931. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2932. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2933. }
  2934. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2935. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2936. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2937. continue
  2938. }
  2939. _content = $$("div", {
  2940. className: "U_MD_D_KO",
  2941. "onmousedown": U.UF.C.closure(function (obj) {
  2942. //防止拖动图标即打开了桌面应用
  2943. U.MD.D.click(this, obj);
  2944. }, [_lotechTeacherDeskIconInfo[i]]),
  2945. "onclick": U.UF.C.closure(function (obj) {
  2946. //防止拖动图标即打开了桌面应用
  2947. U.MD.D.click(this, obj);
  2948. }, [_lotechTeacherDeskIconInfo[i]])
  2949. }, _frag); //
  2950. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2951. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  2952. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  2953. }//
  2954. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2955. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  2956. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2957. continue
  2958. }
  2959. _content = $$("div", {
  2960. className: "U_MD_D_KO",
  2961. "onmousedown": U.UF.C.closure(function (obj) {
  2962. //防止拖动图标即打开了桌面应用
  2963. U.MD.D.click(this, obj);
  2964. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  2965. "onclick": U.UF.C.closure(function (obj) {
  2966. //防止拖动图标即打开了桌面应用
  2967. U.MD.D.click(this, obj);
  2968. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  2969. }, _frag); //
  2970. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2971. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  2972. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2973. }
  2974. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2975. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  2976. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  2977. continue
  2978. }
  2979. _content = $$("div", {
  2980. className: "U_MD_D_KO",
  2981. "onmousedown": U.UF.C.closure(function (obj) {
  2982. //防止拖动图标即打开了桌面应用
  2983. U.MD.D.click(this, obj);
  2984. }, [_siesTeacherDeskIconInfo[i]]),
  2985. "onclick": U.UF.C.closure(function (obj) {
  2986. //防止拖动图标即打开了桌面应用
  2987. U.MD.D.click(this, obj);
  2988. }, [_siesTeacherDeskIconInfo[i]])
  2989. }, _frag); //
  2990. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2991. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  2992. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  2993. }
  2994. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2995. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  2996. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2997. continue
  2998. }
  2999. _content = $$("div", {
  3000. className: "U_MD_D_KO",
  3001. "onmousedown": U.UF.C.closure(function (obj) {
  3002. //防止拖动图标即打开了桌面应用
  3003. U.MD.D.click(this, obj);
  3004. }, [_guzmsTeacherDeskIconInfo[i]]),
  3005. "onclick": U.UF.C.closure(function (obj) {
  3006. //防止拖动图标即打开了桌面应用
  3007. U.MD.D.click(this, obj);
  3008. }, [_guzmsTeacherDeskIconInfo[i]])
  3009. }, _frag); //
  3010. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3011. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3012. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3013. }
  3014. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3015. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3016. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3017. continue
  3018. }
  3019. _content = $$("div", {
  3020. className: "U_MD_D_KO",
  3021. "onmousedown": U.UF.C.closure(function (obj) {
  3022. //防止拖动图标即打开了桌面应用
  3023. U.MD.D.click(this, obj);
  3024. }, [_longhuaTeacherDeskIconInfo[i]]),
  3025. "onclick": U.UF.C.closure(function (obj) {
  3026. //防止拖动图标即打开了桌面应用
  3027. U.MD.D.click(this, obj);
  3028. }, [_longhuaTeacherDeskIconInfo[i]])
  3029. }, _frag); //
  3030. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3031. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3032. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3033. }
  3034. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3035. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3036. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3037. continue
  3038. }
  3039. _content = $$("div", {
  3040. className: "U_MD_D_KO",
  3041. "onmousedown": U.UF.C.closure(function (obj) {
  3042. //防止拖动图标即打开了桌面应用
  3043. U.MD.D.click(this, obj);
  3044. }, [_ytyTeacherDeskIconInfo[i]]),
  3045. "onclick": U.UF.C.closure(function (obj) {
  3046. //防止拖动图标即打开了桌面应用
  3047. U.MD.D.click(this, obj);
  3048. }, [_ytyTeacherDeskIconInfo[i]])
  3049. }, _frag); //
  3050. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3051. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3052. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3053. }
  3054. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3055. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3056. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3057. continue
  3058. }
  3059. _content = $$("div", {
  3060. className: "U_MD_D_KO",
  3061. "onmousedown": U.UF.C.closure(function (obj) {
  3062. //防止拖动图标即打开了桌面应用
  3063. U.MD.D.click(this, obj);
  3064. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3065. "onclick": U.UF.C.closure(function (obj) {
  3066. //防止拖动图标即打开了桌面应用
  3067. U.MD.D.click(this, obj);
  3068. }, [_yunhaiTeacherDeskIconInfo[i]])
  3069. }, _frag); //
  3070. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3071. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3072. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3073. } //_hkStudentDeskIconInfo
  3074. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3075. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3076. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3077. continue
  3078. }
  3079. _content = $$("div", {
  3080. className: "U_MD_D_KO",
  3081. "onmousedown": U.UF.C.closure(function (obj) {
  3082. //防止拖动图标即打开了桌面应用
  3083. U.MD.D.click(this, obj);
  3084. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3085. "onclick": U.UF.C.closure(function (obj) {
  3086. //防止拖动图标即打开了桌面应用
  3087. U.MD.D.click(this, obj);
  3088. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3089. }, _frag); //
  3090. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3091. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3092. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3093. }
  3094. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3095. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3096. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3097. continue
  3098. }
  3099. _content = $$("div", {
  3100. className: "U_MD_D_KO",
  3101. "onmousedown": U.UF.C.closure(function (obj) {
  3102. //防止拖动图标即打开了桌面应用
  3103. U.MD.D.click(this, obj);
  3104. }, [_hkTeacherDeskIconInfo[i]]),
  3105. "onclick": U.UF.C.closure(function (obj) {
  3106. //防止拖动图标即打开了桌面应用
  3107. U.MD.D.click(this, obj);
  3108. }, [_hkTeacherDeskIconInfo[i]])
  3109. }, _frag); //
  3110. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3111. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3112. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3113. }
  3114. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3115. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3116. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3117. continue
  3118. }
  3119. _content = $$("div", {
  3120. className: "U_MD_D_KO",
  3121. "onmousedown": U.UF.C.closure(function (obj) {
  3122. //防止拖动图标即打开了桌面应用
  3123. U.MD.D.click(this, obj);
  3124. }, [_hkaceTeacherDeskIconInfo[i]]),
  3125. "onclick": U.UF.C.closure(function (obj) {
  3126. //防止拖动图标即打开了桌面应用
  3127. U.MD.D.click(this, obj);
  3128. }, [_hkaceTeacherDeskIconInfo[i]])
  3129. }, _frag); //
  3130. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3131. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3132. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3133. }
  3134. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3135. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3136. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3137. continue
  3138. }
  3139. _content = $$("div", {
  3140. className: "U_MD_D_KO",
  3141. "onmousedown": U.UF.C.closure(function (obj) {
  3142. //防止拖动图标即打开了桌面应用
  3143. U.MD.D.click(this, obj);
  3144. }, [_cocobizTeacherDeskIconInfo[i]]),
  3145. "onclick": U.UF.C.closure(function (obj) {
  3146. //防止拖动图标即打开了桌面应用
  3147. U.MD.D.click(this, obj);
  3148. }, [_cocobizTeacherDeskIconInfo[i]])
  3149. }, _frag); //
  3150. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3151. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3152. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3153. }
  3154. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3155. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3156. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3157. continue
  3158. }
  3159. _content = $$("div", {
  3160. className: "U_MD_D_KO",
  3161. "onmousedown": U.UF.C.closure(function (obj) {
  3162. //防止拖动图标即打开了桌面应用
  3163. U.MD.D.click(this, obj);
  3164. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3165. "onclick": U.UF.C.closure(function (obj) {
  3166. //防止拖动图标即打开了桌面应用
  3167. U.MD.D.click(this, obj);
  3168. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3169. }, _frag); //
  3170. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3171. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3172. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3173. }
  3174. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3175. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3176. _content = $$("div", {
  3177. className: "U_MD_D_KO",
  3178. "onmousedown": U.UF.C.closure(function (obj) {
  3179. //防止拖动图标即打开了桌面应用
  3180. U.MD.D.click(this, obj);
  3181. }, [_gdjgAdminDeskIconInfo[i]]),
  3182. "onclick": U.UF.C.closure(function (obj) {
  3183. //防止拖动图标即打开了桌面应用
  3184. U.MD.D.click(this, obj);
  3185. }, [_gdjgAdminDeskIconInfo[i]])
  3186. }, _frag); //
  3187. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3188. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3189. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3190. }
  3191. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3192. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3193. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3194. continue
  3195. }
  3196. _content = $$("div", {
  3197. className: "U_MD_D_KO",
  3198. "onmousedown": U.UF.C.closure(function (obj) {
  3199. //防止拖动图标即打开了桌面应用
  3200. U.MD.D.click(this, obj);
  3201. }, [_gdjgTeacherDeskIconInfo[i]]),
  3202. "onclick": U.UF.C.closure(function (obj) {
  3203. //防止拖动图标即打开了桌面应用
  3204. U.MD.D.click(this, obj);
  3205. }, [_gdjgTeacherDeskIconInfo[i]])
  3206. }, _frag); //
  3207. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3208. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3209. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3210. }
  3211. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3212. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3213. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3214. continue
  3215. }
  3216. _content = $$("div", {
  3217. className: "U_MD_D_KO",
  3218. "onmousedown": U.UF.C.closure(function (obj) {
  3219. //防止拖动图标即打开了桌面应用
  3220. U.MD.D.click(this, obj);
  3221. }, [_szherTeacherDeskIconInfo[i]]),
  3222. "onclick": U.UF.C.closure(function (obj) {
  3223. //防止拖动图标即打开了桌面应用
  3224. U.MD.D.click(this, obj);
  3225. }, [_szherTeacherDeskIconInfo[i]])
  3226. }, _frag); //
  3227. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3228. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3229. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3230. }
  3231. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3232. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3233. _content = $$("div", {
  3234. className: "U_MD_D_KO",
  3235. "onmousedown": U.UF.C.closure(function (obj) {
  3236. //防止拖动图标即打开了桌面应用
  3237. U.MD.D.click(this, obj);
  3238. }, [_heyuannAdminDeskIconInfo[i]]),
  3239. "onclick": U.UF.C.closure(function (obj) {
  3240. //防止拖动图标即打开了桌面应用
  3241. U.MD.D.click(this, obj);
  3242. }, [_heyuannAdminDeskIconInfo[i]])
  3243. }, _frag); //
  3244. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3245. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3246. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3247. }
  3248. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3249. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3250. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3251. continue
  3252. }
  3253. _content = $$("div", {
  3254. className: "U_MD_D_KO",
  3255. "onmousedown": U.UF.C.closure(function (obj) {
  3256. //防止拖动图标即打开了桌面应用
  3257. U.MD.D.click(this, obj);
  3258. }, [_heyuanTeacherDeskIconInfo[i]]),
  3259. "onclick": U.UF.C.closure(function (obj) {
  3260. //防止拖动图标即打开了桌面应用
  3261. U.MD.D.click(this, obj);
  3262. }, [_heyuanTeacherDeskIconInfo[i]])
  3263. }, _frag); //
  3264. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3265. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3266. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3267. } //
  3268. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3269. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3270. _content = $$("div", {
  3271. className: "U_MD_D_KO",
  3272. "onmousedown": U.UF.C.closure(function (obj) {
  3273. //防止拖动图标即打开了桌面应用
  3274. U.MD.D.click(this, obj);
  3275. }, [_dseiAdminDeskIconInfo[i]]),
  3276. "onclick": U.UF.C.closure(function (obj) {
  3277. //防止拖动图标即打开了桌面应用
  3278. U.MD.D.click(this, obj);
  3279. }, [_dseiAdminDeskIconInfo[i]])
  3280. }, _frag); //
  3281. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3282. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3283. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3284. }
  3285. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3286. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3287. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3288. continue
  3289. }
  3290. _content = $$("div", {
  3291. className: "U_MD_D_KO",
  3292. "onmousedown": U.UF.C.closure(function (obj) {
  3293. //防止拖动图标即打开了桌面应用
  3294. U.MD.D.click(this, obj);
  3295. }, [_dseiTeacherDeskIconInfo[i]]),
  3296. "onclick": U.UF.C.closure(function (obj) {
  3297. //防止拖动图标即打开了桌面应用
  3298. U.MD.D.click(this, obj);
  3299. }, [_dseiTeacherDeskIconInfo[i]])
  3300. }, _frag); //
  3301. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3302. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3303. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3304. } //
  3305. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3306. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3307. _content = $$("div", {
  3308. className: "U_MD_D_KO",
  3309. "onmousedown": U.UF.C.closure(function (obj) {
  3310. //防止拖动图标即打开了桌面应用
  3311. U.MD.D.click(this, obj);
  3312. }, [_chjyjAdminDeskIconInfo[i]]),
  3313. "onclick": U.UF.C.closure(function (obj) {
  3314. //防止拖动图标即打开了桌面应用
  3315. U.MD.D.click(this, obj);
  3316. }, [_chjyjAdminDeskIconInfo[i]])
  3317. }, _frag); //
  3318. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3319. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3320. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3321. }//
  3322. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3323. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3324. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3325. continue
  3326. }
  3327. _content = $$("div", {
  3328. className: "U_MD_D_KO",
  3329. "onmousedown": U.UF.C.closure(function (obj) {
  3330. //防止拖动图标即打开了桌面应用
  3331. U.MD.D.click(this, obj);
  3332. }, [_chjyjTeacherDeskIconInfo[i]]),
  3333. "onclick": U.UF.C.closure(function (obj) {
  3334. //防止拖动图标即打开了桌面应用
  3335. U.MD.D.click(this, obj);
  3336. }, [_chjyjTeacherDeskIconInfo[i]])
  3337. }, _frag); //
  3338. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3339. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3340. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3341. }
  3342. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3343. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3344. _content = $$("div", {
  3345. className: "U_MD_D_KO",
  3346. "onmousedown": U.UF.C.closure(function (obj) {
  3347. //防止拖动图标即打开了桌面应用
  3348. U.MD.D.click(this, obj);
  3349. }, [_szjkyAdminDeskIconInfo[i]]),
  3350. "onclick": U.UF.C.closure(function (obj) {
  3351. //防止拖动图标即打开了桌面应用
  3352. U.MD.D.click(this, obj);
  3353. }, [_szjkyAdminDeskIconInfo[i]])
  3354. }, _frag); //
  3355. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3356. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3357. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3358. }//
  3359. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3360. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3361. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3362. continue
  3363. }
  3364. _content = $$("div", {
  3365. className: "U_MD_D_KO",
  3366. "onmousedown": U.UF.C.closure(function (obj) {
  3367. //防止拖动图标即打开了桌面应用
  3368. U.MD.D.click(this, obj);
  3369. }, [_szjkyTeacherDeskIconInfo[i]]),
  3370. "onclick": U.UF.C.closure(function (obj) {
  3371. //防止拖动图标即打开了桌面应用
  3372. U.MD.D.click(this, obj);
  3373. }, [_szjkyTeacherDeskIconInfo[i]])
  3374. }, _frag); //
  3375. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3376. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3377. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3378. }
  3379. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3380. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3381. _content = $$("div", {
  3382. className: "U_MD_D_KO",
  3383. "onmousedown": U.UF.C.closure(function (obj) {
  3384. //防止拖动图标即打开了桌面应用
  3385. U.MD.D.click(this, obj);
  3386. }, [_x020201AdminDeskIconInfo[i]]),
  3387. "onclick": U.UF.C.closure(function (obj) {
  3388. //防止拖动图标即打开了桌面应用
  3389. U.MD.D.click(this, obj);
  3390. }, [_x020201AdminDeskIconInfo[i]])
  3391. }, _frag); //
  3392. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3393. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3394. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3395. }//
  3396. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3397. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3398. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3399. continue
  3400. }
  3401. _content = $$("div", {
  3402. className: "U_MD_D_KO",
  3403. "onmousedown": U.UF.C.closure(function (obj) {
  3404. //防止拖动图标即打开了桌面应用
  3405. U.MD.D.click(this, obj);
  3406. }, [_x020201TeacherDeskIconInfo[i]]),
  3407. "onclick": U.UF.C.closure(function (obj) {
  3408. //防止拖动图标即打开了桌面应用
  3409. U.MD.D.click(this, obj);
  3410. }, [_x020201TeacherDeskIconInfo[i]])
  3411. }, _frag); //
  3412. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3413. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3414. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3415. }
  3416. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3417. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3418. _content = $$("div", {
  3419. className: "U_MD_D_KO",
  3420. "onmousedown": U.UF.C.closure(function (obj) {
  3421. //防止拖动图标即打开了桌面应用
  3422. U.MD.D.click(this, obj);
  3423. }, [_SCNUETAdminDeskIconInfo[i]]),
  3424. "onclick": U.UF.C.closure(function (obj) {
  3425. //防止拖动图标即打开了桌面应用
  3426. U.MD.D.click(this, obj);
  3427. }, [_SCNUETAdminDeskIconInfo[i]])
  3428. }, _frag); //
  3429. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3430. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3431. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3432. }//
  3433. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3434. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3435. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3436. continue
  3437. }
  3438. _content = $$("div", {
  3439. className: "U_MD_D_KO",
  3440. "onmousedown": U.UF.C.closure(function (obj) {
  3441. //防止拖动图标即打开了桌面应用
  3442. U.MD.D.click(this, obj);
  3443. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3444. "onclick": U.UF.C.closure(function (obj) {
  3445. //防止拖动图标即打开了桌面应用
  3446. U.MD.D.click(this, obj);
  3447. }, [_SCNUETTeacherDeskIconInfo[i]])
  3448. }, _frag); //
  3449. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3450. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3451. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3452. }
  3453. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3454. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3455. _content = $$("div", {
  3456. className: "U_MD_D_KO",
  3457. "onmousedown": U.UF.C.closure(function (obj) {
  3458. //防止拖动图标即打开了桌面应用
  3459. U.MD.D.click(this, obj);
  3460. }, [_futianAdminDeskIconInfo[i]]),
  3461. "onclick": U.UF.C.closure(function (obj) {
  3462. //防止拖动图标即打开了桌面应用
  3463. U.MD.D.click(this, obj);
  3464. }, [_futianAdminDeskIconInfo[i]])
  3465. }, _frag); //
  3466. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3467. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3468. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3469. }
  3470. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3471. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3472. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3473. continue
  3474. }
  3475. _content = $$("div", {
  3476. className: "U_MD_D_KO",
  3477. "onmousedown": U.UF.C.closure(function (obj) {
  3478. //防止拖动图标即打开了桌面应用
  3479. U.MD.D.click(this, obj);
  3480. }, [_futianTeacherDeskIconInfo[i]]),
  3481. "onclick": U.UF.C.closure(function (obj) {
  3482. //防止拖动图标即打开了桌面应用
  3483. U.MD.D.click(this, obj);
  3484. }, [_futianTeacherDeskIconInfo[i]])
  3485. }, _frag); //
  3486. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3487. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3488. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3489. }
  3490. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3491. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3492. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3493. continue
  3494. }
  3495. _content = $$("div", {
  3496. className: "U_MD_D_KO",
  3497. "onmousedown": U.UF.C.closure(function (obj) {
  3498. //防止拖动图标即打开了桌面应用
  3499. U.MD.D.click(this, obj);
  3500. }, [_MingdeTeacherDeskIcon[i]]),
  3501. "onclick": U.UF.C.closure(function (obj) {
  3502. //防止拖动图标即打开了桌面应用
  3503. U.MD.D.click(this, obj);
  3504. }, [_MingdeTeacherDeskIcon[i]])
  3505. }, _frag); //
  3506. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3507. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3508. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3509. }
  3510. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3511. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3512. _content = $$("div", {
  3513. className: "U_MD_D_KO",
  3514. "onmousedown": U.UF.C.closure(function (obj) {
  3515. //防止拖动图标即打开了桌面应用
  3516. U.MD.D.click(this, obj);
  3517. }, [_lhsAdminDesktopIconInfo[i]]),
  3518. "onclick": U.UF.C.closure(function (obj) {
  3519. //防止拖动图标即打开了桌面应用
  3520. U.MD.D.click(this, obj);
  3521. }, [_lhsAdminDesktopIconInfo[i]])
  3522. }, _frag); //
  3523. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3524. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3525. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3526. }
  3527. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3528. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3529. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3530. continue
  3531. }
  3532. _content = $$("div", {
  3533. className: "U_MD_D_KO",
  3534. "onmousedown": U.UF.C.closure(function (obj) {
  3535. //防止拖动图标即打开了桌面应用
  3536. U.MD.D.click(this, obj);
  3537. }, [_lhsteacherDesktopIconInfo[i]]),
  3538. "onclick": U.UF.C.closure(function (obj) {
  3539. //防止拖动图标即打开了桌面应用
  3540. U.MD.D.click(this, obj);
  3541. }, [_lhsteacherDesktopIconInfo[i]])
  3542. }, _frag); //
  3543. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3544. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3545. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3546. }
  3547. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3548. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3549. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3550. continue
  3551. }
  3552. _content = $$("div", {
  3553. className: "U_MD_D_KO",
  3554. "onmousedown": U.UF.C.closure(function (obj) {
  3555. //防止拖动图标即打开了桌面应用
  3556. U.MD.D.click(this, obj);
  3557. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3558. "onclick": U.UF.C.closure(function (obj) {
  3559. //防止拖动图标即打开了桌面应用
  3560. U.MD.D.click(this, obj);
  3561. }, [_zhoujiateacherDesktopIconInfo[i]])
  3562. }, _frag); //
  3563. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3564. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3565. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3566. }
  3567. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3568. for (i = 0; i < _hanDeskIcon.length; i++) {
  3569. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3570. continue
  3571. }
  3572. _content = $$("div", {
  3573. className: "U_MD_D_KO",
  3574. "onmousedown": U.UF.C.closure(function (obj) {
  3575. //防止拖动图标即打开了桌面应用
  3576. U.MD.D.click(this, obj);
  3577. }, [_hanDeskIcon[i]]),
  3578. "onclick": U.UF.C.closure(function (obj) {
  3579. //防止拖动图标即打开了桌面应用
  3580. U.MD.D.click(this, obj);
  3581. }, [_hanDeskIcon[i]])
  3582. }, _frag); //
  3583. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3584. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3585. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3586. }
  3587. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3588. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3589. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3590. continue
  3591. }
  3592. _content = $$("div", {
  3593. className: "U_MD_D_KO",
  3594. "onmousedown": U.UF.C.closure(function (obj) {
  3595. //防止拖动图标即打开了桌面应用
  3596. U.MD.D.click(this, obj);
  3597. }, [_orgStemDeskIcon[i]]),
  3598. "onclick": U.UF.C.closure(function (obj) {
  3599. //防止拖动图标即打开了桌面应用
  3600. U.MD.D.click(this, obj);
  3601. }, [_orgStemDeskIcon[i]])
  3602. }, _frag); //
  3603. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3604. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3605. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3606. }
  3607. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3608. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3609. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3610. continue
  3611. }
  3612. _content = $$("div", {
  3613. className: "U_MD_D_KO",
  3614. "onmousedown": U.UF.C.closure(function (obj) {
  3615. //防止拖动图标即打开了桌面应用
  3616. U.MD.D.click(this, obj);
  3617. }, [_szulsDeskIcon[i]]),
  3618. "onclick": U.UF.C.closure(function (obj) {
  3619. //防止拖动图标即打开了桌面应用
  3620. U.MD.D.click(this, obj);
  3621. }, [_szulsDeskIcon[i]])
  3622. }, _frag); //
  3623. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3624. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3625. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3626. }
  3627. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3628. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3629. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3630. continue
  3631. }
  3632. _content = $$("div", {
  3633. className: "U_MD_D_KO",
  3634. "onmousedown": U.UF.C.closure(function (obj) {
  3635. //防止拖动图标即打开了桌面应用
  3636. U.MD.D.click(this, obj);
  3637. }, [_orgDesktopIconInfo[i]]),
  3638. "onclick": U.UF.C.closure(function (obj) {
  3639. //防止拖动图标即打开了桌面应用
  3640. U.MD.D.click(this, obj);
  3641. }, [_orgDesktopIconInfo[i]])
  3642. }, _frag); //
  3643. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3644. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3645. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3646. }
  3647. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3648. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3649. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3650. continue
  3651. }
  3652. _content = $$("div", {
  3653. className: "U_MD_D_KO",
  3654. "onmousedown": U.UF.C.closure(function (obj) {
  3655. //防止拖动图标即打开了桌面应用
  3656. U.MD.D.click(this, obj);
  3657. }, [_schoolDesktopIconInfo[i]]),
  3658. "onclick": U.UF.C.closure(function (obj) {
  3659. //防止拖动图标即打开了桌面应用
  3660. U.MD.D.click(this, obj);
  3661. }, [_schoolDesktopIconInfo[i]])
  3662. }, _frag); //
  3663. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3664. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3665. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3666. }
  3667. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3668. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3669. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3670. continue
  3671. }
  3672. _content = $$("div", {
  3673. className: "U_MD_D_KO",
  3674. "onmousedown": U.UF.C.closure(function (obj) {
  3675. //防止拖动图标即打开了桌面应用
  3676. U.MD.D.click(this, obj);
  3677. }, [_GMteacherDesktopIconInfo[i]]),
  3678. "onclick": U.UF.C.closure(function (obj) {
  3679. //防止拖动图标即打开了桌面应用
  3680. U.MD.D.click(this, obj);
  3681. }, [_GMteacherDesktopIconInfo[i]])
  3682. }, _frag); //
  3683. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3684. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3685. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3686. }
  3687. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3688. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3689. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3690. continue
  3691. }
  3692. _content = $$("div", {
  3693. className: "U_MD_D_KO",
  3694. "onmousedown": U.UF.C.closure(function (obj) {
  3695. //防止拖动图标即打开了桌面应用
  3696. U.MD.D.click(this, obj);
  3697. }, [_SONGteacherDesktopIconInfo[i]]),
  3698. "onclick": U.UF.C.closure(function (obj) {
  3699. //防止拖动图标即打开了桌面应用
  3700. U.MD.D.click(this, obj);
  3701. }, [_SONGteacherDesktopIconInfo[i]])
  3702. }, _frag); //
  3703. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3704. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3705. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3706. }
  3707. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3708. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3709. _content = $$("div", {
  3710. className: "U_MD_D_KO",
  3711. "onmousedown": U.UF.C.closure(function (obj) {
  3712. //防止拖动图标即打开了桌面应用
  3713. U.MD.D.click(this, obj);
  3714. }, [_GMstudentDesktopIconInfo[i]]),
  3715. "onclick": U.UF.C.closure(function (obj) {
  3716. //防止拖动图标即打开了桌面应用
  3717. U.MD.D.click(this, obj);
  3718. }, [_GMstudentDesktopIconInfo[i]])
  3719. }, _frag); //
  3720. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3721. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3722. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3723. }
  3724. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3725. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3726. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3727. continue
  3728. }
  3729. _content = $$("div", {
  3730. className: "U_MD_D_KO",
  3731. "onmousedown": U.UF.C.closure(function (obj) {
  3732. //防止拖动图标即打开了桌面应用
  3733. U.MD.D.click(this, obj);
  3734. }, [_tcTeacherDeskIconInfo[i]]),
  3735. "onclick": U.UF.C.closure(function (obj) {
  3736. //防止拖动图标即打开了桌面应用
  3737. U.MD.D.click(this, obj);
  3738. }, [_tcTeacherDeskIconInfo[i]])
  3739. }, _frag); //
  3740. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3741. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3742. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3743. }
  3744. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3745. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3746. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3747. continue
  3748. }
  3749. _content = $$("div", {
  3750. className: "U_MD_D_KO",
  3751. "onmousedown": U.UF.C.closure(function (obj) {
  3752. //防止拖动图标即打开了桌面应用
  3753. U.MD.D.click(this, obj);
  3754. }, [_tcOrganizerDeskIconInfo[i]]),
  3755. "onclick": U.UF.C.closure(function (obj) {
  3756. //防止拖动图标即打开了桌面应用
  3757. U.MD.D.click(this, obj);
  3758. }, [_tcOrganizerDeskIconInfo[i]])
  3759. }, _frag); //
  3760. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3761. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3762. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3763. }
  3764. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3765. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3766. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3767. continue
  3768. }
  3769. _content = $$("div", {
  3770. className: "U_MD_D_KO",
  3771. "onmousedown": U.UF.C.closure(function (obj) {
  3772. //防止拖动图标即打开了桌面应用
  3773. U.MD.D.click(this, obj);
  3774. }, [_szscTeacherDeskIconInfo[i]]),
  3775. "onclick": U.UF.C.closure(function (obj) {
  3776. //防止拖动图标即打开了桌面应用
  3777. U.MD.D.click(this, obj);
  3778. }, [_szscTeacherDeskIconInfo[i]])
  3779. }, _frag); //
  3780. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3781. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3782. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3783. }
  3784. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3785. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3786. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3787. continue
  3788. }
  3789. _content = $$("div", {
  3790. className: "U_MD_D_KO",
  3791. "onmousedown": U.UF.C.closure(function (obj) {
  3792. //防止拖动图标即打开了桌面应用
  3793. U.MD.D.click(this, obj);
  3794. }, [_szscOrganizerDeskIconInfo[i]]),
  3795. "onclick": U.UF.C.closure(function (obj) {
  3796. //防止拖动图标即打开了桌面应用
  3797. U.MD.D.click(this, obj);
  3798. }, [_szscOrganizerDeskIconInfo[i]])
  3799. }, _frag); //
  3800. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3801. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3802. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3803. }
  3804. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3805. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3806. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3807. continue
  3808. }
  3809. _content = $$("div", {
  3810. className: "U_MD_D_KO",
  3811. "onmousedown": U.UF.C.closure(function (obj) {
  3812. //防止拖动图标即打开了桌面应用
  3813. U.MD.D.click(this, obj);
  3814. }, [_nsfxTeacherDeskIconInfo[i]]),
  3815. "onclick": U.UF.C.closure(function (obj) {
  3816. //防止拖动图标即打开了桌面应用
  3817. U.MD.D.click(this, obj);
  3818. }, [_nsfxTeacherDeskIconInfo[i]])
  3819. }, _frag); //
  3820. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3821. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3822. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3823. }
  3824. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3825. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3826. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3827. continue
  3828. }
  3829. _content = $$("div", {
  3830. className: "U_MD_D_KO",
  3831. "onmousedown": U.UF.C.closure(function (obj) {
  3832. //防止拖动图标即打开了桌面应用
  3833. U.MD.D.click(this, obj);
  3834. }, [_stiaTeacherDeskIconInfo[i]]),
  3835. "onclick": U.UF.C.closure(function (obj) {
  3836. //防止拖动图标即打开了桌面应用
  3837. U.MD.D.click(this, obj);
  3838. }, [_stiaTeacherDeskIconInfo[i]])
  3839. }, _frag); //
  3840. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3841. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3842. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3843. }
  3844. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3845. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3846. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3847. continue
  3848. }
  3849. _content = $$("div", {
  3850. className: "U_MD_D_KO",
  3851. "onmousedown": U.UF.C.closure(function (obj) {
  3852. //防止拖动图标即打开了桌面应用
  3853. U.MD.D.click(this, obj);
  3854. }, [_szdjgTeacherDeskIconInfo[i]]),
  3855. "onclick": U.UF.C.closure(function (obj) {
  3856. //防止拖动图标即打开了桌面应用
  3857. U.MD.D.click(this, obj);
  3858. }, [_szdjgTeacherDeskIconInfo[i]])
  3859. }, _frag); //
  3860. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3861. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3862. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3863. }
  3864. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  3865. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  3866. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3867. continue
  3868. }
  3869. _content = $$("div", {
  3870. className: "U_MD_D_KO",
  3871. "onmousedown": U.UF.C.closure(function (obj) {
  3872. //防止拖动图标即打开了桌面应用
  3873. U.MD.D.click(this, obj);
  3874. }, [_x010607TeacherDeskIconInfo[i]]),
  3875. "onclick": U.UF.C.closure(function (obj) {
  3876. //防止拖动图标即打开了桌面应用
  3877. U.MD.D.click(this, obj);
  3878. }, [_x010607TeacherDeskIconInfo[i]])
  3879. }, _frag); //
  3880. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3881. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  3882. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  3883. }
  3884. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  3885. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  3886. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3887. continue
  3888. }
  3889. _content = $$("div", {
  3890. className: "U_MD_D_KO",
  3891. "onmousedown": U.UF.C.closure(function (obj) {
  3892. //防止拖动图标即打开了桌面应用
  3893. U.MD.D.click(this, obj);
  3894. }, [_xhlyTeacherDeskIconInfo[i]]),
  3895. "onclick": U.UF.C.closure(function (obj) {
  3896. //防止拖动图标即打开了桌面应用
  3897. U.MD.D.click(this, obj);
  3898. }, [_xhlyTeacherDeskIconInfo[i]])
  3899. }, _frag); //
  3900. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3901. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  3902. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3903. }
  3904. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  3905. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  3906. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3907. continue
  3908. }
  3909. _content = $$("div", {
  3910. className: "U_MD_D_KO",
  3911. "onmousedown": U.UF.C.closure(function (obj) {
  3912. //防止拖动图标即打开了桌面应用
  3913. U.MD.D.click(this, obj);
  3914. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  3915. "onclick": U.UF.C.closure(function (obj) {
  3916. //防止拖动图标即打开了桌面应用
  3917. U.MD.D.click(this, obj);
  3918. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  3919. }, _frag); //
  3920. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3921. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  3922. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  3923. }
  3924. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  3925. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  3926. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3927. continue
  3928. }
  3929. _content = $$("div", {
  3930. className: "U_MD_D_KO",
  3931. "onmousedown": U.UF.C.closure(function (obj) {
  3932. //防止拖动图标即打开了桌面应用
  3933. U.MD.D.click(this, obj);
  3934. }, [_x010503TeacherDeskIconInfo[i]]),
  3935. "onclick": U.UF.C.closure(function (obj) {
  3936. //防止拖动图标即打开了桌面应用
  3937. U.MD.D.click(this, obj);
  3938. }, [_x010503TeacherDeskIconInfo[i]])
  3939. }, _frag); //
  3940. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3941. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  3942. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  3943. }
  3944. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  3945. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  3946. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3947. continue
  3948. }
  3949. _content = $$("div", {
  3950. className: "U_MD_D_KO",
  3951. "onmousedown": U.UF.C.closure(function (obj) {
  3952. //防止拖动图标即打开了桌面应用
  3953. U.MD.D.click(this, obj);
  3954. }, [_x010504TeacherDeskIconInfo[i]]),
  3955. "onclick": U.UF.C.closure(function (obj) {
  3956. //防止拖动图标即打开了桌面应用
  3957. U.MD.D.click(this, obj);
  3958. }, [_x010504TeacherDeskIconInfo[i]])
  3959. }, _frag); //
  3960. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3961. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  3962. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  3963. }
  3964. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  3965. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  3966. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3967. continue
  3968. }
  3969. _content = $$("div", {
  3970. className: "U_MD_D_KO",
  3971. "onmousedown": U.UF.C.closure(function (obj) {
  3972. //防止拖动图标即打开了桌面应用
  3973. U.MD.D.click(this, obj);
  3974. }, [_x010204TeacherDeskIconInfo[i]]),
  3975. "onclick": U.UF.C.closure(function (obj) {
  3976. //防止拖动图标即打开了桌面应用
  3977. U.MD.D.click(this, obj);
  3978. }, [_x010204TeacherDeskIconInfo[i]])
  3979. }, _frag); //
  3980. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3981. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  3982. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  3983. }
  3984. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  3985. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  3986. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3987. continue
  3988. }
  3989. _content = $$("div", {
  3990. className: "U_MD_D_KO",
  3991. "onmousedown": U.UF.C.closure(function (obj) {
  3992. //防止拖动图标即打开了桌面应用
  3993. U.MD.D.click(this, obj);
  3994. }, [_trailTeacherDeskIconInfo[i]]),
  3995. "onclick": U.UF.C.closure(function (obj) {
  3996. //防止拖动图标即打开了桌面应用
  3997. U.MD.D.click(this, obj);
  3998. }, [_trailTeacherDeskIconInfo[i]])
  3999. }, _frag); //
  4000. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4001. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4002. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4003. }
  4004. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4005. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4006. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4007. continue
  4008. }
  4009. _content = $$("div", {
  4010. className: "U_MD_D_KO",
  4011. "onmousedown": U.UF.C.closure(function (obj) {
  4012. //防止拖动图标即打开了桌面应用
  4013. U.MD.D.click(this, obj);
  4014. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4015. "onclick": U.UF.C.closure(function (obj) {
  4016. //防止拖动图标即打开了桌面应用
  4017. U.MD.D.click(this, obj);
  4018. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4019. }, _frag); //
  4020. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4021. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4022. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4023. }
  4024. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4025. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4026. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4027. continue
  4028. }
  4029. _content = $$("div", {
  4030. className: "U_MD_D_KO",
  4031. "onmousedown": U.UF.C.closure(function (obj) {
  4032. //防止拖动图标即打开了桌面应用
  4033. U.MD.D.click(this, obj);
  4034. }, [_x010608TeacherDeskIconInfo[i]]),
  4035. "onclick": U.UF.C.closure(function (obj) {
  4036. //防止拖动图标即打开了桌面应用
  4037. U.MD.D.click(this, obj);
  4038. }, [_x010608TeacherDeskIconInfo[i]])
  4039. }, _frag); //
  4040. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4041. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4042. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4043. }
  4044. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4045. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4046. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4047. continue
  4048. }
  4049. _content = $$("div", {
  4050. className: "U_MD_D_KO",
  4051. "onmousedown": U.UF.C.closure(function (obj) {
  4052. //防止拖动图标即打开了桌面应用
  4053. U.MD.D.click(this, obj);
  4054. }, [_x010611TeacherDeskIconInfo[i]]),
  4055. "onclick": U.UF.C.closure(function (obj) {
  4056. //防止拖动图标即打开了桌面应用
  4057. U.MD.D.click(this, obj);
  4058. }, [_x010611TeacherDeskIconInfo[i]])
  4059. }, _frag); //
  4060. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4061. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4062. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4063. }
  4064. } else {
  4065. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4066. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4067. continue
  4068. }
  4069. _content = $$("div", {
  4070. className: "U_MD_D_KO",
  4071. "onmousedown": U.UF.C.closure(function (obj) {
  4072. //防止拖动图标即打开了桌面应用
  4073. U.MD.D.click(this, obj);
  4074. }, [_teacherDesktopIconInfo[i]]),
  4075. "onclick": U.UF.C.closure(function (obj) {
  4076. //防止拖动图标即打开了桌面应用
  4077. U.MD.D.click(this, obj);
  4078. }, [_teacherDesktopIconInfo[i]])
  4079. }, _frag); //
  4080. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4081. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4082. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4083. }
  4084. }
  4085. } else {
  4086. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4087. _content = $$("div", {
  4088. className: "U_MD_D_KO",
  4089. style: { 'width': '124px', 'height': '145px' },
  4090. "onmousedown": U.UF.C.closure(function (obj) {
  4091. //防止拖动图标即打开了桌面应用
  4092. U.MD.D.click(this, obj);
  4093. }, [_easyDesktopIconInfo[i]]),
  4094. "onclick": U.UF.C.closure(function (obj) {
  4095. //防止拖动图标即打开了桌面应用
  4096. U.MD.D.click(this, obj);
  4097. }, [_easyDesktopIconInfo[i]])
  4098. }, _frag); //
  4099. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4100. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4101. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4102. }
  4103. }
  4104. if (type == 1) {
  4105. //加载好后给图标定位
  4106. U.MD.D.iconPostion($(_frag).Child());
  4107. } else {
  4108. //加载好后给图标定位
  4109. U.MD.D.iconPostion2($(_frag).Child());
  4110. }
  4111. //把图标加载到页面
  4112. el.appendChild(_frag);
  4113. }
  4114. /**
  4115. * 显示任务栏
  4116. *
  4117. * @param {element} 桌面元素
  4118. */
  4119. U.MD.D.I.displayTaskbar = function (el) {
  4120. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4121. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4122. //任务栏位置变化
  4123. U.selectEl(el).css({ "bottom": "0px" });
  4124. //桌面位置变话
  4125. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4126. }
  4127. }
  4128. //#region 桌面图标拖动逻辑
  4129. /**
  4130. * 桌面排列图标
  4131. *
  4132. * @param {element} 桌面元素
  4133. * @param {object} 上下相距的距离
  4134. * @param {object} 左右相距的距离
  4135. * @return {object} 命名空间
  4136. */
  4137. U.MD.D.iconPostion = function (childs, top, left) {
  4138. var i; //用于循环处理
  4139. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4140. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4141. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4142. for (i = 0; i < childs.length; i++) {
  4143. //如果竖排top超过了范围处理
  4144. if (top + 95 > US.height - 10) {
  4145. //left超过了页面范围处理,则向上重叠打印处理
  4146. if ((left + 180) > US.width) {
  4147. top -= 110;
  4148. left -= 90;
  4149. }
  4150. //没有超过范围,那么left+90添加到下一个竖排打印
  4151. else {
  4152. left += 90;
  4153. top = 15;
  4154. };
  4155. }
  4156. //给图标的位置赋值
  4157. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4158. if (i < childs.length - 1) {
  4159. //页面图标每次向下加95
  4160. top += 95;
  4161. }
  4162. }
  4163. //返回最后调用的图标的位置
  4164. return [top, left];
  4165. }
  4166. /**
  4167. * 桌面排列图标
  4168. *
  4169. * @param {element} 桌面元素
  4170. * @param {object} 上下相距的距离
  4171. * @param {object} 左右相距的距离
  4172. * @return {object} 命名空间
  4173. */
  4174. U.MD.D.iconPostion2 = function (childs, top, left) {
  4175. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4176. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4177. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4178. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4179. for (i = 0; i < childs.length; i++) {
  4180. //如果竖排top超过了范围处理
  4181. if (left + 150 > US.width - 10) {
  4182. //left超过了页面范围处理,则向上重叠打印处理
  4183. if ((top + 180) > US.Height) {
  4184. top -= 150;
  4185. left -= 150;
  4186. }
  4187. //没有超过范围,那么left+90添加到下一个竖排打印
  4188. else {
  4189. top += 150;
  4190. left = ol;
  4191. };
  4192. }
  4193. //给图标的位置赋值
  4194. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4195. if (i < childs.length - 1) {
  4196. //页面图标每次向下加95
  4197. left += 150;
  4198. }
  4199. }
  4200. //返回最后调用的图标的位置
  4201. return [top, left];
  4202. }
  4203. /**
  4204. * 桌面点击事件逻辑
  4205. *
  4206. * @param {element} 桌面元素
  4207. * @param {object} 上下相距的距离
  4208. * @param {object} 左右相距的距离
  4209. * @return {object} 命名空间
  4210. */
  4211. U.MD.D.click = function (el, obj) {
  4212. var _buttonnumber = event.button; //点击的按钮的事件值
  4213. var _userinfo = US.userInfo;
  4214. U.UF.EV.stopBubble(); //阻止向上冒泡
  4215. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4216. if (_buttonnumber < 2) {
  4217. //如果是click事件的处理
  4218. if (event.type == "click") {
  4219. //如果元素在mousemove事件中没有移动则出发click事件
  4220. if (!U.MD.D.I.IsDrag) {
  4221. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4222. U.alert("请先登录您的账号!");
  4223. setTimeout(() => {
  4224. U.MD.U.L.login();
  4225. }, 2000);
  4226. } else {
  4227. //打开应用处理
  4228. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4229. }
  4230. }
  4231. }
  4232. //如果是mouse事件的处理
  4233. else {
  4234. if (US.Config.type == '1') {
  4235. //拖动处理,添加拖动和拖动结束事件
  4236. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4237. }
  4238. }
  4239. U.MD.D.I.IsDrag = false;
  4240. }
  4241. }
  4242. /**
  4243. * 拖动的处理
  4244. *
  4245. */
  4246. U.MD.D.iconMove = function () {
  4247. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4248. U.MD.D.I.IsDrag = true;
  4249. }
  4250. /**
  4251. * 拖动结束后,这里是定位处理,以网状的形式定位
  4252. *
  4253. * @param {element} 拖动的元素
  4254. * @return {object} 命名空间
  4255. */
  4256. U.MD.D.iconUp = function (el) {
  4257. var _top = 15,
  4258. _left = 20,
  4259. _margin,
  4260. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4261. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4262. if (_positioninfo["OT"] > 15) {
  4263. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4264. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4265. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4266. }
  4267. if (_positioninfo["OL"] > 20) {
  4268. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4269. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4270. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4271. }
  4272. //while循环判断么一个重叠的元素
  4273. do {
  4274. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4275. _top = _positioninfo[0] + 95; //得到定位后的top
  4276. _left = _positioninfo[1]; //得到定位后的left
  4277. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4278. }
  4279. /**
  4280. * 判断拖动后图标是否重叠
  4281. *
  4282. * @param {element} 拖动的元素
  4283. * @param {element} 桌面所有的元素
  4284. * @param {array} 拖动元素的位置
  4285. ----------[0] 上 top
  4286. ----------[1] 左 left
  4287. * @return {object} 命名空间
  4288. */
  4289. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4290. //循环所有的图标
  4291. for (var i = 0; i < childs.length; i++) {
  4292. //判断有没有和该图标诶子重叠的元素
  4293. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4294. return childs[i]; //如果有返回
  4295. }
  4296. }
  4297. }
  4298. //#endregion
  4299. //#endregion
  4300. //#region 桌面应用
  4301. /**
  4302. * 打开应用
  4303. *
  4304. * @param {string} 类型
  4305. -----------------Disk 网盘系统
  4306. -----------------PDisk 学习系统网盘
  4307. -----------------Poto 图片
  4308. -----------------Video 视频
  4309. -----------------Music 音乐
  4310. -----------------Word word
  4311. -----------------Excel excel
  4312. -----------------Txt 记事本
  4313. -----------------PB 学习系统
  4314. -----------------Blog 朋友圈系统
  4315. -----------------FTP ftp系统
  4316. -----------------Group 好友群
  4317. -----------------SY 首页系统
  4318. -----------------Set 个人设置
  4319. -----------------XSet 系统设置
  4320. -----------------App 我们所有的app
  4321. -----------------BC c.1473.cn 平台
  4322. -----------------CWeb d.1473.cn 变成平台
  4323. -----------------其他的外联系统 我们统一用iframe打开
  4324. * @param {array} 类型
  4325. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4326. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4327. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4328. 如果第一个参数为其他,则无第二个参数
  4329. * @returns {array}
  4330. */
  4331. window.addEventListener('message', function (e) { // 监听 message 事件
  4332. // alert(e.data.type);
  4333. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4334. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4335. //3是展示全部阶段 2学生 1老师 4专家
  4336. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4337. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4338. //3是展示全部阶段 2学生 1老师 4专家
  4339. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4340. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4341. //3是展示全部阶段 2学生 1老师 4专家
  4342. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4343. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4344. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4345. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4346. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4347. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4348. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4349. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4350. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4351. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4352. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4353. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4354. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4355. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4356. //3是展示全部阶段 2学生 1老师 4专家
  4357. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4358. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4359. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4360. U.MD.D.I.selectUser();
  4361. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4362. var _formel = document.getElementById("study");
  4363. U.UF.F.windowZooming(_formel);
  4364. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4365. var _formel = document.getElementById("studyDetail");
  4366. U.UF.F.windowZooming(_formel);
  4367. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4368. var _formel = document.getElementById("studyDetail");
  4369. U.UF.F.windowZooming(_formel);
  4370. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4371. var _formel = document.getElementById("studentStudy");
  4372. U.UF.F.windowZooming(_formel);
  4373. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4374. // var _formel = document.getElementById("study");
  4375. //如果最大化了,那么就把他缩小
  4376. // if (_formel.ismaximize) {
  4377. // return;
  4378. // }
  4379. // U.UF.F.windowZooming(_formel);
  4380. // U.UF.F.topWindow(_formel);
  4381. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4382. // var _formel = document.getElementById("studyDetail");
  4383. //如果最大化了,那么就把他缩小
  4384. // if (_formel.ismaximize) {
  4385. // return;
  4386. // }
  4387. // U.UF.F.windowZooming(_formel);
  4388. // U.UF.F.topWindow(_formel);
  4389. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4390. // var _formel = document.getElementById("studentStudy");
  4391. // if (_formel.ismaximize) {
  4392. // return;
  4393. // }
  4394. // U.UF.F.windowZooming(_formel);
  4395. // U.UF.F.topWindow(_formel);
  4396. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4397. var _formel = document.getElementById("study");
  4398. // if (_formel.ismaximize) {
  4399. // return;
  4400. // }
  4401. // U.UF.F.windowZooming(_formel);
  4402. U.UF.F.topWindow(_formel);
  4403. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4404. var _formel = document.getElementById("studentIndex");
  4405. U.UF.F.windowZooming(_formel);
  4406. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4407. var _formel = document.getElementById("studyDetailS");
  4408. U.UF.F.windowZooming(_formel);
  4409. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4410. var _formel = document.getElementById("studioIndex");
  4411. U.UF.F.windowZooming(_formel);
  4412. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4413. var _formel = document.getElementById("studyDetailStudio");
  4414. U.UF.F.windowZooming(_formel);
  4415. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4416. var _formel = document.getElementById("studyDetailStudio");
  4417. U.UF.F.windowZooming(_formel);
  4418. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4419. var _formel = document.getElementById("studyDetailNT");
  4420. U.UF.F.windowZooming(_formel);
  4421. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4422. var _formel = document.getElementById("studyDetailS");
  4423. U.UF.F.windowZooming(_formel);
  4424. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4425. var _formel = document.getElementById("studyDetailS");
  4426. U.UF.F.topWindow(_formel);
  4427. } else if (e.data.tools && e.data.tools == "1") {
  4428. // U.MD.D.I.openApplication("whiteboard")
  4429. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4430. } else if (e.data.tools && e.data.tools == "2") {
  4431. U.MD.D.I.openApplication("note")
  4432. } else if (e.data.tools && e.data.tools == "3") {
  4433. // U.MD.D.I.openApplication("mind")
  4434. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4435. } else if (e.data.tools && e.data.tools == "4") {
  4436. U.MD.D.I.openApplication("investigation")
  4437. } else if (e.data.tools && e.data.tools == "6") {
  4438. // U.MD.D.I.openApplication("doc")
  4439. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4440. } else if (e.data.tools && e.data.tools == "7") {
  4441. // U.MD.D.I.openApplication("mindNetwork")
  4442. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4443. } else if (e.data.tools && e.data.tools == "8") {
  4444. U.MD.D.I.openApplication("library")
  4445. } else if (e.data.tools && e.data.tools == "17") {
  4446. U.MD.D.I.openApplication("stuLibrary")
  4447. } else if (e.data.tools && e.data.tools == "18") {
  4448. U.MD.D.I.openApplication("train")
  4449. } else if (e.data.tools && e.data.tools == "21") {
  4450. U.MD.D.I.openApplication("program")
  4451. } else if (e.data.tools && e.data.tools == "22") {
  4452. U.MD.D.I.openApplication("AIprogram2")
  4453. } else if (e.data.tools && e.data.tools == "23") {
  4454. U.MD.D.I.openApplication("Pythonprogram")
  4455. } else if (e.data.tools && e.data.tools == "24") {
  4456. U.MD.D.I.openApplication("AIprogram")
  4457. } else if (e.data.tools && e.data.tools == "25") {
  4458. U.MD.D.I.openApplication("sys")
  4459. } else if (e.data.tools && e.data.tools == "26") {
  4460. // U.MD.D.I.openApplication("courseDesign")
  4461. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4462. } else if (e.data.tools && e.data.tools == "31") {
  4463. U.MD.D.I.openApplication("netWorkPanel")
  4464. } else if (e.data.tools && e.data.tools == "32") {
  4465. U.MD.D.I.openApplication("codeEdit")
  4466. } else if (e.data.tools && e.data.tools == "57") {
  4467. U.MD.D.I.openApplication("CocoPi")
  4468. } else if (e.data.tools && e.data.tools == "63") {
  4469. U.MD.D.I.openApplication("Wood")
  4470. } else if (e.data.tools && e.data.tools == "58") {
  4471. U.MD.D.I.openApplication("car")
  4472. } else if (e.data.tools && e.data.tools == "59") {
  4473. U.MD.D.I.openApplication("lineSearch")
  4474. } else if (e.data.tools && e.data.tools == "60") {
  4475. U.MD.D.I.openApplication("deepLearning")
  4476. } else if (e.data.tools && e.data.tools == "61") {
  4477. U.MD.D.I.openApplication("allHistory")
  4478. } else if (e.data.tools && e.data.tools == "28") {
  4479. U.MD.D.I.openApplication("translation")
  4480. } else if (e.data.tools && e.data.tools == "37") {
  4481. U.MD.D.I.openApplication("mohe")
  4482. } else if (e.data.tools && e.data.tools == "38") {
  4483. U.MD.D.I.openApplication("24game")
  4484. } else if (e.data.tools && e.data.tools == "39") {
  4485. U.MD.D.I.openApplication("GeoGebra")
  4486. } else if (e.data.tools && e.data.tools == "43") {
  4487. U.MD.D.I.openApplication("studentEvaluate")
  4488. } else if (e.data.tools && e.data.tools == "44") {
  4489. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4490. } else if (e.data.tools && e.data.tools == "46") {
  4491. U.MD.D.I.openApplication("project")
  4492. } else if (e.data.tools && e.data.tools == "71") {
  4493. U.MD.D.I.openApplication("aigptCourse")
  4494. } else if (e.data.tools && e.data.tools == "1s") {
  4495. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4496. } else if (e.data.tools && e.data.tools == "3s") {
  4497. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4498. } else if (e.data.tools && e.data.tools == "6s") {
  4499. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4500. } else if (e.data.tools && e.data.tools == "1studio") {
  4501. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4502. } else if (e.data.tools && e.data.tools == "3studio") {
  4503. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4504. } else if (e.data.tools && e.data.tools == "6studio") {
  4505. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4506. } else if (e.data.tools && e.data.tools == "3y") {
  4507. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4508. } else if (e.data.tools && e.data.tools == "1y") {
  4509. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4510. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4511. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4512. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4513. U.MD.D.I.openApplication("AIAnalyse")
  4514. } else if (e.data.tools && e.data.tools == "1teacher") {
  4515. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4516. } else if (e.data.tools && e.data.tools == "3teacher") {
  4517. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4518. } else if (e.data.tools && e.data.tools == "7teacher") {
  4519. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4520. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4521. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4522. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4523. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4524. } else if (e.data.tools && e.data.tools == "1E") {
  4525. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4526. } else if (e.data.tools && e.data.tools == "3E") {
  4527. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4528. } else if (e.data.tools && e.data.tools == "57y") {
  4529. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4530. } else if (e.data.tools && e.data.tools == "57u") {
  4531. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4532. } else if (e.data.tools && e.data.tools == "57teacher") {
  4533. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4534. } else if (e.data.tools && e.data.tools == "64") {
  4535. U.MD.D.I.openApplication("AIChat")
  4536. } else if (e.data.tools && e.data.tools == "66") {
  4537. U.MD.D.I.openApplication("formulaEdi")
  4538. } else if (e.data.tools && e.data.tools == "67") {
  4539. U.MD.D.I.openApplication("molStr")
  4540. } else if (e.data.tools && e.data.tools == "68") {
  4541. U.MD.D.I.openApplication("timeAxis")
  4542. } else if (e.data.tools && e.data.tools == "openCourse") {
  4543. let _data = {
  4544. typea: e.data.typea || '',
  4545. typeb: e.data.typeb || '',
  4546. typed: e.data.typed || '',
  4547. }
  4548. U.MD.D.I.openInApplication("index", _data)
  4549. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4550. let _data = {
  4551. classid: e.data.classid || '',
  4552. }
  4553. U.MD.D.I.openInApplication("dataClass", _data)
  4554. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4555. let _data = {
  4556. cid: e.data.cid || '',
  4557. gid: e.data.gid || '',
  4558. }
  4559. U.MD.D.I.openInApplication("opencCscl", _data)
  4560. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4561. U.MD.D.I.openApplication("dataBoardTest")
  4562. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4563. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4564. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4565. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4566. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4567. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4568. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4569. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4570. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4571. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4572. }else if (e.data.tools && e.data.tools == "loginSz") {
  4573. U.MD.D.I.openInApplication("loginSz")
  4574. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4575. if($('#classroom_observation_board')[0]){
  4576. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4577. }
  4578. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4579. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4580. if($('#classroom_observation_ob_comment')[0]){
  4581. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4582. }
  4583. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4584. }
  4585. });
  4586. U.MD.D.I.selectUser = function () {
  4587. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4588. if (res.value[0].length > 0) {
  4589. US.userInfo = res.value[0][0];
  4590. $(".userName")[0].innerHTML = US.userInfo.username;
  4591. }
  4592. }, [], { "type": "GET", "withCredentials": true });
  4593. }
  4594. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4595. var _userinfo = US.userInfo, //登录用户信息
  4596. _userid = US.userInfo.userid, //登录用户id
  4597. _oid = _userinfo.organizeid,
  4598. _type = US.userInfo.type,
  4599. _org = US.userInfo.org,
  4600. _role = US.userInfo.role,
  4601. _classId = US.userInfo.classid;
  4602. if (_type == 4) {
  4603. tType = 4
  4604. }
  4605. switch (str) {
  4606. case "studyDetailNT": //无终端模式
  4607. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4608. setTimeout(() => {
  4609. U.MD.U.L.login();
  4610. }, 2000);
  4611. } else {
  4612. _formdiv = new U.UF.UI.form(
  4613. "课程详情",
  4614. $$("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 }), {
  4615. "id": "studyDetailNT",
  4616. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4617. "onresize": function () { }
  4618. }, {
  4619. closecallback: function () { }
  4620. }, { "style": { "height": "36px" } }).form; //创建窗体
  4621. _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); } }
  4622. break;
  4623. }
  4624. case "studyDetail":
  4625. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4626. setTimeout(() => {
  4627. U.MD.U.L.login();
  4628. }, 2000);
  4629. } else {
  4630. _formdiv = new U.UF.UI.form(
  4631. "课程详情",
  4632. $$("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 }), {
  4633. "id": "studyDetail",
  4634. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4635. "onresize": function () { }
  4636. }, {
  4637. closecallback: function () { }
  4638. }, { "style": { "height": "36px" } }).form; //创建窗体
  4639. _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); } }
  4640. break;
  4641. }
  4642. case "studyDetailTrain":
  4643. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4644. setTimeout(() => {
  4645. U.MD.U.L.login();
  4646. }, 2000);
  4647. } else {
  4648. _formdiv = new U.UF.UI.form(
  4649. "培训详情",
  4650. $$("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 }), {
  4651. "id": "studyDetailTrain",
  4652. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4653. "onresize": function () { }
  4654. }, {
  4655. closecallback: function () { }
  4656. }, { "style": { "height": "36px" } }).form; //创建窗体
  4657. _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); } }
  4658. break;
  4659. }
  4660. case "studyDetailS":
  4661. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4662. setTimeout(() => {
  4663. U.MD.U.L.login();
  4664. }, 2000);
  4665. } else {
  4666. _formdiv = new U.UF.UI.form(
  4667. "项目详情",
  4668. $$("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 }), {
  4669. "id": "studyDetailS",
  4670. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4671. "onresize": function () { }
  4672. }, {
  4673. closecallback: function () { }
  4674. }, { "style": { "height": "36px" } }).form; //创建窗体
  4675. _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); } }
  4676. break;
  4677. }
  4678. case "studyDetailStudio":
  4679. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4680. setTimeout(() => {
  4681. U.MD.U.L.login();
  4682. }, 2000);
  4683. } else {
  4684. _formdiv = new U.UF.UI.form(
  4685. "工作详情",
  4686. $$("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 }), {
  4687. "id": "studyDetailStudio",
  4688. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4689. "onresize": function () { }
  4690. }, {
  4691. closecallback: function () { }
  4692. }, { "style": { "height": "36px" } }).form; //创建窗体
  4693. _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); } }
  4694. break;
  4695. }
  4696. case "studyDetailS5":
  4697. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4698. setTimeout(() => {
  4699. U.MD.U.L.login();
  4700. }, 2000);
  4701. } else {
  4702. _formdiv = new U.UF.UI.form(
  4703. "项目详情",
  4704. $$("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 }), {
  4705. "id": "studyDetailS",
  4706. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4707. "onresize": function () { }
  4708. }, {
  4709. closecallback: function () { }
  4710. }, { "style": { "height": "36px" } }).form; //创建窗体
  4711. _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); } }
  4712. break;
  4713. }
  4714. case "studyDetailGM":
  4715. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4716. setTimeout(() => {
  4717. U.MD.U.L.login();
  4718. }, 2000);
  4719. } else {
  4720. _formdiv = new U.UF.UI.form(
  4721. "课程详情",
  4722. $$("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 }), {
  4723. "id": "studyDetail",
  4724. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4725. "onresize": function () { }
  4726. }, {
  4727. closecallback: function () { }
  4728. }, { "style": { "height": "36px" } }).form; //创建窗体
  4729. _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); } }
  4730. break;
  4731. }
  4732. case "hanUrl":
  4733. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4734. setTimeout(() => {
  4735. U.MD.U.L.login();
  4736. }, 2000);
  4737. } else {
  4738. _formdiv = new U.UF.UI.form(
  4739. "汉字宫",
  4740. $$("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" }), {
  4741. "id": "hanUrl",
  4742. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4743. "onresize": function () { }
  4744. }, {
  4745. closecallback: function () { }
  4746. }, { "style": { "height": "36px" } }).form; //创建窗体
  4747. _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); } }
  4748. break;
  4749. }
  4750. case "index":
  4751. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4752. setTimeout(() => {
  4753. U.MD.U.L.login();
  4754. }, 2000);
  4755. } else {
  4756. _formdiv = new U.UF.UI.form(
  4757. "课程中心",
  4758. $$("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 }), {
  4759. "id": "study",
  4760. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4761. "onresize": function () { }
  4762. }, {
  4763. closecallback: function () { }
  4764. }, { "style": { "height": "36px" } }).form; //创建窗体
  4765. _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); } }
  4766. break;
  4767. }
  4768. case "dataClass":
  4769. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4770. setTimeout(() => {
  4771. U.MD.U.L.login();
  4772. }, 2000);
  4773. } else {
  4774. _formdiv = new U.UF.UI.form(
  4775. "数据报告",
  4776. $$("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 }), {
  4777. "id": "dataClass",
  4778. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4779. "onresize": function () { }
  4780. }, {
  4781. closecallback: function () { }
  4782. }, { "style": { "height": "36px" } }).form; //创建窗体
  4783. _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); } }
  4784. break;
  4785. }
  4786. case "opencCscl":
  4787. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4788. setTimeout(() => {
  4789. U.MD.U.L.login();
  4790. }, 2000);
  4791. } else {
  4792. _formdiv = new U.UF.UI.form(
  4793. "协同建构",
  4794. $$("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 }), {
  4795. "id": "futureClass",
  4796. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4797. "onresize": function () { }
  4798. }, {
  4799. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4800. }, { "style": { "height": "36px" } }).form; //创建窗体
  4801. _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); } }
  4802. break;
  4803. }
  4804. case "openCourseUpdate":
  4805. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4806. setTimeout(() => {
  4807. U.MD.U.L.login();
  4808. }, 2000);
  4809. } else {
  4810. _formdiv = new U.UF.UI.form(
  4811. "课程管理",
  4812. $$("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 }), {
  4813. "id": "openCourseUpdate",
  4814. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4815. "onresize": function () { }
  4816. }, {
  4817. closecallback: function () { }
  4818. }, { "style": { "height": "36px" } }).form; //创建窗体
  4819. break;
  4820. }
  4821. case "openNewCourseUpdate":
  4822. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4823. setTimeout(() => {
  4824. U.MD.U.L.login();
  4825. }, 2000);
  4826. } else {
  4827. _formdiv = new U.UF.UI.form(
  4828. "课程管理",
  4829. $$("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 }), {
  4830. "id": "openCourseUpdate",
  4831. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4832. "onresize": function () { }
  4833. }, {
  4834. closecallback: function () { }
  4835. }, { "style": { "height": "36px" } }).form; //创建窗体
  4836. break;
  4837. }
  4838. case "openCourseEUpdate":
  4839. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4840. setTimeout(() => {
  4841. U.MD.U.L.login();
  4842. }, 2000);
  4843. } else {
  4844. _formdiv = new U.UF.UI.form(
  4845. "课程管理",
  4846. $$("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 }), {
  4847. "id": "openCourseUpdate",
  4848. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4849. "onresize": function () { }
  4850. }, {
  4851. closecallback: function () { }
  4852. }, { "style": { "height": "36px" } }).form; //创建窗体
  4853. break;
  4854. }
  4855. case "openCourseAiUpdate":
  4856. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4857. setTimeout(() => {
  4858. U.MD.U.L.login();
  4859. }, 2000);
  4860. } else {
  4861. _formdiv = new U.UF.UI.form(
  4862. "课程管理",
  4863. $$("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 }), {
  4864. "id": "openCourseUpdate",
  4865. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4866. "onresize": function () { }
  4867. }, {
  4868. closecallback: function () { }
  4869. }, { "style": { "height": "36px" } }).form; //创建窗体
  4870. break;
  4871. }
  4872. case "openCourseNewUpdate":
  4873. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4874. setTimeout(() => {
  4875. U.MD.U.L.login();
  4876. }, 2000);
  4877. } else {
  4878. _formdiv = new U.UF.UI.form(
  4879. "课程管理",
  4880. $$("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 }), {
  4881. "id": "openCourseUpdate",
  4882. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4883. "onresize": function () { }
  4884. }, {
  4885. closecallback: function () { }
  4886. }, { "style": { "height": "36px" } }).form; //创建窗体
  4887. break;
  4888. }
  4889. case "inviteLoginSz":
  4890. _formdiv = new U.UF.UI.form(
  4891. "随机码登录",
  4892. $$("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 }), {
  4893. "id": "loginSz",
  4894. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4895. "onresize": function () { }
  4896. }, {
  4897. closecallback: function () { }
  4898. }, { "style": { "height": "36px" } }).form; //创建窗体
  4899. break;
  4900. case "loginSz":
  4901. _formdiv = new U.UF.UI.form(
  4902. "教师登录",
  4903. $$("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" }), {
  4904. "id": "loginSz",
  4905. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4906. "onresize": function () { }
  4907. }, {
  4908. closecallback: function () { }
  4909. }, { "style": { "height": "36px" } }).form; //创建窗体
  4910. break;
  4911. case "teacher":
  4912. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4913. setTimeout(() => {
  4914. U.MD.U.L.login();
  4915. }, 2000);
  4916. } else {
  4917. _formdiv = new U.UF.UI.form(
  4918. "教师管理",
  4919. $$("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 }), {
  4920. "id": "teacher",
  4921. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4922. "onresize": function () { }
  4923. }, {
  4924. closecallback: function () { }
  4925. }, { "style": { "height": "36px" } }).form; //创建窗体
  4926. break;
  4927. }
  4928. case "dataBoardSZArea":
  4929. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4930. setTimeout(() => {
  4931. U.MD.U.L.login();
  4932. }, 2000);
  4933. } else {
  4934. _formdiv = new U.UF.UI.form(
  4935. "综合数据看板",
  4936. $$("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 }), {
  4937. "id": "dataBoardSZArea",
  4938. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4939. "onresize": function () { }
  4940. }, {
  4941. closecallback: function () { }
  4942. }, { "style": { "height": "36px" } }).form; //创建窗体
  4943. break;
  4944. }
  4945. case "dataBoardSZCity":
  4946. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4947. setTimeout(() => {
  4948. U.MD.U.L.login();
  4949. }, 2000);
  4950. } else {
  4951. _formdiv = new U.UF.UI.form(
  4952. "综合数据看板",
  4953. $$("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 }), {
  4954. "id": "dataBoardSZCity",
  4955. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4956. "onresize": function () { }
  4957. }, {
  4958. closecallback: function () { }
  4959. }, { "style": { "height": "36px" } }).form; //创建窗体
  4960. break;
  4961. }
  4962. case "classroom_observation_board":
  4963. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4964. setTimeout(() => {
  4965. U.MD.U.L.login();
  4966. }, 2000);
  4967. } else {
  4968. _formdiv = new U.UF.UI.form(
  4969. "课堂观察",
  4970. $$("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 }), {
  4971. "id": "classroom_observation_board",
  4972. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4973. "onresize": function () { }
  4974. }, {
  4975. closecallback: function () { }
  4976. }, { "style": { "height": "36px" } }).form; //创建窗体
  4977. break;
  4978. }
  4979. case "classroom_observation_ob_comment":
  4980. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4981. setTimeout(() => {
  4982. U.MD.U.L.login();
  4983. }, 2000);
  4984. } else {
  4985. _formdiv = new U.UF.UI.form(
  4986. "课堂审核",
  4987. $$("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 }), {
  4988. "id": "classroom_observation_ob_comment",
  4989. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4990. "onresize": function () { }
  4991. }, {
  4992. closecallback: function () { }
  4993. }, { "style": { "height": "36px" } }).form; //创建窗体
  4994. break;
  4995. }
  4996. }
  4997. }
  4998. U.MD.D.I.openApplication = function (str, obj, info) {
  4999. obj = obj || {};
  5000. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5001. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5002. _userinfo = US.userInfo, //登录用户信息
  5003. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5004. _oid = obj.organizeid || _userinfo.organizeid,
  5005. _type = US.userInfo.type,
  5006. _org = US.userInfo.org,
  5007. _role = US.userInfo.role,
  5008. _classId = US.userInfo.classid,
  5009. _TscreenType = 1
  5010. _screenType = 2,
  5011. _SscreenType = 3;
  5012. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5013. return;
  5014. }
  5015. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5016. switch (str) {
  5017. case "studnetProject": //好友打开
  5018. _formdiv = new U.UF.UI.form(
  5019. "我的项目",
  5020. $$("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 }), {
  5021. "id": "studnetProject",
  5022. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5023. "onresize": function () { }
  5024. }, {
  5025. closecallback: function () { }
  5026. }, { "style": { "height": "36px" } }).form; //创建窗体
  5027. _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); } }
  5028. break;
  5029. case "studentEvaluate": //好友打开
  5030. _formdiv = new U.UF.UI.form(
  5031. "我的评价",
  5032. $$("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 }), {
  5033. "id": "studentEvaluate",
  5034. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5035. "onresize": function () { }
  5036. }, {
  5037. closecallback: function () { }
  5038. }, { "style": { "height": "36px" } }).form; //创建窗体
  5039. _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); } }
  5040. break;
  5041. case "my":
  5042. _formdiv = new U.UF.UI.form(
  5043. "我的资料",
  5044. $$("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 }), {
  5045. "id": "my",
  5046. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5047. "onresize": function () { }
  5048. }, {
  5049. closecallback: function () { }
  5050. }, { "style": { "height": "36px" } }).form; //创建窗体
  5051. _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); } }
  5052. break;
  5053. case "program":
  5054. _formdiv = new U.UF.UI.form(
  5055. "编程平台",
  5056. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5057. "id": "program",
  5058. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5059. "onresize": function () { }
  5060. }, {
  5061. closecallback: function () { }
  5062. }, { "style": { "height": "36px" } }).form; //创建窗体
  5063. _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); } }
  5064. break;
  5065. case "library":
  5066. _formdiv = new U.UF.UI.form(
  5067. "素材库",
  5068. $$("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 }), {
  5069. "id": "library",
  5070. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5071. "onresize": function () { }
  5072. }, {
  5073. closecallback: function () { }
  5074. }, { "style": { "height": "36px" } }).form; //创建窗体
  5075. _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); } }
  5076. break;
  5077. case "whiteboard":
  5078. _formdiv = new U.UF.UI.form(
  5079. "电子白板",
  5080. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5081. "id": "whiteboard",
  5082. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5083. "onresize": function () { }
  5084. }, {
  5085. closecallback: function () { }
  5086. }, { "style": { "height": "36px" } }).form; //创建窗体
  5087. _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); } }
  5088. break;
  5089. case "investigation":
  5090. _formdiv = new U.UF.UI.form(
  5091. "问卷调查",
  5092. $$("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 }), {
  5093. "id": "investigation",
  5094. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5095. "onresize": function () { }
  5096. }, {
  5097. closecallback: function () { }
  5098. }, { "style": { "height": "36px" } }).form; //创建窗体
  5099. _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); } }
  5100. break;
  5101. case "note":
  5102. _formdiv = new U.UF.UI.form(
  5103. "便签分类",
  5104. $$("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 }), {
  5105. "id": "note",
  5106. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5107. "onresize": function () { }
  5108. }, {
  5109. closecallback: function () { }
  5110. }, { "style": { "height": "36px" } }).form; //创建窗体
  5111. _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); } }
  5112. break;
  5113. // case "score":
  5114. // _formdiv = new U.UF.UI.form(
  5115. // "量规评分",
  5116. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5117. // "id": "score",
  5118. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5119. // "onresize": function() {}
  5120. // }, {
  5121. // closecallback: function() {}
  5122. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5123. // _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); } }
  5124. // break;
  5125. case "mind":
  5126. _formdiv = new U.UF.UI.form(
  5127. "思维导图",
  5128. $$("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"
  5129. "id": "mind",
  5130. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5131. "onresize": function () { }
  5132. }, {
  5133. closecallback: function () { }
  5134. }, { "style": { "height": "36px" } }).form; //创建窗体
  5135. _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); } }
  5136. break;
  5137. case "doc":
  5138. // U.MD.D.I.isRoom();
  5139. _formdiv = new U.UF.UI.form(
  5140. "协同文档",
  5141. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5142. "id": "doc",
  5143. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5144. "onresize": function () { }
  5145. }, {
  5146. closecallback: function () { }
  5147. }, { "style": { "height": "36px" } }).form; //创建窗体
  5148. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5149. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5150. // })
  5151. _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); } }
  5152. break;
  5153. case "studentStudy":
  5154. _formdiv = new U.UF.UI.form(
  5155. "课程中心",
  5156. $$("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
  5157. "id": "studentStudy",
  5158. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5159. "onresize": function () { }
  5160. }, {
  5161. closecallback: function () { }
  5162. }, { "style": { "height": "36px" } }).form; //创建窗体
  5163. _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); } }
  5164. break;
  5165. case "train": //好友打开
  5166. _formdiv = new U.UF.UI.form(
  5167. "训练平台",
  5168. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5169. "id": "train",
  5170. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5171. "onresize": function () { }
  5172. }, {
  5173. closecallback: function () { }
  5174. }, { "style": { "height": "36px" } }).form; //创建窗体
  5175. _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); } }
  5176. break;
  5177. case "mindNetwork": //好友打开
  5178. _formdiv = new U.UF.UI.form(
  5179. "思维网格",
  5180. $$("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 }), {
  5181. "id": "mindNetwork",
  5182. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5183. "onresize": function () { }
  5184. }, {
  5185. closecallback: function () { }
  5186. }, { "style": { "height": "36px" } }).form; //创建窗体
  5187. _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); } }
  5188. break;
  5189. case "studentClassRoom": //好友打开
  5190. _formdiv = new U.UF.UI.form(
  5191. "实时课堂",
  5192. $$("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 }), {
  5193. "id": "studentClassRoom",
  5194. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5195. "onresize": function () { }
  5196. }, {
  5197. closecallback: function () { }
  5198. }, { "style": { "height": "36px" } }).form; //创建窗体
  5199. _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); } }
  5200. setTimeout(() => {
  5201. U.UF.F.windowZooming(_formdiv)
  5202. }, 0);
  5203. break;
  5204. }
  5205. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5206. switch (str) {
  5207. case "studnetProject": //好友打开
  5208. _formdiv = new U.UF.UI.form(
  5209. "我的项目",
  5210. $$("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 }), {
  5211. "id": "studnetProject",
  5212. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5213. "onresize": function () { }
  5214. }, {
  5215. closecallback: function () { }
  5216. }, { "style": { "height": "36px" } }).form; //创建窗体
  5217. _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); } }
  5218. break;
  5219. case "studentEvaluate": //好友打开
  5220. _formdiv = new U.UF.UI.form(
  5221. "我的评价",
  5222. $$("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 }), {
  5223. "id": "studentEvaluate",
  5224. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5225. "onresize": function () { }
  5226. }, {
  5227. closecallback: function () { }
  5228. }, { "style": { "height": "36px" } }).form; //创建窗体
  5229. _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); } }
  5230. break;
  5231. case "my":
  5232. _formdiv = new U.UF.UI.form(
  5233. "我的资料",
  5234. $$("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 }), {
  5235. "id": "my",
  5236. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5237. "onresize": function () { }
  5238. }, {
  5239. closecallback: function () { }
  5240. }, { "style": { "height": "36px" } }).form; //创建窗体
  5241. _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); } }
  5242. break;
  5243. case "program":
  5244. _formdiv = new U.UF.UI.form(
  5245. "编程平台",
  5246. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5247. "id": "program",
  5248. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5249. "onresize": function () { }
  5250. }, {
  5251. closecallback: function () { }
  5252. }, { "style": { "height": "36px" } }).form; //创建窗体
  5253. _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); } }
  5254. break;
  5255. case "library":
  5256. _formdiv = new U.UF.UI.form(
  5257. "素材库",
  5258. $$("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 }), {
  5259. "id": "library",
  5260. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5261. "onresize": function () { }
  5262. }, {
  5263. closecallback: function () { }
  5264. }, { "style": { "height": "36px" } }).form; //创建窗体
  5265. _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); } }
  5266. break;
  5267. case "whiteboard":
  5268. _formdiv = new U.UF.UI.form(
  5269. "电子白板",
  5270. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5271. "id": "whiteboard",
  5272. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5273. "onresize": function () { }
  5274. }, {
  5275. closecallback: function () { }
  5276. }, { "style": { "height": "36px" } }).form; //创建窗体
  5277. _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); } }
  5278. break;
  5279. case "investigation":
  5280. _formdiv = new U.UF.UI.form(
  5281. "问卷调查",
  5282. $$("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 }), {
  5283. "id": "investigation",
  5284. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5285. "onresize": function () { }
  5286. }, {
  5287. closecallback: function () { }
  5288. }, { "style": { "height": "36px" } }).form; //创建窗体
  5289. _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); } }
  5290. break;
  5291. case "note":
  5292. _formdiv = new U.UF.UI.form(
  5293. "便签分类",
  5294. $$("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 }), {
  5295. "id": "note",
  5296. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5297. "onresize": function () { }
  5298. }, {
  5299. closecallback: function () { }
  5300. }, { "style": { "height": "36px" } }).form; //创建窗体
  5301. _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); } }
  5302. break;
  5303. // case "score":
  5304. // _formdiv = new U.UF.UI.form(
  5305. // "量规评分",
  5306. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5307. // "id": "score",
  5308. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5309. // "onresize": function() {}
  5310. // }, {
  5311. // closecallback: function() {}
  5312. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5313. // _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); } }
  5314. // break;
  5315. case "mind":
  5316. _formdiv = new U.UF.UI.form(
  5317. "思维导图",
  5318. $$("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"
  5319. "id": "mind",
  5320. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5321. "onresize": function () { }
  5322. }, {
  5323. closecallback: function () { }
  5324. }, { "style": { "height": "36px" } }).form; //创建窗体
  5325. _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); } }
  5326. break;
  5327. case "doc":
  5328. // U.MD.D.I.isRoom();
  5329. _formdiv = new U.UF.UI.form(
  5330. "协同文档",
  5331. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5332. "id": "doc",
  5333. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5334. "onresize": function () { }
  5335. }, {
  5336. closecallback: function () { }
  5337. }, { "style": { "height": "36px" } }).form; //创建窗体
  5338. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5339. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5340. })
  5341. _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); } }
  5342. break;
  5343. case "train": //好友打开
  5344. _formdiv = new U.UF.UI.form(
  5345. "训练平台",
  5346. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5347. "id": "train",
  5348. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5349. "onresize": function () { }
  5350. }, {
  5351. closecallback: function () { }
  5352. }, { "style": { "height": "36px" } }).form; //创建窗体
  5353. _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); } }
  5354. break;
  5355. case "studentStudy":
  5356. _formdiv = new U.UF.UI.form(
  5357. "课程中心",
  5358. $$("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
  5359. "id": "studentStudy",
  5360. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5361. "onresize": function () { }
  5362. }, {
  5363. closecallback: function () { }
  5364. }, { "style": { "height": "36px" } }).form; //创建窗体
  5365. _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); } }
  5366. break;
  5367. case "mindNetwork": //好友打开
  5368. _formdiv = new U.UF.UI.form(
  5369. "思维网格",
  5370. $$("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 }), {
  5371. "id": "mindNetwork",
  5372. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5373. "onresize": function () { }
  5374. }, {
  5375. closecallback: function () { }
  5376. }, { "style": { "height": "36px" } }).form; //创建窗体
  5377. _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); } }
  5378. break;
  5379. case "studentClassRoom": //好友打开
  5380. _formdiv = new U.UF.UI.form(
  5381. "实时课堂",
  5382. $$("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 }), {
  5383. "id": "studentClassRoom",
  5384. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5385. "onresize": function () { }
  5386. }, {
  5387. closecallback: function () { }
  5388. }, { "style": { "height": "36px" } }).form; //创建窗体
  5389. _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); } }
  5390. setTimeout(() => {
  5391. U.UF.F.windowZooming(_formdiv)
  5392. }, 0);
  5393. break;
  5394. }
  5395. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5396. //选择应用处理
  5397. switch (str) {
  5398. case "project": //好友打开
  5399. _formdiv = new U.UF.UI.form(
  5400. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5401. $$("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 }), {
  5402. "id": "project",
  5403. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5404. "onresize": function () { }
  5405. }, {
  5406. closecallback: function () { }
  5407. }, { "style": { "height": "36px" } }).form; //创建窗体
  5408. _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); } }
  5409. break;
  5410. case "student":
  5411. _formdiv = new U.UF.UI.form(
  5412. "学生管理",
  5413. $$("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 }), {
  5414. "id": "student",
  5415. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5416. "onresize": function () { }
  5417. }, {
  5418. closecallback: function () { }
  5419. }, { "style": { "height": "36px" } }).form; //创建窗体
  5420. _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); } }
  5421. break;
  5422. case "evaluate":
  5423. _formdiv = new U.UF.UI.form(
  5424. "学生评价",
  5425. $$("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 }), {
  5426. "id": "evaluate",
  5427. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5428. "onresize": function () { }
  5429. }, {
  5430. closecallback: function () { }
  5431. }, { "style": { "height": "36px" } }).form; //创建窗体
  5432. _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); } }
  5433. break;
  5434. case "sys":
  5435. _formdiv = new U.UF.UI.form(
  5436. "目标管理",
  5437. $$("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 }), {
  5438. "id": "sys",
  5439. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5440. "onresize": function () { }
  5441. }, {
  5442. closecallback: function () { }
  5443. }, { "style": { "height": "36px" } }).form; //创建窗体
  5444. _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); } }
  5445. break;
  5446. case "courseDesign":
  5447. _formdiv = new U.UF.UI.form(
  5448. "项目设计",
  5449. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5450. "id": "courseDesign",
  5451. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5452. "onresize": function () { }
  5453. }, {
  5454. closecallback: function () { }
  5455. }, { "style": { "height": "36px" } }).form; //创建窗体
  5456. _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); } }
  5457. break;
  5458. case "program":
  5459. _formdiv = new U.UF.UI.form(
  5460. "编程平台",
  5461. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5462. "id": "program",
  5463. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5464. "onresize": function () { }
  5465. }, {
  5466. closecallback: function () { }
  5467. }, { "style": { "height": "36px" } }).form; //创建窗体
  5468. _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); } }
  5469. break;
  5470. case "class":
  5471. _formdiv = new U.UF.UI.form(
  5472. "班级管理",
  5473. $$("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 }), {
  5474. "id": "class",
  5475. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5476. "onresize": function () { }
  5477. }, {
  5478. closecallback: function () { }
  5479. }, { "style": { "height": "36px" } }).form; //创建窗体
  5480. _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); } }
  5481. break;
  5482. case "Grade":
  5483. _formdiv = new U.UF.UI.form(
  5484. "年级管理",
  5485. $$("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 }), {
  5486. "id": "Grade",
  5487. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5488. "onresize": function () { }
  5489. }, {
  5490. closecallback: function () { }
  5491. }, { "style": { "height": "36px" } }).form; //创建窗体
  5492. _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); } }
  5493. break;
  5494. case "teacherOffice":
  5495. _formdiv = new U.UF.UI.form(
  5496. "教研室",
  5497. $$("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 }), {
  5498. "id": "teacherOffice",
  5499. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5500. "onresize": function () { }
  5501. }, {
  5502. closecallback: function () { }
  5503. }, { "style": { "height": "36px" } }).form; //创建窗体
  5504. _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); } }
  5505. break;
  5506. case "my":
  5507. _formdiv = new U.UF.UI.form(
  5508. "我的资料",
  5509. $$("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 }), {
  5510. "id": "my",
  5511. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5512. "onresize": function () { }
  5513. }, {
  5514. closecallback: function () { }
  5515. }, { "style": { "height": "36px" } }).form; //创建窗体
  5516. _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); } }
  5517. break;
  5518. case "notice":
  5519. _formdiv = new U.UF.UI.form(
  5520. "通知公告",
  5521. $$("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 }), {
  5522. "id": "notice",
  5523. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5524. "onresize": function () { }
  5525. }, {
  5526. closecallback: function () { }
  5527. }, { "style": { "height": "36px" } }).form; //创建窗体
  5528. _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); } }
  5529. break;
  5530. case "library":
  5531. _formdiv = new U.UF.UI.form(
  5532. "素材库",
  5533. $$("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 }), {
  5534. "id": "library",
  5535. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5536. "onresize": function () { }
  5537. }, {
  5538. closecallback: function () { }
  5539. }, { "style": { "height": "36px" } }).form; //创建窗体
  5540. _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); } }
  5541. break;
  5542. case "whiteboard":
  5543. _formdiv = new U.UF.UI.form(
  5544. "电子白板",
  5545. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5546. "id": "whiteboard",
  5547. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5548. "onresize": function () { }
  5549. }, {
  5550. closecallback: function () { }
  5551. }, { "style": { "height": "36px" } }).form; //创建窗体
  5552. _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); } }
  5553. break;
  5554. case "investigation":
  5555. _formdiv = new U.UF.UI.form(
  5556. "问卷调查",
  5557. $$("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 }), {
  5558. "id": "investigation",
  5559. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5560. "onresize": function () { }
  5561. }, {
  5562. closecallback: function () { }
  5563. }, { "style": { "height": "36px" } }).form; //创建窗体
  5564. _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); } }
  5565. break;
  5566. case "note":
  5567. _formdiv = new U.UF.UI.form(
  5568. "便签分类",
  5569. $$("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 }), {
  5570. "id": "note",
  5571. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5572. "onresize": function () { }
  5573. }, {
  5574. closecallback: function () { }
  5575. }, { "style": { "height": "36px" } }).form; //创建窗体
  5576. _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); } }
  5577. break;
  5578. // case "score":
  5579. // _formdiv = new U.UF.UI.form(
  5580. // "量规评分",
  5581. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5582. // "id": "score",
  5583. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5584. // "onresize": function() {}
  5585. // }, {
  5586. // closecallback: function() {}
  5587. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5588. // _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); } }
  5589. // break;
  5590. case "mind":
  5591. _formdiv = new U.UF.UI.form(
  5592. "思维导图",
  5593. $$("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"
  5594. "id": "mind",
  5595. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5596. "onresize": function () { }
  5597. }, {
  5598. closecallback: function () { }
  5599. }, { "style": { "height": "36px" } }).form; //创建窗体
  5600. _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); } }
  5601. break;
  5602. case "doc":
  5603. // U.MD.D.I.isRoom();
  5604. _formdiv = new U.UF.UI.form(
  5605. "协同文档",
  5606. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5607. "id": "doc",
  5608. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5609. "onresize": function () { }
  5610. }, {
  5611. closecallback: function () { }
  5612. }, { "style": { "height": "36px" } }).form; //创建窗体
  5613. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5614. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5615. })
  5616. _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); } }
  5617. break;
  5618. case "study":
  5619. _formdiv = new U.UF.UI.form(
  5620. "课程中心",
  5621. $$("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
  5622. "id": "study",
  5623. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5624. "onresize": function () { }
  5625. }, {
  5626. closecallback: function () { }
  5627. }, { "style": { "height": "36px" } }).form; //创建窗体
  5628. _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); } }
  5629. break;
  5630. case "mindNetwork": //好友打开
  5631. _formdiv = new U.UF.UI.form(
  5632. "思维网格",
  5633. $$("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 }), {
  5634. "id": "mindNetwork",
  5635. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5636. "onresize": function () { }
  5637. }, {
  5638. closecallback: function () { }
  5639. }, { "style": { "height": "36px" } }).form; //创建窗体
  5640. _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); } }
  5641. break;
  5642. case "train": //好友打开
  5643. _formdiv = new U.UF.UI.form(
  5644. "训练平台",
  5645. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5646. "id": "mindNetwork",
  5647. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5648. "onresize": function () { }
  5649. }, {
  5650. closecallback: function () { }
  5651. }, { "style": { "height": "36px" } }).form; //创建窗体
  5652. _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); } }
  5653. break;
  5654. case "teacherClassRoom": //好友打开
  5655. _formdiv = new U.UF.UI.form(
  5656. "实时课堂",
  5657. $$("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 }), {
  5658. "id": "teacherClassRoom",
  5659. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5660. "onresize": function () { }
  5661. }, {
  5662. closecallback: function () { }
  5663. }, { "style": { "height": "36px" } }).form; //创建窗体
  5664. _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); } }
  5665. setTimeout(() => {
  5666. U.UF.F.windowZooming(_formdiv)
  5667. }, 0);
  5668. break;
  5669. }
  5670. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5671. switch (str) {
  5672. case "project": //好友打开
  5673. _formdiv = new U.UF.UI.form(
  5674. "课程管理",
  5675. $$("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 }), {
  5676. "id": "project",
  5677. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5678. "onresize": function () { }
  5679. }, {
  5680. closecallback: function () { }
  5681. }, { "style": { "height": "36px" } }).form; //创建窗体
  5682. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5683. break;
  5684. case "evaluate":
  5685. _formdiv = new U.UF.UI.form(
  5686. "学生评价",
  5687. $$("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 }), {
  5688. "id": "evaluate",
  5689. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5690. "onresize": function () { }
  5691. }, {
  5692. closecallback: function () { }
  5693. }, { "style": { "height": "36px" } }).form; //创建窗体
  5694. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5695. break;
  5696. case "notice":
  5697. _formdiv = new U.UF.UI.form(
  5698. "通知公告",
  5699. $$("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 }), {
  5700. "id": "notice",
  5701. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5702. "onresize": function () { }
  5703. }, {
  5704. closecallback: function () { }
  5705. }, { "style": { "height": "36px" } }).form; //创建窗体
  5706. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5707. break;
  5708. case "stuLibrary":
  5709. _formdiv = new U.UF.UI.form(
  5710. "学习资料",
  5711. $$("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 }), {
  5712. "id": "stuLibrary",
  5713. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5714. "onresize": function () { }
  5715. }, {
  5716. closecallback: function () { }
  5717. }, { "style": { "height": "36px" } }).form; //创建窗体
  5718. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/stuLibrary.png)" }, "name": "学习资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5719. break;
  5720. case "program":
  5721. _formdiv = new U.UF.UI.form(
  5722. "编程平台",
  5723. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5724. "id": "program",
  5725. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5726. "onresize": function () { }
  5727. }, {
  5728. closecallback: function () { }
  5729. }, { "style": { "height": "36px" } }).form; //创建窗体
  5730. _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); } }
  5731. break;
  5732. case "whiteboard":
  5733. _formdiv = new U.UF.UI.form(
  5734. "电子白板",
  5735. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5736. "id": "whiteboard",
  5737. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5738. "onresize": function () { }
  5739. }, {
  5740. closecallback: function () { }
  5741. }, { "style": { "height": "36px" } }).form; //创建窗体
  5742. _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); } }
  5743. break;
  5744. case "investigation":
  5745. _formdiv = new U.UF.UI.form(
  5746. "问卷调查",
  5747. $$("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 }), {
  5748. "id": "investigation",
  5749. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5750. "onresize": function () { }
  5751. }, {
  5752. closecallback: function () { }
  5753. }, { "style": { "height": "36px" } }).form; //创建窗体
  5754. _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); } }
  5755. break;
  5756. case "mind":
  5757. _formdiv = new U.UF.UI.form(
  5758. "思维导图",
  5759. $$("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"
  5760. "id": "mind",
  5761. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5762. "onresize": function () { }
  5763. }, {
  5764. closecallback: function () { }
  5765. }, { "style": { "height": "36px" } }).form; //创建窗体
  5766. _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); } }
  5767. break;
  5768. case "doc":
  5769. // U.MD.D.I.isRoom();
  5770. _formdiv = new U.UF.UI.form(
  5771. "协同文档",
  5772. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5773. "id": "doc",
  5774. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5775. "onresize": function () { }
  5776. }, {
  5777. closecallback: function () { }
  5778. }, { "style": { "height": "36px" } }).form; //创建窗体
  5779. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5780. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5781. })
  5782. _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); } }
  5783. break;
  5784. case "study":
  5785. _formdiv = new U.UF.UI.form(
  5786. "课程中心",
  5787. $$("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
  5788. "id": "study",
  5789. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5790. "onresize": function () { }
  5791. }, {
  5792. closecallback: function () { }
  5793. }, { "style": { "height": "36px" } }).form; //创建窗体
  5794. _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); } }
  5795. break;
  5796. case "mindNetwork": //好友打开
  5797. _formdiv = new U.UF.UI.form(
  5798. "思维网格",
  5799. $$("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 }), {
  5800. "id": "mindNetwork",
  5801. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5802. "onresize": function () { }
  5803. }, {
  5804. closecallback: function () { }
  5805. }, { "style": { "height": "36px" } }).form; //创建窗体
  5806. _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); } }
  5807. break;
  5808. case "train": //好友打开
  5809. _formdiv = new U.UF.UI.form(
  5810. "训练平台",
  5811. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5812. "id": "train",
  5813. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5814. "onresize": function () { }
  5815. }, {
  5816. closecallback: function () { }
  5817. }, { "style": { "height": "36px" } }).form; //创建窗体
  5818. _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); } }
  5819. break;
  5820. case "sys":
  5821. _formdiv = new U.UF.UI.form(
  5822. "目标管理",
  5823. $$("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 }), {
  5824. "id": "sys",
  5825. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5826. "onresize": function () { }
  5827. }, {
  5828. closecallback: function () { }
  5829. }, { "style": { "height": "36px" } }).form; //创建窗体
  5830. _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); } }
  5831. break;
  5832. case "courseDesign":
  5833. _formdiv = new U.UF.UI.form(
  5834. "项目设计",
  5835. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5836. "id": "courseDesign",
  5837. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5838. "onresize": function () { }
  5839. }, {
  5840. closecallback: function () { }
  5841. }, { "style": { "height": "36px" } }).form; //创建窗体
  5842. _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); } }
  5843. break;
  5844. }
  5845. } else if (!_type) {
  5846. switch (str) {
  5847. case "my":
  5848. _formdiv = new U.UF.UI.form(
  5849. "我的资料",
  5850. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  5851. "id": "my",
  5852. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5853. "onresize": function () { }
  5854. }, {
  5855. closecallback: function () { }
  5856. }, { "style": { "height": "36px" } }).form; //创建窗体
  5857. _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); } }
  5858. break;
  5859. }
  5860. }
  5861. switch (str) {
  5862. // AIprogram2 AI体验 aihub.cocorobo.cn
  5863. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  5864. // AIprogram AI编程 ai-blockly.cocorobo.cn
  5865. case "formulaEdi": //公式编辑
  5866. _formdiv = new U.UF.UI.form(
  5867. "公式编辑",
  5868. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  5869. "id": "formulaEdi",
  5870. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5871. "onresize": function () { }
  5872. }, {
  5873. closecallback: function () { }
  5874. }, { "style": { "height": "36px" } }).form; //创建窗体
  5875. _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); } }
  5876. break;
  5877. case "molStr": //分子结构
  5878. _formdiv = new U.UF.UI.form(
  5879. "分子结构",
  5880. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  5881. "id": "molStr",
  5882. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5883. "onresize": function () { }
  5884. }, {
  5885. closecallback: function () { }
  5886. }, { "style": { "height": "36px" } }).form; //创建窗体
  5887. _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); } }
  5888. break;
  5889. case "timeAxis": //时间轴
  5890. _formdiv = new U.UF.UI.form(
  5891. "时间轴",
  5892. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  5893. "id": "timeAxis",
  5894. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5895. "onresize": function () { }
  5896. }, {
  5897. closecallback: function () { }
  5898. }, { "style": { "height": "36px" } }).form; //创建窗体
  5899. _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); } }
  5900. break;
  5901. case "AIprogram2": //AI体验
  5902. _formdiv = new U.UF.UI.form(
  5903. "AI体验",
  5904. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  5905. "id": "AIprogram2",
  5906. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5907. "onresize": function () { }
  5908. }, {
  5909. closecallback: function () { }
  5910. }, { "style": { "height": "36px" } }).form; //创建窗体
  5911. _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); } }
  5912. break;
  5913. case "Pythonprogram": //python编程
  5914. _formdiv = new U.UF.UI.form(
  5915. "Python编程",
  5916. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  5917. "id": "Pythonprogram",
  5918. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5919. "onresize": function () { }
  5920. }, {
  5921. closecallback: function () { }
  5922. }, { "style": { "height": "36px" } }).form; //创建窗体
  5923. _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); } }
  5924. break;
  5925. case "AIprogram": //ai编程
  5926. _formdiv = new U.UF.UI.form(
  5927. "AI编程平台",
  5928. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  5929. "id": "AIprogram",
  5930. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5931. "onresize": function () { }
  5932. }, {
  5933. closecallback: function () { }
  5934. }, { "style": { "height": "36px" } }).form; //创建窗体
  5935. _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); } }
  5936. break;
  5937. case "CocoPi": //CocoPi
  5938. _formdiv = new U.UF.UI.form(
  5939. "CocoPi",
  5940. $$("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" }), {
  5941. "id": "CocoPi",
  5942. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5943. "onresize": function () { }
  5944. }, {
  5945. closecallback: function () { }
  5946. }, { "style": { "height": "36px" } }).form; //创建窗体
  5947. _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); } }
  5948. break;
  5949. case "Wood": //Wood
  5950. _formdiv = new U.UF.UI.form(
  5951. "海龟编程",
  5952. $$("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/" }), {
  5953. "id": "Wood",
  5954. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5955. "onresize": function () { }
  5956. }, {
  5957. closecallback: function () { }
  5958. }, { "style": { "height": "36px" } }).form; //创建窗体
  5959. _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); } }
  5960. break;
  5961. case "car": //模拟驾驶
  5962. _formdiv = new U.UF.UI.form(
  5963. "模拟驾驶",
  5964. $$("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/" }), {
  5965. "id": "car",
  5966. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5967. "onresize": function () { }
  5968. }, {
  5969. closecallback: function () { }
  5970. }, { "style": { "height": "36px" } }).form; //创建窗体
  5971. _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); } }
  5972. break;
  5973. case "lineSearch": //路径搜索
  5974. _formdiv = new U.UF.UI.form(
  5975. "路径搜索",
  5976. $$("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/" }), {
  5977. "id": "lineSearch",
  5978. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5979. "onresize": function () { }
  5980. }, {
  5981. closecallback: function () { }
  5982. }, { "style": { "height": "36px" } }).form; //创建窗体
  5983. _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); } }
  5984. break;
  5985. case "deepLearning": //深度学习
  5986. _formdiv = new U.UF.UI.form(
  5987. "深度学习",
  5988. $$("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/#" }), {
  5989. "id": "deepLearning",
  5990. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5991. "onresize": function () { }
  5992. }, {
  5993. closecallback: function () { }
  5994. }, { "style": { "height": "36px" } }).form; //创建窗体
  5995. _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); } }
  5996. break;
  5997. case "allHistory": //深度学习
  5998. _formdiv = new U.UF.UI.form(
  5999. "全历史",
  6000. $$("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/" }), {
  6001. "id": "allHistory",
  6002. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6003. "onresize": function () { }
  6004. }, {
  6005. closecallback: function () { }
  6006. }, { "style": { "height": "36px" } }).form; //创建窗体
  6007. _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); } }
  6008. break;
  6009. case "chatPDF": //ai编程
  6010. _formdiv = new U.UF.UI.form(
  6011. "chatPDF",
  6012. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6013. "id": "chatPDF",
  6014. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6015. "onresize": function () { }
  6016. }, {
  6017. closecallback: function () { }
  6018. }, { "style": { "height": "36px" } }).form; //创建窗体
  6019. _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); } }
  6020. break;
  6021. case "resources": //国家教育
  6022. _formdiv = new U.UF.UI.form(
  6023. "国家教育",
  6024. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6025. "id": "resources",
  6026. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6027. "onresize": function () { }
  6028. }, {
  6029. closecallback: function () { }
  6030. }, { "style": { "height": "36px" } }).form; //创建窗体
  6031. _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); } }
  6032. break;
  6033. case "codeEdit": //源码编辑
  6034. _formdiv = new U.UF.UI.form(
  6035. "源码编辑",
  6036. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6037. "id": "codeEdit",
  6038. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6039. "onresize": function () { }
  6040. }, {
  6041. closecallback: function () { }
  6042. }, { "style": { "height": "36px" } }).form; //创建窗体
  6043. _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); } }
  6044. break; //
  6045. case "MindMap": //MindMap
  6046. _formdiv = new U.UF.UI.form(
  6047. "MindMap",
  6048. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6049. "id": "MindMap",
  6050. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6051. "onresize": function () { }
  6052. }, {
  6053. closecallback: function () { }
  6054. }, { "style": { "height": "36px" } }).form; //创建窗体
  6055. _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); } }
  6056. break;
  6057. case "netWorkPanel": //netWorkPanel
  6058. _formdiv = new U.UF.UI.form(
  6059. "netWorkPanel",
  6060. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6061. "id": "netWorkPanel",
  6062. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6063. "onresize": function () { }
  6064. }, {
  6065. closecallback: function () { }
  6066. }, { "style": { "height": "36px" } }).form; //创建窗体
  6067. _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); } }
  6068. break;
  6069. case "GeoGebra": //GeoGebra
  6070. _formdiv = new U.UF.UI.form(
  6071. "GeoGebra",
  6072. $$("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" }), {
  6073. "id": "GeoGebra",
  6074. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6075. "onresize": function () { }
  6076. }, {
  6077. closecallback: function () { }
  6078. }, { "style": { "height": "36px" } }).form; //创建窗体
  6079. _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); } }
  6080. break;
  6081. case "translation": //翻译
  6082. _formdiv = new U.UF.UI.form(
  6083. "翻译",
  6084. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6085. "id": "translation",
  6086. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6087. "onresize": function () { }
  6088. }, {
  6089. closecallback: function () { }
  6090. }, { "style": { "height": "36px" } }).form; //创建窗体
  6091. _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); } }
  6092. break;
  6093. case "mohe": //魔盒
  6094. _formdiv = new U.UF.UI.form(
  6095. "魔盒识字",
  6096. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6097. "id": "mohe",
  6098. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6099. "onresize": function () { }
  6100. }, {
  6101. closecallback: function () { }
  6102. }, { "style": { "height": "36px" } }).form; //创建窗体
  6103. _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); } }
  6104. break;
  6105. case "24game": //24点
  6106. _formdiv = new U.UF.UI.form(
  6107. "24点",
  6108. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6109. "id": "24game",
  6110. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6111. "onresize": function () { }
  6112. }, {
  6113. closecallback: function () { }
  6114. }, { "style": { "height": "36px" } }).form; //创建窗体
  6115. _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); } }
  6116. break;
  6117. case "case":
  6118. _formdiv = new U.UF.UI.form(
  6119. "课程进展",
  6120. $$("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 }), {
  6121. "id": "case",
  6122. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6123. "onresize": function () { }
  6124. }, {
  6125. closecallback: function () { }
  6126. }, { "style": { "height": "36px" } }).form; //创建窗体
  6127. _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); } }
  6128. break;
  6129. case "snf":
  6130. _formdiv = new U.UF.UI.form(
  6131. "赛诺梵",
  6132. $$("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" }), {
  6133. "id": "snf",
  6134. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6135. "onresize": function () { }
  6136. }, {
  6137. closecallback: function () { }
  6138. }, { "style": { "height": "36px" } }).form; //创建窗体
  6139. _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); } }
  6140. break;
  6141. case "hanFamily":
  6142. _formdiv = new U.UF.UI.form(
  6143. "汉字家族",
  6144. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6145. "id": "hanFamily",
  6146. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6147. "onresize": function () { }
  6148. }, {
  6149. closecallback: function () { }
  6150. }, { "style": { "height": "36px" } }).form; //创建窗体
  6151. _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); } }
  6152. break;
  6153. case "hanClassics":
  6154. _formdiv = new U.UF.UI.form(
  6155. "国学经典",
  6156. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6157. "id": "hanClassics",
  6158. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6159. "onresize": function () { }
  6160. }, {
  6161. closecallback: function () { }
  6162. }, { "style": { "height": "36px" } }).form; //创建窗体
  6163. _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); } }
  6164. break;
  6165. case "hanTraining":
  6166. _formdiv = new U.UF.UI.form(
  6167. "笔画训练",
  6168. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6169. "id": "hanTraining",
  6170. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6171. "onresize": function () { }
  6172. }, {
  6173. closecallback: function () { }
  6174. }, { "style": { "height": "36px" } }).form; //创建窗体
  6175. _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); } }
  6176. break;
  6177. case "hanClass":
  6178. _formdiv = new U.UF.UI.form(
  6179. "书法课堂",
  6180. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6181. "id": "hanClass",
  6182. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6183. "onresize": function () { }
  6184. }, {
  6185. closecallback: function () { }
  6186. }, { "style": { "height": "36px" } }).form; //创建窗体
  6187. _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); } }
  6188. break;
  6189. case "han":
  6190. _formdiv = new U.UF.UI.form(
  6191. "汉字宫",
  6192. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6193. "id": "han",
  6194. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6195. "onresize": function () { }
  6196. }, {
  6197. closecallback: function () { }
  6198. }, { "style": { "height": "36px" } }).form; //创建窗体
  6199. _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); } }
  6200. break;
  6201. case "projectGM": //课程管理
  6202. _formdiv = new U.UF.UI.form(
  6203. "课程管理",
  6204. $$("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 }), {
  6205. "id": "projectGM",
  6206. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6207. "onresize": function () { }
  6208. }, {
  6209. closecallback: function () { }
  6210. }, { "style": { "height": "36px" } }).form; //创建窗体
  6211. _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); } }
  6212. break;
  6213. case "studyGM": //课程中心
  6214. _formdiv = new U.UF.UI.form(
  6215. "课程中心",
  6216. $$("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
  6217. "id": "study",
  6218. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6219. "onresize": function () { }
  6220. }, {
  6221. closecallback: function () { }
  6222. }, { "style": { "height": "36px" } }).form; //创建窗体
  6223. _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); } }
  6224. break;
  6225. // studentGM
  6226. case "studentGM": //学生管理
  6227. _formdiv = new U.UF.UI.form(
  6228. "学生管理",
  6229. $$("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 }), {
  6230. "id": "studentGM",
  6231. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6232. "onresize": function () { }
  6233. }, {
  6234. closecallback: function () { }
  6235. }, { "style": { "height": "36px" } }).form; //创建窗体
  6236. _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); } }
  6237. break;
  6238. case "evaluateGM": //学生评价
  6239. _formdiv = new U.UF.UI.form(
  6240. "学生评价",
  6241. $$("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 }), {
  6242. "id": "evaluateGM",
  6243. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6244. "onresize": function () { }
  6245. }, {
  6246. closecallback: function () { }
  6247. }, { "style": { "height": "36px" } }).form; //创建窗体
  6248. _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); } }
  6249. break;
  6250. // classGM
  6251. case "classGM": //班级管理
  6252. _formdiv = new U.UF.UI.form(
  6253. "班级管理",
  6254. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/classGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6255. "id": "classGM",
  6256. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6257. "onresize": function () { }
  6258. }, {
  6259. closecallback: function () { }
  6260. }, { "style": { "height": "36px" } }).form; //创建窗体
  6261. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6262. break;
  6263. // dataGM
  6264. case "dataGM":
  6265. _formdiv = new U.UF.UI.form(
  6266. "我的资料",
  6267. $$("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 }), {
  6268. "id": "dataGM",
  6269. "style": { "width": "42%", "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/gm/data.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6275. break;
  6276. // caseGM
  6277. case "caseGM": //课程进展
  6278. _formdiv = new U.UF.UI.form(
  6279. "课程进展",
  6280. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesignGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6281. "id": "caseGM",
  6282. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6283. "onresize": function () { }
  6284. }, {
  6285. closecallback: function () { }
  6286. }, { "style": { "height": "36px" } }).form; //创建窗体
  6287. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6288. break;
  6289. // meterialGM
  6290. case "meterialGM": //素材库
  6291. _formdiv = new U.UF.UI.form(
  6292. "素材库",
  6293. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/libraryGM?userid=" + _userid + "&org=" + _org }), {
  6294. "id": "meterialGM",
  6295. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6296. "onresize": function () { }
  6297. }, {
  6298. closecallback: function () { }
  6299. }, { "style": { "height": "36px" } }).form; //创建窗体
  6300. _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); } }
  6301. break;
  6302. // evaluateSGM
  6303. case "evaluateSGM": //我的评价
  6304. _formdiv = new U.UF.UI.form(
  6305. "我的评价",
  6306. $$("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 }), {
  6307. "id": "evaluateSGM",
  6308. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6309. "onresize": function () { }
  6310. }, {
  6311. closecallback: function () { }
  6312. }, { "style": { "height": "36px" } }).form; //创建窗体
  6313. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6314. break;
  6315. case "jupyter": //jupyter
  6316. _formdiv = new U.UF.UI.form(
  6317. "jupyter",
  6318. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6319. "id": "jupyter",
  6320. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6321. "onresize": function () { }
  6322. }, {
  6323. closecallback: function () { }
  6324. }, { "style": { "height": "36px" } }).form; //创建窗体
  6325. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/jupyter.png)" }, "name": "jupyter", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6326. break;
  6327. case "number": //数字实验室
  6328. _formdiv = new U.UF.UI.form(
  6329. "数字实验室",
  6330. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6331. "id": "number",
  6332. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6333. "onresize": function () { }
  6334. }, {
  6335. closecallback: function () { }
  6336. }, { "style": { "height": "36px" } }).form; //创建窗体
  6337. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/number.png)" }, "name": "数字实验室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6338. break;
  6339. case "studentCourse": //项目管理 学生
  6340. _formdiv = new U.UF.UI.form(
  6341. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6342. $$("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 }), {
  6343. "id": "studentCourse",
  6344. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6345. "onresize": function () { }
  6346. }, {
  6347. closecallback: function () { }
  6348. }, { "style": { "height": "36px" } }).form; //创建窗体
  6349. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6350. break;
  6351. case "studentCourseS": //项目管理 老师
  6352. _formdiv = new U.UF.UI.form(
  6353. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6354. $$("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 }), {
  6355. "id": "studentCourseS",
  6356. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6357. "onresize": function () { }
  6358. }, {
  6359. closecallback: function () { }
  6360. }, { "style": { "height": "36px" } }).form; //创建窗体
  6361. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6362. break;
  6363. case "studentIndex": //项目中心
  6364. _formdiv = new U.UF.UI.form(
  6365. "项目中心",
  6366. $$("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 }), {
  6367. "id": "studentIndex",
  6368. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6369. "onresize": function () { }
  6370. }, {
  6371. closecallback: function () { }
  6372. }, { "style": { "height": "36px" } }).form; //创建窗体
  6373. _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); } }
  6374. break;
  6375. case "CaseDesignS":
  6376. _formdiv = new U.UF.UI.form(
  6377. "项目进展",
  6378. $$("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 }), {
  6379. "id": "case",
  6380. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6381. "onresize": function () { }
  6382. }, {
  6383. closecallback: function () { }
  6384. }, { "style": { "height": "36px" } }).form; //创建窗体
  6385. _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); } }
  6386. break;
  6387. case "tcStudent": //腾讯学生管理
  6388. _formdiv = new U.UF.UI.form(
  6389. "学生管理",
  6390. $$("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 }), {
  6391. "id": "tcStudent",
  6392. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6393. "onresize": function () { }
  6394. }, {
  6395. closecallback: function () { }
  6396. }, { "style": { "height": "36px" } }).form; //创建窗体
  6397. _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); } }
  6398. break;
  6399. case "tcSchool": //腾讯学校管理
  6400. _formdiv = new U.UF.UI.form(
  6401. "学校管理",
  6402. $$("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 }), {
  6403. "id": "tcSchool",
  6404. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6405. "onresize": function () { }
  6406. }, {
  6407. closecallback: function () { }
  6408. }, { "style": { "height": "36px" } }).form; //创建窗体
  6409. _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); } }
  6410. break;
  6411. case "tcTeacher": //腾讯学校管理
  6412. _formdiv = new U.UF.UI.form(
  6413. "教师管理",
  6414. $$("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 }), {
  6415. "id": "tcTeacher",
  6416. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6417. "onresize": function () { }
  6418. }, {
  6419. closecallback: function () { }
  6420. }, { "style": { "height": "36px" } }).form; //创建窗体
  6421. _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); } }
  6422. break;
  6423. case "teacher":
  6424. _formdiv = new U.UF.UI.form(
  6425. "教师管理",
  6426. $$("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 }), {
  6427. "id": "teacher",
  6428. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6429. "onresize": function () { }
  6430. }, {
  6431. closecallback: function () { }
  6432. }, { "style": { "height": "36px" } }).form; //创建窗体
  6433. _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); } }
  6434. break;
  6435. case "tcData": //腾讯我的资料
  6436. _formdiv = new U.UF.UI.form(
  6437. "我的资料",
  6438. $$("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 }), {
  6439. "id": "tcData",
  6440. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6441. "onresize": function () { }
  6442. }, {
  6443. closecallback: function () { }
  6444. }, { "style": { "height": "36px" } }).form; //创建窗体
  6445. _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); } }
  6446. break;
  6447. case "tcNotice": //腾讯消息通知
  6448. _formdiv = new U.UF.UI.form(
  6449. "消息通知",
  6450. $$("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 }), {
  6451. "id": "tcNotice",
  6452. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6453. "onresize": function () { }
  6454. }, {
  6455. closecallback: function () { }
  6456. }, { "style": { "height": "36px" } }).form; //创建窗体
  6457. _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); } }
  6458. break;
  6459. case "myReport": //好友打开
  6460. _formdiv = new U.UF.UI.form(
  6461. "我的评价",
  6462. $$("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 }), {
  6463. "id": "myReport",
  6464. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6465. "onresize": function () { }
  6466. }, {
  6467. closecallback: function () { }
  6468. }, { "style": { "height": "36px" } }).form; //创建窗体
  6469. _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); } }
  6470. break;
  6471. case "learnAna": //好友打开
  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/#/learnAna?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6475. "id": "learnAna",
  6476. "style": { "width": "100%", "height": "100%", "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/learnAna.png)" }, "name": "学习分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6482. break;
  6483. case "AIChat": //AI共创
  6484. _formdiv = new U.UF.UI.form(
  6485. "AI共创",
  6486. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6487. "id": "AIChat",
  6488. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6489. "onresize": function () { }
  6490. }, {
  6491. istop: true,
  6492. closecallback: function () { $("#aichat_icon").remove(); },
  6493. narrowcallback: function () {
  6494. if (!$("#aichat_icon")[0]) {
  6495. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6496. }
  6497. },
  6498. }, { "style": { "height": "36px" } }).form; //创建窗体
  6499. _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); } }
  6500. break;
  6501. case "ainew": //AI共创
  6502. _formdiv = new U.UF.UI.form(
  6503. "AI协同",
  6504. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6505. "id": "ainew",
  6506. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6507. "onresize": function () { }
  6508. }, {
  6509. closecallback: function () { }
  6510. }, { "style": { "height": "36px" } }).form; //创建窗体
  6511. _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); } }
  6512. break;
  6513. case "gpt4": //gpt4
  6514. _formdiv = new U.UF.UI.form(
  6515. "AI助手",
  6516. $$("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 }), {
  6517. "id": "gpt4",
  6518. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6519. "onresize": function () { }
  6520. }, {
  6521. closecallback: function () { }
  6522. }, { "style": { "height": "36px" } }).form; //创建窗体
  6523. _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); } }
  6524. break;
  6525. case "aigpt": //gpt4
  6526. _formdiv = new U.UF.UI.form(
  6527. "AI助手+",
  6528. $$("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 }), {
  6529. "id": "aigpt",
  6530. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6531. "onresize": function () { }
  6532. }, {
  6533. closecallback: function () {
  6534. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6535. }
  6536. }, { "style": { "height": "36px" } }).form; //创建窗体
  6537. _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); } }
  6538. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6539. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6540. })
  6541. break;
  6542. case "aiKnowledge": //aiKnowledge
  6543. _formdiv = new U.UF.UI.form(
  6544. "知识建构",
  6545. $$("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://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b" }), {
  6546. "id": "aiKnowledge",
  6547. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6548. "onresize": function () { }
  6549. }, {
  6550. closecallback: function () { }
  6551. }, { "style": { "height": "36px" } }).form; //创建窗体
  6552. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aiKnowledge.png)" }, "name": "知识建构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6553. break;
  6554. case "futureClass": //AI共创
  6555. _formdiv = new U.UF.UI.form(
  6556. "协同建构",
  6557. $$("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
  6558. "id": "synergyCourse",
  6559. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6560. "onresize": function () { }
  6561. }, {
  6562. closecallback: function () {
  6563. $("iframe", _formdiv)[0].contentWindow.loginout();
  6564. }
  6565. }, { "style": { "height": "36px" } }).form; //创建窗体
  6566. _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); } }
  6567. break;
  6568. case "aiagent": //ai agent
  6569. _formdiv = new U.UF.UI.form(
  6570. "AI Agent",
  6571. $$("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" }), {
  6572. "id": "AIAgent",
  6573. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6574. "onresize": function () { }
  6575. }, {
  6576. closecallback: function () { }
  6577. }, { "style": { "height": "36px" } }).form; //创建窗体
  6578. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram2.png)" }, "name": "AI Agent", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6579. break;
  6580. case "dataBoard": //数据看板
  6581. _formdiv = new U.UF.UI.form(
  6582. "数据看板",
  6583. $$("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 }), {
  6584. "id": "dataBoard",
  6585. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6586. "onresize": function () { }
  6587. }, {
  6588. closecallback: function () { }
  6589. }, { "style": { "height": "36px" } }).form; //创建窗体
  6590. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoard.png)" }, "name": "数据看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6591. break;
  6592. case "dataBoardSies": //数据融合
  6593. _formdiv = new U.UF.UI.form(
  6594. "数据融合",
  6595. $$("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 }), {
  6596. "id": "dataBoardSies",
  6597. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6598. "onresize": function () { }
  6599. }, {
  6600. closecallback: function () { }
  6601. }, { "style": { "height": "36px" } }).form; //创建窗体
  6602. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardSies.png)" }, "name": "数据融合", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6603. break;
  6604. case "dataBoardNew": //数据看板
  6605. _formdiv = new U.UF.UI.form(
  6606. "综合看板",
  6607. $$("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 }), {
  6608. "id": "dataBoardNew",
  6609. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6610. "onresize": function () { }
  6611. }, {
  6612. closecallback: function () { }
  6613. }, { "style": { "height": "36px" } }).form; //创建窗体
  6614. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardNew.png)" }, "name": "综合看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6615. break;
  6616. case "dataBoardTest": //数据看板
  6617. _formdiv = new U.UF.UI.form(
  6618. "评测看板",
  6619. $$("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 }), {
  6620. "id": "dataBoardTest",
  6621. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6622. "onresize": function () { }
  6623. }, {
  6624. closecallback: function () { }
  6625. }, { "style": { "height": "36px" } }).form; //创建窗体
  6626. _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); } }
  6627. break;
  6628. case "AIAnalyse": //AI共创
  6629. _formdiv = new U.UF.UI.form(
  6630. "AI分析",
  6631. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6632. "id": "AIAnalyse",
  6633. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6634. "onresize": function () { }
  6635. }, {
  6636. closecallback: function () { }
  6637. }, { "style": { "height": "36px" } }).form; //创建窗体
  6638. _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); } }
  6639. break;
  6640. case "studioCourse": //AI共创
  6641. _formdiv = new U.UF.UI.form(
  6642. "工作管理",
  6643. $$("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 }), {
  6644. "id": "studioCourse",
  6645. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6646. "onresize": function () { }
  6647. }, {
  6648. closecallback: function () { }
  6649. }, { "style": { "height": "36px" } }).form; //创建窗体
  6650. _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); } }
  6651. break;
  6652. case "studioIndex": //AI共创
  6653. _formdiv = new U.UF.UI.form(
  6654. "工作中心",
  6655. $$("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 }), {
  6656. "id": "studioIndex",
  6657. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6658. "onresize": function () { }
  6659. }, {
  6660. closecallback: function () { }
  6661. }, { "style": { "height": "36px" } }).form; //创建窗体
  6662. _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); } }
  6663. break;
  6664. case "source":
  6665. _formdiv = new U.UF.UI.form(
  6666. "教学资源",
  6667. $$("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 }), {
  6668. "id": "source",
  6669. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6670. "onresize": function () { }
  6671. }, {
  6672. closecallback: function () { }
  6673. }, { "style": { "height": "36px" } }).form; //创建窗体
  6674. _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); } }
  6675. break;
  6676. case "testTeacher":
  6677. _formdiv = new U.UF.UI.form(
  6678. "教师管理",
  6679. $$("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 }), {
  6680. "id": "testTeacher",
  6681. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6682. "onresize": function () { }
  6683. }, {
  6684. closecallback: function () { }
  6685. }, { "style": { "height": "36px" } }).form; //创建窗体
  6686. _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); } }
  6687. break;
  6688. case "testStudent":
  6689. _formdiv = new U.UF.UI.form(
  6690. "教师中心",
  6691. $$("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 }), {
  6692. "id": "testStudent",
  6693. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6694. "onresize": function () { }
  6695. }, {
  6696. closecallback: function () { }
  6697. }, { "style": { "height": "36px" } }).form; //创建窗体
  6698. _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); } }
  6699. break;
  6700. case "testTeacherSies":
  6701. _formdiv = new U.UF.UI.form(
  6702. "教师管理",
  6703. $$("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 }), {
  6704. "id": "testTeacherSies",
  6705. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6706. "onresize": function () { }
  6707. }, {
  6708. closecallback: function () { }
  6709. }, { "style": { "height": "36px" } }).form; //创建窗体
  6710. _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); } }
  6711. break;
  6712. case "testStudentSies":
  6713. _formdiv = new U.UF.UI.form(
  6714. "教师中心",
  6715. $$("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 }), {
  6716. "id": "testStudentSies",
  6717. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6718. "onresize": function () { }
  6719. }, {
  6720. closecallback: function () { }
  6721. }, { "style": { "height": "36px" } }).form; //创建窗体
  6722. _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); } }
  6723. break;
  6724. case "ytpbl": //消息通知
  6725. _formdiv = new U.UF.UI.form(
  6726. "案例征集",
  6727. $$("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 }), {
  6728. "id": "ytpbl",
  6729. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6730. "onresize": function () { }
  6731. }, {
  6732. closecallback: function () { }
  6733. }, { "style": { "height": "36px" } }).form; //创建窗体
  6734. _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); } }
  6735. // 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");
  6736. break;
  6737. case "aiCourseResource": //人工智能窗体
  6738. _formdiv = new U.UF.UI.form(
  6739. false,
  6740. $$("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 }), {
  6741. "id": "aiCourseResource",
  6742. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6743. "onresize": function () { },
  6744. "isdrag": false,
  6745. }, {
  6746. closecallback: function () { }
  6747. }, { "style": { "height": "36px" } }).form; //创建窗体
  6748. _taskbar = ''
  6749. break;
  6750. case "szdjgCocooroboX": //图形化编程
  6751. _formdiv = new U.UF.UI.form(
  6752. "图形化编程",
  6753. $$("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" }), {
  6754. "id": "szdjgCocooroboX",
  6755. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6756. "onresize": function () { }
  6757. }, {
  6758. closecallback: function () { }
  6759. }, { "style": { "height": "36px" } }).form; //创建窗体
  6760. _taskbar = ''
  6761. break;
  6762. case "szdjgPython": //python编程
  6763. _formdiv = new U.UF.UI.form(
  6764. "Python编程",
  6765. $$("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" }), {
  6766. "id": "szdjgPython",
  6767. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6768. "onresize": function () { }
  6769. }, {
  6770. closecallback: function () { }
  6771. }, { "style": { "height": "36px" } }).form; //创建窗体
  6772. _taskbar = ''
  6773. break;
  6774. case "Record":
  6775. _formdiv = new U.UF.UI.form(
  6776. "观察记录",
  6777. $$("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 }), {
  6778. "id": "Record",
  6779. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6780. "onresize": function () { }
  6781. }, {
  6782. closecallback: function () { }
  6783. }, { "style": { "height": "36px" } }).form; //创建窗体
  6784. _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); } }
  6785. break;
  6786. case "aigptCourse":
  6787. _formdiv = new U.UF.UI.form(
  6788. "AI智能体",
  6789. $$("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' }), {
  6790. "id": "aigptCourse",
  6791. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6792. "onresize": function () { }
  6793. }, {
  6794. closecallback: function () { }
  6795. }, { "style": { "height": "36px" } }).form; //创建窗体
  6796. _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); } }
  6797. break;
  6798. case "classroomObservation":
  6799. _formdiv = new U.UF.UI.form(
  6800. "课堂观察",
  6801. $$("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 }), {
  6802. "id": "classroomObservation",
  6803. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6804. "onresize": function () { }
  6805. }, {
  6806. closecallback: function () { }
  6807. }, { "style": { "height": "36px" } }).form; //创建窗体
  6808. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classroomObservation.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6809. $("iframe", _formdiv)[0].contentWindow.location.reload()
  6810. break;
  6811. case "pblCourse":
  6812. _formdiv = new U.UF.UI.form(
  6813. "学生PBL",
  6814. $$("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 }), {
  6815. "id": "pblCourse",
  6816. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6817. "onresize": function () { }
  6818. }, {
  6819. closecallback: function () { }
  6820. }, { "style": { "height": "36px" } }).form; //创建窗体
  6821. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6822. break;
  6823. }
  6824. //U.MD.D.I.openClick(str);
  6825. //如果有任务栏信息
  6826. if (_taskbar) {
  6827. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6828. }
  6829. }
  6830. // U.MD.D.I.openClick = function(str){
  6831. // var click = '';
  6832. // switch(str){
  6833. // case 'friend':
  6834. // click = '我的好友';
  6835. // break;
  6836. // case 'domain':
  6837. // click = '域名管理';
  6838. // break;
  6839. // case 'disk':
  6840. // click = '我的云盘';
  6841. // break;
  6842. // case 'word':
  6843. // click = 'Word';
  6844. // break;
  6845. // case 'excel':
  6846. // click = 'Execl';
  6847. // break;
  6848. // case 'txt':
  6849. // click = '文本文件';
  6850. // break;
  6851. // case 'lookupFriend':
  6852. // click = '查找好友';
  6853. // break;
  6854. // case 'ftp':
  6855. // click = 'FTP';
  6856. // break;
  6857. // case 'group':
  6858. // click = '群组';
  6859. // break;
  6860. // case 'set':
  6861. // click = '我的设置';
  6862. // break;
  6863. // case 'systemSet':
  6864. // click = '系统设置';
  6865. // break;
  6866. // case 'boomYun':
  6867. // click = '互联办公';
  6868. // break;
  6869. // case 'xz':
  6870. // click = '云端下载';
  6871. // break;
  6872. // case 'client':
  6873. // click = '有思浏览器';
  6874. // break;
  6875. // case 'backEndProgramming':
  6876. // click = '在线后台编程';
  6877. // break;
  6878. // case 'frontEndProgramming':
  6879. // click = '在线前端编程';
  6880. // break;
  6881. // default: break;
  6882. // }
  6883. // if(U.MD.D.I.Ip && click){
  6884. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  6885. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  6886. // })
  6887. // }
  6888. // }
  6889. /**
  6890. *函数作用:ajax简易函数,使用post格式
  6891. *@param url {data} 后台地址
  6892. *@param data {data} 参数json
  6893. *@param fn {data} 回调函数
  6894. *
  6895. */
  6896. // U.MD.D.I.Mysqlrequest = function(url,fn){
  6897. // var xhr = new XMLHttpRequest();
  6898. // xhr.open("GET",url,true);
  6899. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  6900. // xhr.onreadystatechange = function(){
  6901. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  6902. // fn.call(this,xhr.responseText);
  6903. // }
  6904. // };
  6905. // xhr.send();
  6906. // }
  6907. /*判断是否是内网IP*/
  6908. // U.MD.D.I.isInnerIPFn = function(str){
  6909. // var curPageUrl = str;
  6910. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  6911. // curPageUrl =curPageUrl.replace(reg1,'');
  6912. // // console.log('curPageUrl-1 '+curPageUrl);
  6913. // var reg2 = /\:+/g;//替换冒号为一点
  6914. // curPageUrl =curPageUrl.replace(reg2,'.');
  6915. // // console.log('curPageUrl-2 '+curPageUrl);
  6916. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  6917. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  6918. // if(curPageUrl[2] != '16'){
  6919. // return ipAddress;
  6920. // }else{
  6921. // return false;
  6922. // }
  6923. // }
  6924. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  6925. // //compatibility for firefox and chrome
  6926. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  6927. // var pc = new myPeerConnection({
  6928. // iceServers: []
  6929. // }),
  6930. // noop = function() {},
  6931. // localIPs = {},
  6932. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  6933. // key;
  6934. // function iterateIP(ip) {
  6935. // if (!localIPs[ip]) onNewIP(ip);
  6936. // localIPs[ip] = true;
  6937. // }
  6938. // //create a bogus data channel
  6939. // pc.createDataChannel("");
  6940. // // create offer and set local description
  6941. // pc.createOffer().then(function(sdp) {
  6942. // sdp.sdp.split('\n').forEach(function(line) {
  6943. // if (line.indexOf('candidate') < 0) return;
  6944. // line.match(ipRegex).forEach(iterateIP);
  6945. // });
  6946. // pc.setLocalDescription(sdp, noop, noop);
  6947. // }).catch(function(reason) {
  6948. // // An error occurred, so handle the failure to connect
  6949. // });
  6950. // //sten for candidate events
  6951. // pc.onicecandidate = function(ice) {
  6952. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  6953. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  6954. // };
  6955. // }
  6956. // U.MD.D.I.getUserIpBool = function(callback){
  6957. // U.MD.D.I.getUserIP(function(ip){
  6958. // alert("Got IP! :" + ip);
  6959. // });
  6960. //}
  6961. //#endregion
  6962. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  6963. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6964. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6965. _userinfo = US.userInfo, //登录用户信息
  6966. _userid = US.userInfo.userid //登录用户id
  6967. let _iframe;
  6968. let _cid = cid,
  6969. _stage = stage,
  6970. _task = task,
  6971. _tool = tool;
  6972. var _jie = $$("div", {
  6973. "style": {
  6974. "position": "absolute",
  6975. "bottom": "50px",
  6976. "right": "50px",
  6977. "zIndex": "9999",
  6978. "backgroundColor": "#2268bc",
  6979. "color": "#fff",
  6980. "padding": "12px 20px",
  6981. "cursor": "pointer",
  6982. "borderRadius": "4px",
  6983. },
  6984. "innerHTML": "提交作业"
  6985. })
  6986. let aTool = ''
  6987. let _loading = document.createElement('div')
  6988. _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;"
  6989. // _loading.id = "";
  6990. let _lchild = document.createElement('div')
  6991. let _limg = document.createElement('img')
  6992. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6993. _limg.style = "width: 26px;margin-right: 10px;"
  6994. _lchild.appendChild(_limg)
  6995. let _lspan = document.createElement('span')
  6996. _lspan.innerHTML = "上传中..."
  6997. _lchild.appendChild(_lspan)
  6998. _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%);"
  6999. _loading.appendChild(_lchild)
  7000. var _box = $$('div', {
  7001. "style": {
  7002. "position": "relative",
  7003. "width": "100%",
  7004. "height": "100%",
  7005. },
  7006. })
  7007. _box.appendChild(_loading)
  7008. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7009. switch (str) {
  7010. case "whiteboard":
  7011. aTool = 1;
  7012. _iframe = $$("iframe", {
  7013. "frameborder": "no",
  7014. "border": "0",
  7015. "scrolling ": "no",
  7016. "style": {
  7017. "cssText": "border:0;width:100%;height:100%"
  7018. },
  7019. "src": "https://beta.iwb.cocorobo.cn/"
  7020. })
  7021. _box.appendChild(_iframe);
  7022. _box.appendChild(_jie);
  7023. _formdiv = new U.UF.UI.form(
  7024. "电子白板",
  7025. _box, {
  7026. "id": "whiteboard" + cid + stage + task + tool,
  7027. "style": {
  7028. "width": "90%",
  7029. "height": "90%",
  7030. "overflow": 'hidden'
  7031. },
  7032. "onresize": function () { }
  7033. }, {
  7034. closecallback: function () { }
  7035. }, {
  7036. "style": {
  7037. "height": "36px"
  7038. }
  7039. }).form; //创建窗体
  7040. _taskbar = {
  7041. "id": str + _formdiv.id,
  7042. "style": {
  7043. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7044. },
  7045. "name": "电子白板",
  7046. "forms": _formdiv,
  7047. "click": function () {
  7048. U.MD.D.I.openApplication(str, obj, info);
  7049. }
  7050. }
  7051. break;
  7052. case "mind":
  7053. aTool = 3;
  7054. _iframe = $$("iframe", {
  7055. "frameborder": "no",
  7056. "border": "0",
  7057. "scrolling ": "no",
  7058. "style": {
  7059. "cssText": "border:0;width:100%;height:100%"
  7060. },
  7061. "src": "/kityminder-editor/dist/index.html"
  7062. })
  7063. _box.appendChild(_iframe);
  7064. _box.appendChild(_jie);
  7065. _formdiv = new U.UF.UI.form(
  7066. "思维导图",
  7067. _box, { //"/jsmind/example/demo.html"
  7068. "id": "mind" + cid + stage + task + tool,
  7069. "style": {
  7070. "width": "90%",
  7071. "height": "90%",
  7072. "overflow": 'hidden'
  7073. },
  7074. "onresize": function () { }
  7075. }, {
  7076. closecallback: function () { }
  7077. }, {
  7078. "style": {
  7079. "height": "36px"
  7080. }
  7081. }).form; //创建窗体
  7082. _taskbar = {
  7083. "id": str + _formdiv.id,
  7084. "style": {
  7085. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7086. },
  7087. "name": "思维导图",
  7088. "forms": _formdiv,
  7089. "click": function () {
  7090. U.MD.D.I.openApplication(str, obj, info);
  7091. }
  7092. }
  7093. break;
  7094. case "MindMap":
  7095. aTool = 3;
  7096. _iframe = $$("iframe", {
  7097. "frameborder": "no",
  7098. "border": "0",
  7099. "scrolling ": "no",
  7100. "style": {
  7101. "cssText": "border:0;width:100%;height:100%"
  7102. },
  7103. "src": "//cloud.cocorobo.cn/mind/"
  7104. })
  7105. _box.appendChild(_iframe);
  7106. _box.appendChild(_jie);
  7107. _formdiv = new U.UF.UI.form(
  7108. "思维导图",
  7109. _box, { //"/jsmind/example/demo.html"
  7110. "id": "mind" + cid + stage + task + tool,
  7111. "style": {
  7112. "width": "90%",
  7113. "height": "90%",
  7114. "overflow": 'hidden'
  7115. },
  7116. "onresize": function () { }
  7117. }, {
  7118. closecallback: function () { }
  7119. }, {
  7120. "style": {
  7121. "height": "36px"
  7122. }
  7123. }).form; //创建窗体
  7124. _taskbar = {
  7125. "id": str + _formdiv.id,
  7126. "style": {
  7127. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7128. },
  7129. "name": "思维导图",
  7130. "forms": _formdiv,
  7131. "click": function () {
  7132. U.MD.D.I.openApplication(str, obj, info);
  7133. }
  7134. }
  7135. break;
  7136. case "doc":
  7137. aTool = 6;
  7138. _iframe = $$("iframe", {
  7139. "frameborder": "no",
  7140. "border": "0",
  7141. "scrolling ": "no",
  7142. "style": {
  7143. "cssText": "border:0;width:100%;height:100%"
  7144. },
  7145. "src": "/Office/Word/WordEditArea.htm"
  7146. })
  7147. _box.appendChild(_iframe);
  7148. _box.appendChild(_jie);
  7149. _formdiv = new U.UF.UI.form(
  7150. "协同文档",
  7151. _box, {
  7152. "id": "doc" + cid + stage + task + tool,
  7153. "style": {
  7154. "width": "90%",
  7155. "height": "90%",
  7156. "overflow": 'hidden'
  7157. },
  7158. "onresize": function () { }
  7159. }, {
  7160. closecallback: function () { }
  7161. }, {
  7162. "style": {
  7163. "height": "36px"
  7164. }
  7165. }).form; //创建窗体
  7166. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7167. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7168. })
  7169. _taskbar = {
  7170. "id": str + _formdiv.id,
  7171. "style": {
  7172. "backgroundImage": "url(/img/icon/doc.png)"
  7173. },
  7174. "name": "协同文档",
  7175. "forms": _formdiv,
  7176. "click": function () {
  7177. U.MD.D.I.openApplication(str, obj, info);
  7178. }
  7179. }
  7180. break;
  7181. case "mindNetwork": //好友打开
  7182. aTool = 7;
  7183. _iframe = $$("iframe", {
  7184. "webkitallowfullscreen": "",
  7185. "mozallowfullscreen": "",
  7186. "allowfullscreen": "",
  7187. "frameborder": "no",
  7188. "border": "0",
  7189. "scrolling ": "no",
  7190. "style": {
  7191. "cssText": "border:0; width:100%; height:100%;"
  7192. },
  7193. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7194. })
  7195. _box.appendChild(_iframe);
  7196. _box.appendChild(_jie);
  7197. _formdiv = new U.UF.UI.form(
  7198. "思维网格",
  7199. _box, {
  7200. "id": "mindNetwork" + cid + stage + task + tool,
  7201. "style": {
  7202. "width": "90%",
  7203. "height": "90%",
  7204. "overflow": 'hidden'
  7205. },
  7206. "onresize": function () { }
  7207. }, {
  7208. closecallback: function () { }
  7209. }, {
  7210. "style": {
  7211. "height": "36px"
  7212. }
  7213. }).form; //创建窗体
  7214. _taskbar = {
  7215. "id": str + _formdiv.id,
  7216. "style": {
  7217. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7218. },
  7219. "name": "思维网格",
  7220. "forms": _formdiv,
  7221. "click": function () {
  7222. U.MD.D.I.openApplication(str, obj, info);
  7223. }
  7224. }
  7225. break;
  7226. case "courseDesign":
  7227. _iframe = $$("iframe", {
  7228. "webkitallowfullscreen": "",
  7229. "mozallowfullscreen": "",
  7230. "allowfullscreen": "",
  7231. "frameborder": "no",
  7232. "border": "0",
  7233. "scrolling ": "no",
  7234. "style": {
  7235. "cssText": "border:0; width:100%; height:100%;"
  7236. },
  7237. "src": "/course-design-vue"
  7238. })
  7239. _box.appendChild(_iframe);
  7240. _box.appendChild(_jie);
  7241. _formdiv = new U.UF.UI.form(
  7242. "项目设计",
  7243. _box, {
  7244. "id": "courseDesign" + cid + stage + task + tool,
  7245. "style": {
  7246. "width": "90%",
  7247. "height": "90%",
  7248. "overflow": 'hidden'
  7249. },
  7250. "onresize": function () { }
  7251. }, {
  7252. closecallback: function () { }
  7253. }, {
  7254. "style": {
  7255. "height": "36px"
  7256. }
  7257. }).form; //创建窗体
  7258. _taskbar = {
  7259. "id": str + _formdiv.id,
  7260. "style": {
  7261. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7262. },
  7263. "name": "项目设计",
  7264. "forms": _formdiv,
  7265. "click": function () {
  7266. U.MD.D.I.openApplication(str, obj, info);
  7267. }
  7268. }
  7269. break;
  7270. }
  7271. const script1 = document.createElement("script");
  7272. script1.type = "text/javascript";
  7273. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7274. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7275. const script2 = document.createElement("script");
  7276. script2.type = "text/javascript";
  7277. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7278. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7279. const script3 = document.createElement("script");
  7280. script3.type = "text/javascript";
  7281. script3.charset = "UTF-8";
  7282. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7283. const script4 = document.createElement("script");
  7284. script4.type = "text/javascript";
  7285. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7286. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7287. if (_iframe) {
  7288. if (str == 'doc') {
  7289. _iframe = _formdiv.querySelector('iframe')
  7290. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7291. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7292. _iframe.contentWindow.document.body.appendChild(script1);
  7293. _iframe.contentWindow.document.body.appendChild(script2);
  7294. // _iframe.contentWindow.document.body.appendChild(script3);
  7295. _iframe.contentWindow.document.body.appendChild(script4);
  7296. })
  7297. if (onloadListener) {
  7298. _iframe.contentDocument.location.reload()
  7299. } else {
  7300. _iframe.contentDocument.location.reload()
  7301. }
  7302. } else if (str == 'courseDesign') {
  7303. U.UF.DL.iframeLoad(_iframe, function () {
  7304. // _iframe.contentWindow.U.MD.O.W.load();
  7305. // _iframe.contentWindow.document.body.appendChild(script1);
  7306. _iframe.contentWindow.document.body.appendChild(script2);
  7307. _iframe.contentWindow.document.body.appendChild(script4);
  7308. })
  7309. } else if (str == 'mind') {
  7310. _iframe = _formdiv.querySelector('iframe')
  7311. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7312. //
  7313. _iframe.contentWindow.document.body.appendChild(script1);
  7314. _iframe.contentWindow.document.body.appendChild(script2);
  7315. _iframe.contentWindow.document.body.appendChild(script4);
  7316. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7317. })
  7318. if (onloadListener) {
  7319. _iframe.contentDocument.location.reload()
  7320. } else {
  7321. _iframe.contentDocument.location.reload()
  7322. }
  7323. } else if (str == 'whiteboard') {
  7324. _iframe = _formdiv.querySelector('iframe')
  7325. let onloadListener = _iframe.onload = () => {
  7326. _iframe.contentWindow.document.body.appendChild(script1);
  7327. _iframe.contentWindow.document.body.appendChild(script2);
  7328. _iframe.contentWindow.document.body.appendChild(script4);
  7329. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7330. };
  7331. // if (onloadListener) {
  7332. // try {
  7333. // _iframe.src += "?cocorobo="+new Date().getTime()
  7334. // _iframe.contentWindow.document.location.reload()
  7335. // } catch (error) {
  7336. // }
  7337. // } else {
  7338. // _iframe.contentDocument.location.reload()
  7339. // }
  7340. } else {
  7341. _iframe.onload = () => {
  7342. _iframe.contentWindow.document.body.appendChild(script1);
  7343. _iframe.contentWindow.document.body.appendChild(script2);
  7344. // _iframe.contentWindow.document.body.appendChild(script3);
  7345. _iframe.contentWindow.document.body.appendChild(script4);
  7346. };
  7347. }
  7348. _jie.onclick = async () => {
  7349. let text = ''
  7350. if (aTool == 1) {
  7351. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7352. } else if (aTool == 6) {
  7353. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7354. } else if (aTool == 3) {
  7355. text = await U.MD.D.I.getEditorContent(_iframe);
  7356. }
  7357. _loading.style.display = 'flex'
  7358. console.log(_loading);
  7359. var _ajs = _iframe.contentWindow.document.createElement("script");
  7360. _ajs.type = "text/javascript";
  7361. _ajs.innerHTML =
  7362. // 'console.log(' + _loading + ');\n' +
  7363. 'var _js = document.createElement("script");\n' +
  7364. '_js.type="text/javascript";\n' +
  7365. '_js.charset="UTF-8";\n' +
  7366. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7367. "_js.onload = function(){\n" +
  7368. ' var a = document.getElementsByTagName("img")\n' +
  7369. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7370. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7371. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7372. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7373. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7374. "beforeUpload_shishi(file," +
  7375. "'" +
  7376. _userid +
  7377. "'" +
  7378. ", " +
  7379. "'" +
  7380. _cid +
  7381. "'" +
  7382. ", " +
  7383. "'" +
  7384. _stage +
  7385. "'" +
  7386. ", " +
  7387. "'" +
  7388. _task +
  7389. "'" +
  7390. ", " +
  7391. "'" +
  7392. _tool +
  7393. "'" +
  7394. ", " +
  7395. "'" +
  7396. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7397. "'" +
  7398. ", " +
  7399. "'" +
  7400. aTool +
  7401. "'" +
  7402. ", " +
  7403. "`" +
  7404. text +
  7405. "`" +
  7406. ")\n" +
  7407. " });\n" +
  7408. "}\n" +
  7409. "document.head.appendChild(_js);\n";
  7410. _iframe.contentWindow.document.head.appendChild(_ajs);
  7411. }
  7412. }
  7413. //U.MD.D.I.openClick(str);
  7414. //如果有任务栏信息
  7415. // if (_taskbar) {
  7416. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7417. // }
  7418. }
  7419. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7420. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7421. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7422. _userinfo = US.userInfo, //登录用户信息
  7423. _userid = US.userInfo.userid //登录用户id
  7424. let _iframe;
  7425. let _cid = cid,
  7426. _stage = stage,
  7427. _task = task,
  7428. _tool = tool;
  7429. var _jie = $$("div", {
  7430. "style": {
  7431. "position": "absolute",
  7432. "bottom": "50px",
  7433. "right": "50px",
  7434. "zIndex": "9999",
  7435. "backgroundColor": "#2268bc",
  7436. "color": "#fff",
  7437. "padding": "12px 20px",
  7438. "cursor": "pointer",
  7439. "borderRadius": "4px",
  7440. },
  7441. "innerHTML": "提交作业"
  7442. })
  7443. let aTool = ''
  7444. let _loading = document.createElement('div')
  7445. _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;"
  7446. // _loading.id = "";
  7447. let _lchild = document.createElement('div')
  7448. let _limg = document.createElement('img')
  7449. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7450. _limg.style = "width: 26px;margin-right: 10px;"
  7451. _lchild.appendChild(_limg)
  7452. let _lspan = document.createElement('span')
  7453. _lspan.innerHTML = "上传中..."
  7454. _lchild.appendChild(_lspan)
  7455. _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%);"
  7456. _loading.appendChild(_lchild)
  7457. let _box = $$('div', {
  7458. "style": {
  7459. "position": "relative",
  7460. "width": "100%",
  7461. "height": "100%",
  7462. },
  7463. })
  7464. _box.appendChild(_loading)
  7465. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7466. switch (str) {
  7467. case "whiteboard":
  7468. aTool = 1;
  7469. _iframe = $$("iframe", {
  7470. "frameborder": "no",
  7471. "border": "0",
  7472. "scrolling ": "no",
  7473. "style": {
  7474. "cssText": "border:0;width:100%;height:100%"
  7475. },
  7476. "src": "https://beta.iwb.cocorobo.cn/"
  7477. })
  7478. _box.appendChild(_iframe);
  7479. _box.appendChild(_jie);
  7480. _formdiv = new U.UF.UI.form(
  7481. "电子白板",
  7482. _box, {
  7483. "id": "whiteboard" + cid + stage + task + tool,
  7484. "style": {
  7485. "width": "90%",
  7486. "height": "90%",
  7487. "overflow": 'hidden'
  7488. },
  7489. "onresize": function () { }
  7490. }, {
  7491. closecallback: function () { }
  7492. }, {
  7493. "style": {
  7494. "height": "36px"
  7495. }
  7496. }).form; //创建窗体
  7497. _taskbar = {
  7498. "id": str + _formdiv.id,
  7499. "style": {
  7500. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7501. },
  7502. "name": "电子白板",
  7503. "forms": _formdiv,
  7504. "click": function () {
  7505. U.MD.D.I.openApplication(str, obj, info);
  7506. }
  7507. }
  7508. break;
  7509. case "mind":
  7510. aTool = 3;
  7511. _iframe = $$("iframe", {
  7512. "frameborder": "no",
  7513. "border": "0",
  7514. "scrolling ": "no",
  7515. "style": {
  7516. "cssText": "border:0;width:100%;height:100%"
  7517. },
  7518. "src": "/kityminder-editor/dist/index.html"
  7519. })
  7520. _box.appendChild(_iframe);
  7521. _box.appendChild(_jie);
  7522. _formdiv = new U.UF.UI.form(
  7523. "思维导图",
  7524. _box, { //"/jsmind/example/demo.html"
  7525. "id": "mind" + cid + stage + task + tool,
  7526. "style": {
  7527. "width": "90%",
  7528. "height": "90%",
  7529. "overflow": 'hidden'
  7530. },
  7531. "onresize": function () { }
  7532. }, {
  7533. closecallback: function () { }
  7534. }, {
  7535. "style": {
  7536. "height": "36px"
  7537. }
  7538. }).form; //创建窗体
  7539. _taskbar = {
  7540. "id": str + _formdiv.id,
  7541. "style": {
  7542. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7543. },
  7544. "name": "思维导图",
  7545. "forms": _formdiv,
  7546. "click": function () {
  7547. U.MD.D.I.openApplication(str, obj, info);
  7548. }
  7549. }
  7550. break;
  7551. case "MindMap":
  7552. aTool = 3;
  7553. _iframe = $$("iframe", {
  7554. "frameborder": "no",
  7555. "border": "0",
  7556. "scrolling ": "no",
  7557. "style": {
  7558. "cssText": "border:0;width:100%;height:100%"
  7559. },
  7560. "src": "//cloud.cocorobo.cn/mind/"
  7561. })
  7562. _box.appendChild(_iframe);
  7563. _box.appendChild(_jie);
  7564. _formdiv = new U.UF.UI.form(
  7565. "思维导图",
  7566. _box, { //"/jsmind/example/demo.html"
  7567. "id": "mind" + cid + stage + task + tool,
  7568. "style": {
  7569. "width": "90%",
  7570. "height": "90%",
  7571. "overflow": 'hidden'
  7572. },
  7573. "onresize": function () { }
  7574. }, {
  7575. closecallback: function () { }
  7576. }, {
  7577. "style": {
  7578. "height": "36px"
  7579. }
  7580. }).form; //创建窗体
  7581. _taskbar = {
  7582. "id": str + _formdiv.id,
  7583. "style": {
  7584. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7585. },
  7586. "name": "思维导图",
  7587. "forms": _formdiv,
  7588. "click": function () {
  7589. U.MD.D.I.openApplication(str, obj, info);
  7590. }
  7591. }
  7592. break;
  7593. case "doc":
  7594. aTool = 6;
  7595. _iframe = $$("iframe", {
  7596. "frameborder": "no",
  7597. "border": "0",
  7598. "scrolling ": "no",
  7599. "style": {
  7600. "cssText": "border:0;width:100%;height:100%"
  7601. },
  7602. "src": "/Office/Word/WordEditArea.htm"
  7603. })
  7604. _box.appendChild(_iframe);
  7605. _box.appendChild(_jie);
  7606. _formdiv = new U.UF.UI.form(
  7607. "协同文档",
  7608. _box, {
  7609. "id": "doc" + cid + stage + task + tool,
  7610. "style": {
  7611. "width": "90%",
  7612. "height": "90%",
  7613. "overflow": 'hidden'
  7614. },
  7615. "onresize": function () { }
  7616. }, {
  7617. closecallback: function () { }
  7618. }, {
  7619. "style": {
  7620. "height": "36px"
  7621. }
  7622. }).form; //创建窗体
  7623. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7624. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7625. })
  7626. _taskbar = {
  7627. "id": str + _formdiv.id,
  7628. "style": {
  7629. "backgroundImage": "url(/img/icon/doc.png)"
  7630. },
  7631. "name": "协同文档",
  7632. "forms": _formdiv,
  7633. "click": function () {
  7634. U.MD.D.I.openApplication(str, obj, info);
  7635. }
  7636. }
  7637. break;
  7638. case "mindNetwork": //好友打开
  7639. aTool = 7;
  7640. _iframe = $$("iframe", {
  7641. "webkitallowfullscreen": "",
  7642. "mozallowfullscreen": "",
  7643. "allowfullscreen": "",
  7644. "frameborder": "no",
  7645. "border": "0",
  7646. "scrolling ": "no",
  7647. "style": {
  7648. "cssText": "border:0; width:100%; height:100%;"
  7649. },
  7650. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7651. })
  7652. _box.appendChild(_iframe);
  7653. _box.appendChild(_jie);
  7654. _formdiv = new U.UF.UI.form(
  7655. "思维网格",
  7656. _box, {
  7657. "id": "mindNetwork" + cid + stage + task + tool,
  7658. "style": {
  7659. "width": "90%",
  7660. "height": "90%",
  7661. "overflow": 'hidden'
  7662. },
  7663. "onresize": function () { }
  7664. }, {
  7665. closecallback: function () { }
  7666. }, {
  7667. "style": {
  7668. "height": "36px"
  7669. }
  7670. }).form; //创建窗体
  7671. _taskbar = {
  7672. "id": str + _formdiv.id,
  7673. "style": {
  7674. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7675. },
  7676. "name": "思维网格",
  7677. "forms": _formdiv,
  7678. "click": function () {
  7679. U.MD.D.I.openApplication(str, obj, info);
  7680. }
  7681. }
  7682. break;
  7683. case "courseDesign":
  7684. _iframe = $$("iframe", {
  7685. "webkitallowfullscreen": "",
  7686. "mozallowfullscreen": "",
  7687. "allowfullscreen": "",
  7688. "frameborder": "no",
  7689. "border": "0",
  7690. "scrolling ": "no",
  7691. "style": {
  7692. "cssText": "border:0; width:100%; height:100%;"
  7693. },
  7694. "src": "/course-design-vue"
  7695. })
  7696. _box.appendChild(_iframe);
  7697. _box.appendChild(_jie);
  7698. _formdiv = new U.UF.UI.form(
  7699. "项目设计",
  7700. _box, {
  7701. "id": "courseDesign" + cid + stage + task + tool,
  7702. "style": {
  7703. "width": "90%",
  7704. "height": "90%",
  7705. "overflow": 'hidden'
  7706. },
  7707. "onresize": function () { }
  7708. }, {
  7709. closecallback: function () { }
  7710. }, {
  7711. "style": {
  7712. "height": "36px"
  7713. }
  7714. }).form; //创建窗体
  7715. _taskbar = {
  7716. "id": str + _formdiv.id,
  7717. "style": {
  7718. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7719. },
  7720. "name": "项目设计",
  7721. "forms": _formdiv,
  7722. "click": function () {
  7723. U.MD.D.I.openApplication(str, obj, info);
  7724. }
  7725. }
  7726. break;
  7727. }
  7728. const script1 = document.createElement("script");
  7729. script1.type = "text/javascript";
  7730. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7731. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7732. const script2 = document.createElement("script");
  7733. script2.type = "text/javascript";
  7734. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7735. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7736. const script3 = document.createElement("script");
  7737. script3.type = "text/javascript";
  7738. script3.charset = "UTF-8";
  7739. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7740. const script4 = document.createElement("script");
  7741. script4.type = "text/javascript";
  7742. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7743. script4.src = window.origin + "/js/Common/jietu2E.js";
  7744. if (_iframe) {
  7745. if (str == 'doc') {
  7746. _iframe = _formdiv.querySelector('iframe')
  7747. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7748. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7749. _iframe.contentWindow.document.body.appendChild(script1);
  7750. _iframe.contentWindow.document.body.appendChild(script2);
  7751. // _iframe.contentWindow.document.body.appendChild(script3);
  7752. _iframe.contentWindow.document.body.appendChild(script4);
  7753. })
  7754. if (onloadListener) {
  7755. _iframe.contentDocument.location.reload()
  7756. } else {
  7757. _iframe.contentDocument.location.reload()
  7758. }
  7759. } else if (str == 'courseDesign') {
  7760. U.UF.DL.iframeLoad(_iframe, function () {
  7761. // _iframe.contentWindow.U.MD.O.W.load();
  7762. // _iframe.contentWindow.document.body.appendChild(script1);
  7763. _iframe.contentWindow.document.body.appendChild(script2);
  7764. _iframe.contentWindow.document.body.appendChild(script4);
  7765. })
  7766. } else if (str == 'mind') {
  7767. _iframe = _formdiv.querySelector('iframe')
  7768. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7769. //
  7770. _iframe.contentWindow.document.body.appendChild(script1);
  7771. _iframe.contentWindow.document.body.appendChild(script2);
  7772. _iframe.contentWindow.document.body.appendChild(script4);
  7773. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7774. })
  7775. if (onloadListener) {
  7776. _iframe.contentDocument.location.reload()
  7777. } else {
  7778. _iframe.contentDocument.location.reload()
  7779. }
  7780. } else if (str == 'whiteboard') {
  7781. _iframe = _formdiv.querySelector('iframe')
  7782. let onloadListener = _iframe.onload = () => {
  7783. _iframe.contentWindow.document.body.appendChild(script1);
  7784. _iframe.contentWindow.document.body.appendChild(script2);
  7785. _iframe.contentWindow.document.body.appendChild(script4);
  7786. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7787. };
  7788. // if (onloadListener) {
  7789. // try {
  7790. // _iframe.src += "?cocorobo="+new Date().getTime()
  7791. // _iframe.contentWindow.document.location.reload()
  7792. // } catch (error) {
  7793. // }
  7794. // } else {
  7795. // _iframe.contentDocument.location.reload()
  7796. // }
  7797. } else {
  7798. _iframe.onload = () => {
  7799. _iframe.contentWindow.document.body.appendChild(script1);
  7800. _iframe.contentWindow.document.body.appendChild(script2);
  7801. // _iframe.contentWindow.document.body.appendChild(script3);
  7802. _iframe.contentWindow.document.body.appendChild(script4);
  7803. };
  7804. }
  7805. _jie.onclick = async () => {
  7806. let text = ''
  7807. if (aTool == 1) {
  7808. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7809. } else if (aTool == 6) {
  7810. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7811. } else if (aTool == 3) {
  7812. text = await U.MD.D.I.getEditorContent(_iframe);
  7813. }
  7814. _loading.style.display = 'flex'
  7815. console.log(_loading);
  7816. var _ajs = _iframe.contentWindow.document.createElement("script");
  7817. _ajs.type = "text/javascript";
  7818. _ajs.innerHTML =
  7819. // 'console.log(' + _loading + ');\n' +
  7820. 'var _js = document.createElement("script");\n' +
  7821. '_js.type="text/javascript";\n' +
  7822. '_js.charset="UTF-8";\n' +
  7823. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7824. "_js.onload = function(){\n" +
  7825. ' var a = document.getElementsByTagName("img")\n' +
  7826. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7827. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7828. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7829. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7830. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7831. "beforeUpload_shishi(file," +
  7832. "'" +
  7833. _userid +
  7834. "'" +
  7835. ", " +
  7836. "'" +
  7837. _cid +
  7838. "'" +
  7839. ", " +
  7840. "'" +
  7841. _stage +
  7842. "'" +
  7843. ", " +
  7844. "'" +
  7845. _task +
  7846. "'" +
  7847. ", " +
  7848. "'" +
  7849. _tool +
  7850. "'" +
  7851. ", " +
  7852. "'" +
  7853. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  7854. "'" +
  7855. ", " +
  7856. "'" +
  7857. aTool +
  7858. "'" +
  7859. ", " +
  7860. "`" +
  7861. text +
  7862. "`" +
  7863. ")\n" +
  7864. " });\n" +
  7865. "}\n" +
  7866. "document.head.appendChild(_js);\n";
  7867. _iframe.contentWindow.document.head.appendChild(_ajs);
  7868. }
  7869. }
  7870. //U.MD.D.I.openClick(str);
  7871. //如果有任务栏信息
  7872. // if (_taskbar) {
  7873. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7874. // }
  7875. }
  7876. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  7877. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7878. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7879. _userid = student.userid, //登录用户id
  7880. _username = student.student //用户名字
  7881. let _iframe;
  7882. let _cid = cid,
  7883. _stage = stage,
  7884. _task = task,
  7885. _tool = tool;
  7886. var _jie = $$("div", {
  7887. "style": {
  7888. "position": "absolute",
  7889. "bottom": "50px",
  7890. "right": "50px",
  7891. "zIndex": "9999",
  7892. "backgroundColor": "#2268bc",
  7893. "color": "#fff",
  7894. "padding": "12px 20px",
  7895. "cursor": "pointer",
  7896. "borderRadius": "4px",
  7897. },
  7898. "innerHTML": "提交作业"
  7899. })
  7900. let aTool = ''
  7901. let _loading = document.createElement('div')
  7902. _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;"
  7903. // _loading.id = "";
  7904. let _lchild = document.createElement('div')
  7905. let _limg = document.createElement('img')
  7906. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7907. _limg.style = "width: 26px;margin-right: 10px;"
  7908. _lchild.appendChild(_limg)
  7909. let _lspan = document.createElement('span')
  7910. _lspan.innerHTML = "上传中..."
  7911. _lchild.appendChild(_lspan)
  7912. _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%);"
  7913. _loading.appendChild(_lchild)
  7914. var _box = $$('div', {
  7915. "style": {
  7916. "position": "relative",
  7917. "width": "100%",
  7918. "height": "100%",
  7919. },
  7920. })
  7921. _box.appendChild(_loading)
  7922. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  7923. switch (str) {
  7924. case "whiteboard":
  7925. aTool = 1;
  7926. _iframe = $$("iframe", {
  7927. "frameborder": "no",
  7928. "border": "0",
  7929. "scrolling ": "no",
  7930. "style": {
  7931. "cssText": "border:0;width:100%;height:100%"
  7932. },
  7933. "src": "https://beta.iwb.cocorobo.cn/"
  7934. })
  7935. _box.appendChild(_iframe);
  7936. _box.appendChild(_jie);
  7937. _formdiv = new U.UF.UI.form(
  7938. "电子白板-" + _username,
  7939. _box, {
  7940. "id": "whiteboard" + cid + stage + task + tool + _userid,
  7941. "style": {
  7942. "width": "90%",
  7943. "height": "90%",
  7944. "overflow": 'hidden'
  7945. },
  7946. "onresize": function () { }
  7947. }, {
  7948. closecallback: function () { }
  7949. }, {
  7950. "style": {
  7951. "height": "36px"
  7952. }
  7953. }).form; //创建窗体
  7954. _taskbar = {
  7955. "id": str + _formdiv.id,
  7956. "style": {
  7957. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7958. },
  7959. "name": "电子白板",
  7960. "forms": _formdiv,
  7961. "click": function () {
  7962. U.MD.D.I.openApplication(str, obj, info);
  7963. }
  7964. }
  7965. break;
  7966. case "mind":
  7967. aTool = 3;
  7968. _iframe = $$("iframe", {
  7969. "frameborder": "no",
  7970. "border": "0",
  7971. "scrolling ": "no",
  7972. "style": {
  7973. "cssText": "border:0;width:100%;height:100%"
  7974. },
  7975. "src": "/kityminder-editor/dist/index.html"
  7976. })
  7977. _box.appendChild(_iframe);
  7978. _box.appendChild(_jie);
  7979. _formdiv = new U.UF.UI.form(
  7980. "思维导图-" + _username,
  7981. _box, { //"/jsmind/example/demo.html"
  7982. "id": "mind" + cid + stage + task + tool + _userid,
  7983. "style": {
  7984. "width": "90%",
  7985. "height": "90%",
  7986. "overflow": 'hidden'
  7987. },
  7988. "onresize": function () { }
  7989. }, {
  7990. closecallback: function () { }
  7991. }, {
  7992. "style": {
  7993. "height": "36px"
  7994. }
  7995. }).form; //创建窗体
  7996. _taskbar = {
  7997. "id": str + _formdiv.id,
  7998. "style": {
  7999. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8000. },
  8001. "name": "思维导图",
  8002. "forms": _formdiv,
  8003. "click": function () {
  8004. U.MD.D.I.openApplication(str, obj, info);
  8005. }
  8006. }
  8007. break;
  8008. case "MindMap":
  8009. aTool = 3;
  8010. _iframe = $$("iframe", {
  8011. "frameborder": "no",
  8012. "border": "0",
  8013. "scrolling ": "no",
  8014. "style": {
  8015. "cssText": "border:0;width:100%;height:100%"
  8016. },
  8017. "src": "//cloud.cocorobo.cn/mind/"
  8018. })
  8019. _box.appendChild(_iframe);
  8020. _box.appendChild(_jie);
  8021. _formdiv = new U.UF.UI.form(
  8022. "思维导图-" + _username,
  8023. _box, { //"/jsmind/example/demo.html"
  8024. "id": "mind" + cid + stage + task + tool + _userid,
  8025. "style": {
  8026. "width": "90%",
  8027. "height": "90%",
  8028. "overflow": 'hidden'
  8029. },
  8030. "onresize": function () { }
  8031. }, {
  8032. closecallback: function () { }
  8033. }, {
  8034. "style": {
  8035. "height": "36px"
  8036. }
  8037. }).form; //创建窗体
  8038. _taskbar = {
  8039. "id": str + _formdiv.id,
  8040. "style": {
  8041. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8042. },
  8043. "name": "思维导图",
  8044. "forms": _formdiv,
  8045. "click": function () {
  8046. U.MD.D.I.openApplication(str, obj, info);
  8047. }
  8048. }
  8049. break;
  8050. case "doc":
  8051. aTool = 6;
  8052. _iframe = $$("iframe", {
  8053. "frameborder": "no",
  8054. "border": "0",
  8055. "scrolling ": "no",
  8056. "style": {
  8057. "cssText": "border:0;width:100%;height:100%"
  8058. },
  8059. "src": "/Office/Word/WordEditArea.htm"
  8060. })
  8061. _box.appendChild(_iframe);
  8062. _box.appendChild(_jie);
  8063. _formdiv = new U.UF.UI.form(
  8064. "协同文档-" + _username,
  8065. _box, {
  8066. "id": "doc" + cid + stage + task + tool + _userid,
  8067. "style": {
  8068. "width": "90%",
  8069. "height": "90%",
  8070. "overflow": 'hidden'
  8071. },
  8072. "onresize": function () { }
  8073. }, {
  8074. closecallback: function () { }
  8075. }, {
  8076. "style": {
  8077. "height": "36px"
  8078. }
  8079. }).form; //创建窗体
  8080. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8081. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8082. })
  8083. _taskbar = {
  8084. "id": str + _formdiv.id,
  8085. "style": {
  8086. "backgroundImage": "url(/img/icon/doc.png)"
  8087. },
  8088. "name": "协同文档",
  8089. "forms": _formdiv,
  8090. "click": function () {
  8091. U.MD.D.I.openApplication(str, obj, info);
  8092. }
  8093. }
  8094. break;
  8095. case "mindNetwork": //好友打开
  8096. aTool = 7;
  8097. _iframe = $$("iframe", {
  8098. "webkitallowfullscreen": "",
  8099. "mozallowfullscreen": "",
  8100. "allowfullscreen": "",
  8101. "frameborder": "no",
  8102. "border": "0",
  8103. "scrolling ": "no",
  8104. "style": {
  8105. "cssText": "border:0; width:100%; height:100%;"
  8106. },
  8107. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8108. })
  8109. _box.appendChild(_iframe);
  8110. _box.appendChild(_jie);
  8111. _formdiv = new U.UF.UI.form(
  8112. "思维网格-" + _username,
  8113. _box, {
  8114. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8115. "style": {
  8116. "width": "90%",
  8117. "height": "90%",
  8118. "overflow": 'hidden'
  8119. },
  8120. "onresize": function () { }
  8121. }, {
  8122. closecallback: function () { }
  8123. }, {
  8124. "style": {
  8125. "height": "36px"
  8126. }
  8127. }).form; //创建窗体
  8128. _taskbar = {
  8129. "id": str + _formdiv.id,
  8130. "style": {
  8131. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8132. },
  8133. "name": "思维网格",
  8134. "forms": _formdiv,
  8135. "click": function () {
  8136. U.MD.D.I.openApplication(str, obj, info);
  8137. }
  8138. }
  8139. break;
  8140. case "courseDesign":
  8141. _iframe = $$("iframe", {
  8142. "webkitallowfullscreen": "",
  8143. "mozallowfullscreen": "",
  8144. "allowfullscreen": "",
  8145. "frameborder": "no",
  8146. "border": "0",
  8147. "scrolling ": "no",
  8148. "style": {
  8149. "cssText": "border:0; width:100%; height:100%;"
  8150. },
  8151. "src": "/course-design-vue"
  8152. })
  8153. _box.appendChild(_iframe);
  8154. _box.appendChild(_jie);
  8155. _formdiv = new U.UF.UI.form(
  8156. "项目设计-" + _username,
  8157. _box, {
  8158. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8159. "style": {
  8160. "width": "90%",
  8161. "height": "90%",
  8162. "overflow": 'hidden'
  8163. },
  8164. "onresize": function () { }
  8165. }, {
  8166. closecallback: function () { }
  8167. }, {
  8168. "style": {
  8169. "height": "36px"
  8170. }
  8171. }).form; //创建窗体
  8172. _taskbar = {
  8173. "id": str + _formdiv.id,
  8174. "style": {
  8175. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8176. },
  8177. "name": "项目设计",
  8178. "forms": _formdiv,
  8179. "click": function () {
  8180. U.MD.D.I.openApplication(str, obj, info);
  8181. }
  8182. }
  8183. break;
  8184. }
  8185. const script1 = document.createElement("script");
  8186. script1.type = "text/javascript";
  8187. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8188. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8189. const script2 = document.createElement("script");
  8190. script2.type = "text/javascript";
  8191. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8192. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8193. const script3 = document.createElement("script");
  8194. script3.type = "text/javascript";
  8195. script3.charset = "UTF-8";
  8196. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8197. const script4 = document.createElement("script");
  8198. script4.type = "text/javascript";
  8199. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8200. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8201. if (_iframe) {
  8202. if (str == 'doc') {
  8203. _iframe = _formdiv.querySelector('iframe')
  8204. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8205. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8206. _iframe.contentWindow.document.body.appendChild(script1);
  8207. _iframe.contentWindow.document.body.appendChild(script2);
  8208. // _iframe.contentWindow.document.body.appendChild(script3);
  8209. _iframe.contentWindow.document.body.appendChild(script4);
  8210. })
  8211. if (onloadListener) {
  8212. _iframe.contentDocument.location.reload()
  8213. } else {
  8214. _iframe.contentDocument.location.reload()
  8215. }
  8216. } else if (str == 'courseDesign') {
  8217. U.UF.DL.iframeLoad(_iframe, function () {
  8218. // _iframe.contentWindow.U.MD.O.W.load();
  8219. // _iframe.contentWindow.document.body.appendChild(script1);
  8220. _iframe.contentWindow.document.body.appendChild(script2);
  8221. _iframe.contentWindow.document.body.appendChild(script4);
  8222. })
  8223. } else if (str == 'mind') {
  8224. _iframe = _formdiv.querySelector('iframe')
  8225. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8226. //
  8227. _iframe.contentWindow.document.body.appendChild(script1);
  8228. _iframe.contentWindow.document.body.appendChild(script2);
  8229. _iframe.contentWindow.document.body.appendChild(script4);
  8230. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8231. })
  8232. if (onloadListener) {
  8233. _iframe.contentDocument.location.reload()
  8234. } else {
  8235. _iframe.contentDocument.location.reload()
  8236. }
  8237. } else if (str == 'whiteboard') {
  8238. _iframe = _formdiv.querySelector('iframe')
  8239. let onloadListener = _iframe.onload = () => {
  8240. _iframe.contentWindow.document.body.appendChild(script1);
  8241. _iframe.contentWindow.document.body.appendChild(script2);
  8242. _iframe.contentWindow.document.body.appendChild(script4);
  8243. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8244. };
  8245. // if (onloadListener) {
  8246. // try {
  8247. // _iframe.src += "?cocorobo="+new Date().getTime()
  8248. // _iframe.contentWindow.document.location.reload()
  8249. // } catch (error) {
  8250. // }
  8251. // } else {
  8252. // _iframe.contentDocument.location.reload()
  8253. // }
  8254. } else {
  8255. _iframe.onload = () => {
  8256. _iframe.contentWindow.document.body.appendChild(script1);
  8257. _iframe.contentWindow.document.body.appendChild(script2);
  8258. // _iframe.contentWindow.document.body.appendChild(script3);
  8259. _iframe.contentWindow.document.body.appendChild(script4);
  8260. };
  8261. }
  8262. _jie.onclick = async () => {
  8263. let text = ''
  8264. if (aTool == 1) {
  8265. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8266. } else if (aTool == 6) {
  8267. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8268. } else if (aTool == 3) {
  8269. text = await U.MD.D.I.getEditorContent(_iframe);
  8270. }
  8271. _loading.style.display = 'flex'
  8272. console.log(_loading);
  8273. var _ajs = _iframe.contentWindow.document.createElement("script");
  8274. _ajs.type = "text/javascript";
  8275. _ajs.innerHTML =
  8276. // 'console.log(' + _loading + ');\n' +
  8277. 'var _js = document.createElement("script");\n' +
  8278. '_js.type="text/javascript";\n' +
  8279. '_js.charset="UTF-8";\n' +
  8280. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8281. "_js.onload = function(){\n" +
  8282. ' var a = document.getElementsByTagName("img")\n' +
  8283. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8284. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8285. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8286. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8287. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8288. "beforeUpload_shishi(file," +
  8289. "'" +
  8290. _userid +
  8291. "'" +
  8292. ", " +
  8293. "'" +
  8294. _cid +
  8295. "'" +
  8296. ", " +
  8297. "'" +
  8298. _stage +
  8299. "'" +
  8300. ", " +
  8301. "'" +
  8302. _task +
  8303. "'" +
  8304. ", " +
  8305. "'" +
  8306. _tool +
  8307. "'" +
  8308. ", " +
  8309. "'" +
  8310. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8311. "'" +
  8312. ", " +
  8313. "'" +
  8314. aTool +
  8315. "'" +
  8316. ", " +
  8317. "`" +
  8318. text +
  8319. "`" +
  8320. ")\n" +
  8321. " });\n" +
  8322. "}\n" +
  8323. "document.head.appendChild(_js);\n";
  8324. _iframe.contentWindow.document.head.appendChild(_ajs);
  8325. }
  8326. }
  8327. }
  8328. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8329. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8330. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8331. _userid = student.userid, //登录用户id
  8332. _username = student.student //用户名字
  8333. let _iframe;
  8334. let _cid = cid,
  8335. _stage = stage,
  8336. _task = task,
  8337. _tool = tool;
  8338. var _jie = $$("div", {
  8339. "style": {
  8340. "position": "absolute",
  8341. "bottom": "50px",
  8342. "right": "50px",
  8343. "zIndex": "9999",
  8344. "backgroundColor": "#2268bc",
  8345. "color": "#fff",
  8346. "padding": "12px 20px",
  8347. "cursor": "pointer",
  8348. "borderRadius": "4px",
  8349. },
  8350. "innerHTML": "提交作业"
  8351. })
  8352. let aTool = ''
  8353. let _loading = document.createElement('div')
  8354. _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;"
  8355. // _loading.id = "";
  8356. let _lchild = document.createElement('div')
  8357. let _limg = document.createElement('img')
  8358. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8359. _limg.style = "width: 26px;margin-right: 10px;"
  8360. _lchild.appendChild(_limg)
  8361. let _lspan = document.createElement('span')
  8362. _lspan.innerHTML = "上传中..."
  8363. _lchild.appendChild(_lspan)
  8364. _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%);"
  8365. _loading.appendChild(_lchild)
  8366. var _box = $$('div', {
  8367. "style": {
  8368. "position": "relative",
  8369. "width": "100%",
  8370. "height": "100%",
  8371. },
  8372. })
  8373. _box.appendChild(_loading)
  8374. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8375. switch (str) {
  8376. case "whiteboard":
  8377. aTool = 1;
  8378. _iframe = $$("iframe", {
  8379. "frameborder": "no",
  8380. "border": "0",
  8381. "scrolling ": "no",
  8382. "style": {
  8383. "cssText": "border:0;width:100%;height:100%"
  8384. },
  8385. "src": "https://beta.iwb.cocorobo.cn/"
  8386. })
  8387. _box.appendChild(_iframe);
  8388. _box.appendChild(_jie);
  8389. _formdiv = new U.UF.UI.form(
  8390. "电子白板-" + _username,
  8391. _box, {
  8392. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8393. "style": {
  8394. "width": "90%",
  8395. "height": "90%",
  8396. "overflow": 'hidden'
  8397. },
  8398. "onresize": function () { }
  8399. }, {
  8400. closecallback: function () { }
  8401. }, {
  8402. "style": {
  8403. "height": "36px"
  8404. }
  8405. }).form; //创建窗体
  8406. _taskbar = {
  8407. "id": str + _formdiv.id,
  8408. "style": {
  8409. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8410. },
  8411. "name": "电子白板",
  8412. "forms": _formdiv,
  8413. "click": function () {
  8414. U.MD.D.I.openApplication(str, obj, info);
  8415. }
  8416. }
  8417. break;
  8418. case "mind":
  8419. aTool = 3;
  8420. _iframe = $$("iframe", {
  8421. "frameborder": "no",
  8422. "border": "0",
  8423. "scrolling ": "no",
  8424. "style": {
  8425. "cssText": "border:0;width:100%;height:100%"
  8426. },
  8427. "src": "/kityminder-editor/dist/index.html"
  8428. })
  8429. _box.appendChild(_iframe);
  8430. _box.appendChild(_jie);
  8431. _formdiv = new U.UF.UI.form(
  8432. "思维导图-" + _username,
  8433. _box, { //"/jsmind/example/demo.html"
  8434. "id": "mind" + cid + stage + task + tool + _userid,
  8435. "style": {
  8436. "width": "90%",
  8437. "height": "90%",
  8438. "overflow": 'hidden'
  8439. },
  8440. "onresize": function () { }
  8441. }, {
  8442. closecallback: function () { }
  8443. }, {
  8444. "style": {
  8445. "height": "36px"
  8446. }
  8447. }).form; //创建窗体
  8448. _taskbar = {
  8449. "id": str + _formdiv.id,
  8450. "style": {
  8451. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8452. },
  8453. "name": "思维导图",
  8454. "forms": _formdiv,
  8455. "click": function () {
  8456. U.MD.D.I.openApplication(str, obj, info);
  8457. }
  8458. }
  8459. break;
  8460. case "MindMap":
  8461. aTool = 3;
  8462. _iframe = $$("iframe", {
  8463. "frameborder": "no",
  8464. "border": "0",
  8465. "scrolling ": "no",
  8466. "style": {
  8467. "cssText": "border:0;width:100%;height:100%"
  8468. },
  8469. "src": "//cloud.cocorobo.cn/mind/"
  8470. })
  8471. _box.appendChild(_iframe);
  8472. _box.appendChild(_jie);
  8473. _formdiv = new U.UF.UI.form(
  8474. "思维导图-" + _username,
  8475. _box, { //"/jsmind/example/demo.html"
  8476. "id": "mind" + cid + stage + task + tool + _userid,
  8477. "style": {
  8478. "width": "90%",
  8479. "height": "90%",
  8480. "overflow": 'hidden'
  8481. },
  8482. "onresize": function () { }
  8483. }, {
  8484. closecallback: function () { }
  8485. }, {
  8486. "style": {
  8487. "height": "36px"
  8488. }
  8489. }).form; //创建窗体
  8490. _taskbar = {
  8491. "id": str + _formdiv.id,
  8492. "style": {
  8493. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8494. },
  8495. "name": "思维导图",
  8496. "forms": _formdiv,
  8497. "click": function () {
  8498. U.MD.D.I.openApplication(str, obj, info);
  8499. }
  8500. }
  8501. break;
  8502. case "doc":
  8503. aTool = 6;
  8504. _iframe = $$("iframe", {
  8505. "frameborder": "no",
  8506. "border": "0",
  8507. "scrolling ": "no",
  8508. "style": {
  8509. "cssText": "border:0;width:100%;height:100%"
  8510. },
  8511. "src": "/Office/Word/WordEditArea.htm"
  8512. })
  8513. _box.appendChild(_iframe);
  8514. _box.appendChild(_jie);
  8515. _formdiv = new U.UF.UI.form(
  8516. "协同文档-" + _username,
  8517. _box, {
  8518. "id": "doc" + cid + stage + task + tool + _userid,
  8519. "style": {
  8520. "width": "90%",
  8521. "height": "90%",
  8522. "overflow": 'hidden'
  8523. },
  8524. "onresize": function () { }
  8525. }, {
  8526. closecallback: function () { }
  8527. }, {
  8528. "style": {
  8529. "height": "36px"
  8530. }
  8531. }).form; //创建窗体
  8532. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8533. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8534. })
  8535. _taskbar = {
  8536. "id": str + _formdiv.id,
  8537. "style": {
  8538. "backgroundImage": "url(/img/icon/doc.png)"
  8539. },
  8540. "name": "协同文档",
  8541. "forms": _formdiv,
  8542. "click": function () {
  8543. U.MD.D.I.openApplication(str, obj, info);
  8544. }
  8545. }
  8546. break;
  8547. case "mindNetwork": //好友打开
  8548. aTool = 7;
  8549. _iframe = $$("iframe", {
  8550. "webkitallowfullscreen": "",
  8551. "mozallowfullscreen": "",
  8552. "allowfullscreen": "",
  8553. "frameborder": "no",
  8554. "border": "0",
  8555. "scrolling ": "no",
  8556. "style": {
  8557. "cssText": "border:0; width:100%; height:100%;"
  8558. },
  8559. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8560. })
  8561. _box.appendChild(_iframe);
  8562. _box.appendChild(_jie);
  8563. _formdiv = new U.UF.UI.form(
  8564. "思维网格-" + _username,
  8565. _box, {
  8566. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8567. "style": {
  8568. "width": "90%",
  8569. "height": "90%",
  8570. "overflow": 'hidden'
  8571. },
  8572. "onresize": function () { }
  8573. }, {
  8574. closecallback: function () { }
  8575. }, {
  8576. "style": {
  8577. "height": "36px"
  8578. }
  8579. }).form; //创建窗体
  8580. _taskbar = {
  8581. "id": str + _formdiv.id,
  8582. "style": {
  8583. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8584. },
  8585. "name": "思维网格",
  8586. "forms": _formdiv,
  8587. "click": function () {
  8588. U.MD.D.I.openApplication(str, obj, info);
  8589. }
  8590. }
  8591. break;
  8592. case "courseDesign":
  8593. _iframe = $$("iframe", {
  8594. "webkitallowfullscreen": "",
  8595. "mozallowfullscreen": "",
  8596. "allowfullscreen": "",
  8597. "frameborder": "no",
  8598. "border": "0",
  8599. "scrolling ": "no",
  8600. "style": {
  8601. "cssText": "border:0; width:100%; height:100%;"
  8602. },
  8603. "src": "/course-design-vue"
  8604. })
  8605. _box.appendChild(_iframe);
  8606. _box.appendChild(_jie);
  8607. _formdiv = new U.UF.UI.form(
  8608. "项目设计-" + _username,
  8609. _box, {
  8610. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8611. "style": {
  8612. "width": "90%",
  8613. "height": "90%",
  8614. "overflow": 'hidden'
  8615. },
  8616. "onresize": function () { }
  8617. }, {
  8618. closecallback: function () { }
  8619. }, {
  8620. "style": {
  8621. "height": "36px"
  8622. }
  8623. }).form; //创建窗体
  8624. _taskbar = {
  8625. "id": str + _formdiv.id,
  8626. "style": {
  8627. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8628. },
  8629. "name": "项目设计",
  8630. "forms": _formdiv,
  8631. "click": function () {
  8632. U.MD.D.I.openApplication(str, obj, info);
  8633. }
  8634. }
  8635. break;
  8636. }
  8637. const script1 = document.createElement("script");
  8638. script1.type = "text/javascript";
  8639. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8640. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8641. const script2 = document.createElement("script");
  8642. script2.type = "text/javascript";
  8643. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8644. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8645. const script3 = document.createElement("script");
  8646. script3.type = "text/javascript";
  8647. script3.charset = "UTF-8";
  8648. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8649. const script4 = document.createElement("script");
  8650. script4.type = "text/javascript";
  8651. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8652. script4.src = window.origin + "/js/Common/jietu2E.js";
  8653. if (_iframe) {
  8654. if (str == 'doc') {
  8655. _iframe = _formdiv.querySelector('iframe')
  8656. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8657. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8658. _iframe.contentWindow.document.body.appendChild(script1);
  8659. _iframe.contentWindow.document.body.appendChild(script2);
  8660. // _iframe.contentWindow.document.body.appendChild(script3);
  8661. _iframe.contentWindow.document.body.appendChild(script4);
  8662. })
  8663. if (onloadListener) {
  8664. _iframe.contentDocument.location.reload()
  8665. } else {
  8666. _iframe.contentDocument.location.reload()
  8667. }
  8668. } else if (str == 'courseDesign') {
  8669. U.UF.DL.iframeLoad(_iframe, function () {
  8670. // _iframe.contentWindow.U.MD.O.W.load();
  8671. // _iframe.contentWindow.document.body.appendChild(script1);
  8672. _iframe.contentWindow.document.body.appendChild(script2);
  8673. _iframe.contentWindow.document.body.appendChild(script4);
  8674. })
  8675. } else if (str == 'mind') {
  8676. _iframe = _formdiv.querySelector('iframe')
  8677. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8678. //
  8679. _iframe.contentWindow.document.body.appendChild(script1);
  8680. _iframe.contentWindow.document.body.appendChild(script2);
  8681. _iframe.contentWindow.document.body.appendChild(script4);
  8682. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8683. })
  8684. if (onloadListener) {
  8685. _iframe.contentDocument.location.reload()
  8686. } else {
  8687. _iframe.contentDocument.location.reload()
  8688. }
  8689. } else if (str == 'whiteboard') {
  8690. _iframe = _formdiv.querySelector('iframe')
  8691. let onloadListener = _iframe.onload = () => {
  8692. _iframe.contentWindow.document.body.appendChild(script1);
  8693. _iframe.contentWindow.document.body.appendChild(script2);
  8694. _iframe.contentWindow.document.body.appendChild(script4);
  8695. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8696. };
  8697. // if (onloadListener) {
  8698. // try {
  8699. // _iframe.src += "?cocorobo="+new Date().getTime()
  8700. // _iframe.contentWindow.document.location.reload()
  8701. // } catch (error) {
  8702. // }
  8703. // } else {
  8704. // _iframe.contentDocument.location.reload()
  8705. // }
  8706. } else {
  8707. _iframe.onload = () => {
  8708. _iframe.contentWindow.document.body.appendChild(script1);
  8709. _iframe.contentWindow.document.body.appendChild(script2);
  8710. // _iframe.contentWindow.document.body.appendChild(script3);
  8711. _iframe.contentWindow.document.body.appendChild(script4);
  8712. };
  8713. }
  8714. _jie.onclick = async () => {
  8715. let text = ''
  8716. if (aTool == 1) {
  8717. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8718. } else if (aTool == 6) {
  8719. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8720. } else if (aTool == 3) {
  8721. text = await U.MD.D.I.getEditorContent(_iframe);
  8722. }
  8723. _loading.style.display = 'flex'
  8724. console.log(_loading);
  8725. var _ajs = _iframe.contentWindow.document.createElement("script");
  8726. _ajs.type = "text/javascript";
  8727. _ajs.innerHTML =
  8728. // 'console.log(' + _loading + ');\n' +
  8729. 'var _js = document.createElement("script");\n' +
  8730. '_js.type="text/javascript";\n' +
  8731. '_js.charset="UTF-8";\n' +
  8732. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8733. "_js.onload = function(){\n" +
  8734. ' var a = document.getElementsByTagName("img")\n' +
  8735. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8736. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8737. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8738. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8739. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8740. "beforeUpload_shishi(file," +
  8741. "'" +
  8742. _userid +
  8743. "'" +
  8744. ", " +
  8745. "'" +
  8746. _cid +
  8747. "'" +
  8748. ", " +
  8749. "'" +
  8750. _stage +
  8751. "'" +
  8752. ", " +
  8753. "'" +
  8754. _task +
  8755. "'" +
  8756. ", " +
  8757. "'" +
  8758. _tool +
  8759. "'" +
  8760. ", " +
  8761. "'" +
  8762. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  8763. "'" +
  8764. ", " +
  8765. "'" +
  8766. aTool +
  8767. "'" +
  8768. ", " +
  8769. "`" +
  8770. text +
  8771. "`" +
  8772. ")\n" +
  8773. " });\n" +
  8774. "}\n" +
  8775. "document.head.appendChild(_js);\n";
  8776. _iframe.contentWindow.document.head.appendChild(_ajs);
  8777. }
  8778. }
  8779. }
  8780. U.MD.D.I.getEditorContent = function (iframe) {
  8781. return new Promise((resolve, reject) => {
  8782. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  8783. console.log(content);
  8784. resolve(content)
  8785. });
  8786. });
  8787. }
  8788. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  8789. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  8790. // if (res.value[0].length > 0) {
  8791. // // resolve(res.value[0][0].text);
  8792. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  8793. // $(fileInput).val('');
  8794. // });
  8795. // }
  8796. // }, [], { "type": "GET", "withCredentials": true });
  8797. var xmlhttp;
  8798. var Mac, Sn, DeviceId
  8799. if (window.XMLHttpRequest) {
  8800. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8801. xmlhttp = new XMLHttpRequest();
  8802. } else {
  8803. // IE6, IE5 浏览器执行代码
  8804. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8805. }
  8806. xmlhttp.onreadystatechange = function () {
  8807. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8808. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8809. // resolve(res.value[0][0].text);
  8810. if (type == '2') {
  8811. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8812. } else if (type == '3') {
  8813. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8814. }
  8815. } else {
  8816. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  8817. }
  8818. }
  8819. }
  8820. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8821. xmlhttp.send();
  8822. }
  8823. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  8824. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8825. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8826. _userinfo = US.userInfo, //登录用户信息
  8827. _userid = US.userInfo.userid //登录用户id
  8828. let _iframe;
  8829. let _cid = cid,
  8830. _stage = stage,
  8831. _task = task,
  8832. _tool = tool;
  8833. var _jie = $$("div", {
  8834. "style": {
  8835. "position": "absolute",
  8836. "bottom": "50px",
  8837. "right": "50px",
  8838. "zIndex": "9999",
  8839. "backgroundColor": "#2268bc",
  8840. "color": "#fff",
  8841. "padding": "12px 20px",
  8842. "cursor": "pointer",
  8843. "borderRadius": "4px",
  8844. },
  8845. "innerHTML": "确认并提交"
  8846. })
  8847. let aTool = ''
  8848. let _loading = document.createElement('div')
  8849. _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;"
  8850. // _loading.id = "";
  8851. let _lchild = document.createElement('div')
  8852. let _limg = document.createElement('img')
  8853. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8854. _limg.style = "width: 26px;margin-right: 10px;"
  8855. _lchild.appendChild(_limg)
  8856. let _lspan = document.createElement('span')
  8857. _lspan.innerHTML = "上传中..."
  8858. _lchild.appendChild(_lspan)
  8859. _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%);"
  8860. _loading.appendChild(_lchild)
  8861. var _box = $$('div', {
  8862. "style": {
  8863. "position": "relative",
  8864. "width": "100%",
  8865. "height": "100%",
  8866. },
  8867. })
  8868. _box.appendChild(_loading)
  8869. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  8870. switch (str) {
  8871. case "whiteboard":
  8872. aTool = 1;
  8873. _iframe = $$("iframe", {
  8874. "frameborder": "no",
  8875. "border": "0",
  8876. "scrolling ": "no",
  8877. "style": {
  8878. "cssText": "border:0;width:100%;height:100%"
  8879. },
  8880. "src": "https://beta.iwb.cocorobo.cn/"
  8881. })
  8882. _box.appendChild(_iframe);
  8883. _box.appendChild(_jie);
  8884. _formdiv = new U.UF.UI.form(
  8885. "电子白板",
  8886. _box, {
  8887. "id": "whiteboards" + cid + stage + task + tool,
  8888. "style": {
  8889. "width": "90%",
  8890. "height": "90%",
  8891. "overflow": 'hidden'
  8892. },
  8893. "onresize": function () { }
  8894. }, {
  8895. closecallback: function () { }
  8896. }, {
  8897. "style": {
  8898. "height": "36px"
  8899. }
  8900. }).form; //创建窗体
  8901. _taskbar = {
  8902. "id": str + _formdiv.id,
  8903. "style": {
  8904. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8905. },
  8906. "name": "电子白板",
  8907. "forms": _formdiv,
  8908. "click": function () {
  8909. U.MD.D.I.openApplication(str, obj, info);
  8910. }
  8911. }
  8912. break;
  8913. case "mind":
  8914. aTool = 3;
  8915. _iframe = $$("iframe", {
  8916. "frameborder": "no",
  8917. "border": "0",
  8918. "scrolling ": "no",
  8919. "style": {
  8920. "cssText": "border:0;width:100%;height:100%"
  8921. },
  8922. "src": "/kityminder-editor/dist/index.html"
  8923. });
  8924. _box.appendChild(_iframe);
  8925. _box.appendChild(_jie);
  8926. _formdiv = new U.UF.UI.form(
  8927. "思维导图",
  8928. _box, { //"/jsmind/example/demo.html"
  8929. "id": "minds" + cid + stage + task + tool,
  8930. "style": {
  8931. "width": "90%",
  8932. "height": "90%",
  8933. "overflow": 'hidden'
  8934. },
  8935. "onresize": function () { }
  8936. }, {
  8937. closecallback: function () { }
  8938. }, {
  8939. "style": {
  8940. "height": "36px"
  8941. }
  8942. }).form; //创建窗体
  8943. _taskbar = {
  8944. "id": str + _formdiv.id,
  8945. "style": {
  8946. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8947. },
  8948. "name": "思维导图",
  8949. "forms": _formdiv,
  8950. "click": function () {
  8951. U.MD.D.I.openApplication(str, obj, info);
  8952. }
  8953. }
  8954. break;
  8955. case "doc":
  8956. aTool = 6;
  8957. _iframe = $$("iframe", {
  8958. "frameborder": "no",
  8959. "border": "0",
  8960. "scrolling ": "no",
  8961. "style": {
  8962. "cssText": "border:0;width:100%;height:100%"
  8963. },
  8964. "src": "/Office/Word/WordEditArea.htm"
  8965. })
  8966. _box.appendChild(_iframe);
  8967. _box.appendChild(_jie);
  8968. _formdiv = new U.UF.UI.form(
  8969. "协同文档",
  8970. _box, {
  8971. "id": "docs" + cid + stage + task + tool,
  8972. "style": {
  8973. "width": "90%",
  8974. "height": "90%",
  8975. "overflow": 'hidden'
  8976. },
  8977. "onresize": function () { }
  8978. }, {
  8979. closecallback: function () { }
  8980. }, {
  8981. "style": {
  8982. "height": "36px"
  8983. }
  8984. }).form; //创建窗体
  8985. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8986. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8987. })
  8988. _taskbar = {
  8989. "id": str + _formdiv.id,
  8990. "style": {
  8991. "backgroundImage": "url(/img/icon/doc.png)"
  8992. },
  8993. "name": "协同文档",
  8994. "forms": _formdiv,
  8995. "click": function () {
  8996. U.MD.D.I.openApplication(str, obj, info);
  8997. }
  8998. }
  8999. break;
  9000. }
  9001. const script1 = document.createElement("script");
  9002. script1.type = "text/javascript";
  9003. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9004. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9005. const script2 = document.createElement("script");
  9006. script2.type = "text/javascript";
  9007. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9008. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9009. const script3 = document.createElement("script");
  9010. script3.type = "text/javascript";
  9011. script3.charset = "UTF-8";
  9012. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9013. const script4 = document.createElement("script");
  9014. script4.type = "text/javascript";
  9015. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9016. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9017. if (_iframe) {
  9018. if (str == 'doc') {
  9019. _iframe = _formdiv.querySelector('iframe')
  9020. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9021. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9022. _iframe.contentWindow.document.body.appendChild(script1);
  9023. _iframe.contentWindow.document.body.appendChild(script2);
  9024. // _iframe.contentWindow.document.body.appendChild(script3);
  9025. _iframe.contentWindow.document.body.appendChild(script4);
  9026. })
  9027. if (onloadListener) {
  9028. _iframe.contentDocument.location.reload()
  9029. } else {
  9030. _iframe.contentDocument.location.reload()
  9031. }
  9032. } else if (str == 'mind') {
  9033. _iframe = _formdiv.querySelector('iframe')
  9034. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9035. _iframe.contentWindow.document.body.appendChild(script1);
  9036. _iframe.contentWindow.document.body.appendChild(script2);
  9037. _iframe.contentWindow.document.body.appendChild(script4);
  9038. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9039. })
  9040. if (onloadListener) {
  9041. _iframe.contentDocument.location.reload()
  9042. } else {
  9043. _iframe.contentDocument.location.reload()
  9044. }
  9045. } else {
  9046. _iframe.onload = () => {
  9047. _iframe.contentWindow.document.body.appendChild(script1);
  9048. _iframe.contentWindow.document.body.appendChild(script2);
  9049. // _iframe.contentWindow.document.body.appendChild(script3);
  9050. _iframe.contentWindow.document.body.appendChild(script4);
  9051. };
  9052. }
  9053. _jie.onclick = async () => {
  9054. let text = ''
  9055. if (aTool == 6) {
  9056. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9057. } else if (aTool == 3) {
  9058. text = await U.MD.D.I.getEditorContent(_iframe);
  9059. }
  9060. _loading.style.display = 'flex'
  9061. console.log(_loading);
  9062. var _ajs = _iframe.contentWindow.document.createElement("script");
  9063. _ajs.type = "text/javascript";
  9064. _ajs.innerHTML =
  9065. // 'console.log(' + _loading + ');\n' +
  9066. 'var _js = document.createElement("script");\n' +
  9067. '_js.type="text/javascript";\n' +
  9068. '_js.charset="UTF-8";\n' +
  9069. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9070. "_js.onload = function(){\n" +
  9071. ' var a = document.getElementsByTagName("img")\n' +
  9072. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9073. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9074. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9075. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9076. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9077. "beforeUpload_shishi(file," +
  9078. "'" +
  9079. _userid +
  9080. "'" +
  9081. ", " +
  9082. "'" +
  9083. _cid +
  9084. "'" +
  9085. ", " +
  9086. "'" +
  9087. _stage +
  9088. "'" +
  9089. ", " +
  9090. "'" +
  9091. _task +
  9092. "'" +
  9093. ", " +
  9094. "'" +
  9095. _tool +
  9096. "'" +
  9097. ", " +
  9098. "'" +
  9099. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9100. "'" +
  9101. ", " +
  9102. "'" +
  9103. aTool +
  9104. "'" +
  9105. ", " +
  9106. "`" +
  9107. text +
  9108. "`" +
  9109. ")\n" +
  9110. " });\n" +
  9111. "}\n" +
  9112. "document.head.appendChild(_js);\n";
  9113. _iframe.contentWindow.document.head.appendChild(_ajs);
  9114. }
  9115. }
  9116. //U.MD.D.I.openClick(str);
  9117. //如果有任务栏信息
  9118. // if (_taskbar) {
  9119. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9120. // }
  9121. }
  9122. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9123. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9124. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9125. _userinfo = US.userInfo, //登录用户信息
  9126. _userid = US.userInfo.userid //登录用户id
  9127. let _iframe;
  9128. let _cid = cid,
  9129. _stage = stage,
  9130. _task = task,
  9131. _tool = tool;
  9132. var _jie = $$("div", {
  9133. "style": {
  9134. "position": "absolute",
  9135. "bottom": "50px",
  9136. "right": "50px",
  9137. "zIndex": "9999",
  9138. "backgroundColor": "#2268bc",
  9139. "color": "#fff",
  9140. "padding": "12px 20px",
  9141. "cursor": "pointer",
  9142. "borderRadius": "4px",
  9143. },
  9144. "innerHTML": "确认并提交"
  9145. })
  9146. let aTool = ''
  9147. let _loading = document.createElement('div')
  9148. _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;"
  9149. // _loading.id = "";
  9150. let _lchild = document.createElement('div')
  9151. let _limg = document.createElement('img')
  9152. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9153. _limg.style = "width: 26px;margin-right: 10px;"
  9154. _lchild.appendChild(_limg)
  9155. let _lspan = document.createElement('span')
  9156. _lspan.innerHTML = "上传中..."
  9157. _lchild.appendChild(_lspan)
  9158. _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%);"
  9159. _loading.appendChild(_lchild)
  9160. var _box = $$('div', {
  9161. "style": {
  9162. "position": "relative",
  9163. "width": "100%",
  9164. "height": "100%",
  9165. },
  9166. })
  9167. _box.appendChild(_loading)
  9168. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9169. switch (str) {
  9170. case "whiteboard":
  9171. aTool = 1;
  9172. _iframe = $$("iframe", {
  9173. "frameborder": "no",
  9174. "border": "0",
  9175. "scrolling ": "no",
  9176. "style": {
  9177. "cssText": "border:0;width:100%;height:100%"
  9178. },
  9179. "src": "https://beta.iwb.cocorobo.cn/"
  9180. })
  9181. _box.appendChild(_iframe);
  9182. _box.appendChild(_jie);
  9183. _formdiv = new U.UF.UI.form(
  9184. "电子白板",
  9185. _box, {
  9186. "id": "whiteboards" + cid + stage + task + tool,
  9187. "style": {
  9188. "width": "90%",
  9189. "height": "90%",
  9190. "overflow": 'hidden'
  9191. },
  9192. "onresize": function () { }
  9193. }, {
  9194. closecallback: function () { }
  9195. }, {
  9196. "style": {
  9197. "height": "36px"
  9198. }
  9199. }).form; //创建窗体
  9200. _taskbar = {
  9201. "id": str + _formdiv.id,
  9202. "style": {
  9203. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9204. },
  9205. "name": "电子白板",
  9206. "forms": _formdiv,
  9207. "click": function () {
  9208. U.MD.D.I.openApplication(str, obj, info);
  9209. }
  9210. }
  9211. break;
  9212. case "mind":
  9213. aTool = 3;
  9214. _iframe = $$("iframe", {
  9215. "frameborder": "no",
  9216. "border": "0",
  9217. "scrolling ": "no",
  9218. "style": {
  9219. "cssText": "border:0;width:100%;height:100%"
  9220. },
  9221. "src": "/kityminder-editor/dist/index.html"
  9222. });
  9223. _box.appendChild(_iframe);
  9224. _box.appendChild(_jie);
  9225. _formdiv = new U.UF.UI.form(
  9226. "思维导图",
  9227. _box, { //"/jsmind/example/demo.html"
  9228. "id": "minds" + cid + stage + task + tool,
  9229. "style": {
  9230. "width": "90%",
  9231. "height": "90%",
  9232. "overflow": 'hidden'
  9233. },
  9234. "onresize": function () { }
  9235. }, {
  9236. closecallback: function () { }
  9237. }, {
  9238. "style": {
  9239. "height": "36px"
  9240. }
  9241. }).form; //创建窗体
  9242. _taskbar = {
  9243. "id": str + _formdiv.id,
  9244. "style": {
  9245. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9246. },
  9247. "name": "思维导图",
  9248. "forms": _formdiv,
  9249. "click": function () {
  9250. U.MD.D.I.openApplication(str, obj, info);
  9251. }
  9252. }
  9253. break;
  9254. case "doc":
  9255. aTool = 6;
  9256. _iframe = $$("iframe", {
  9257. "frameborder": "no",
  9258. "border": "0",
  9259. "scrolling ": "no",
  9260. "style": {
  9261. "cssText": "border:0;width:100%;height:100%"
  9262. },
  9263. "src": "/Office/Word/WordEditArea.htm"
  9264. })
  9265. _box.appendChild(_iframe);
  9266. _box.appendChild(_jie);
  9267. _formdiv = new U.UF.UI.form(
  9268. "协同文档",
  9269. _box, {
  9270. "id": "docs" + cid + stage + task + tool,
  9271. "style": {
  9272. "width": "90%",
  9273. "height": "90%",
  9274. "overflow": 'hidden'
  9275. },
  9276. "onresize": function () { }
  9277. }, {
  9278. closecallback: function () { }
  9279. }, {
  9280. "style": {
  9281. "height": "36px"
  9282. }
  9283. }).form; //创建窗体
  9284. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9285. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9286. })
  9287. _taskbar = {
  9288. "id": str + _formdiv.id,
  9289. "style": {
  9290. "backgroundImage": "url(/img/icon/doc.png)"
  9291. },
  9292. "name": "协同文档",
  9293. "forms": _formdiv,
  9294. "click": function () {
  9295. U.MD.D.I.openApplication(str, obj, info);
  9296. }
  9297. }
  9298. break;
  9299. }
  9300. const script1 = document.createElement("script");
  9301. script1.type = "text/javascript";
  9302. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9303. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9304. const script2 = document.createElement("script");
  9305. script2.type = "text/javascript";
  9306. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9307. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9308. const script3 = document.createElement("script");
  9309. script3.type = "text/javascript";
  9310. script3.charset = "UTF-8";
  9311. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9312. const script4 = document.createElement("script");
  9313. script4.type = "text/javascript";
  9314. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9315. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9316. if (_iframe) {
  9317. if (str == 'doc') {
  9318. _iframe = _formdiv.querySelector('iframe')
  9319. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9320. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9321. _iframe.contentWindow.document.body.appendChild(script1);
  9322. _iframe.contentWindow.document.body.appendChild(script2);
  9323. // _iframe.contentWindow.document.body.appendChild(script3);
  9324. _iframe.contentWindow.document.body.appendChild(script4);
  9325. })
  9326. if (onloadListener) {
  9327. _iframe.contentDocument.location.reload()
  9328. } else {
  9329. _iframe.contentDocument.location.reload()
  9330. }
  9331. } else if (str == 'mind') {
  9332. _iframe = _formdiv.querySelector('iframe')
  9333. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9334. _iframe.contentWindow.document.body.appendChild(script1);
  9335. _iframe.contentWindow.document.body.appendChild(script2);
  9336. _iframe.contentWindow.document.body.appendChild(script4);
  9337. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9338. })
  9339. if (onloadListener) {
  9340. _iframe.contentDocument.location.reload()
  9341. } else {
  9342. _iframe.contentDocument.location.reload()
  9343. }
  9344. } else {
  9345. _iframe.onload = () => {
  9346. _iframe.contentWindow.document.body.appendChild(script1);
  9347. _iframe.contentWindow.document.body.appendChild(script2);
  9348. // _iframe.contentWindow.document.body.appendChild(script3);
  9349. _iframe.contentWindow.document.body.appendChild(script4);
  9350. };
  9351. }
  9352. _jie.onclick = async () => {
  9353. let text = ''
  9354. if (aTool == 6) {
  9355. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9356. } else if (aTool == 3) {
  9357. text = await U.MD.D.I.getEditorContent(_iframe);
  9358. }
  9359. _loading.style.display = 'flex'
  9360. console.log(_loading);
  9361. var _ajs = _iframe.contentWindow.document.createElement("script");
  9362. _ajs.type = "text/javascript";
  9363. _ajs.innerHTML =
  9364. // 'console.log(' + _loading + ');\n' +
  9365. 'var _js = document.createElement("script");\n' +
  9366. '_js.type="text/javascript";\n' +
  9367. '_js.charset="UTF-8";\n' +
  9368. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9369. "_js.onload = function(){\n" +
  9370. ' var a = document.getElementsByTagName("img")\n' +
  9371. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9372. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9373. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9374. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9375. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9376. "beforeUpload_shishi(file," +
  9377. "'" +
  9378. _userid +
  9379. "'" +
  9380. ", " +
  9381. "'" +
  9382. _cid +
  9383. "'" +
  9384. ", " +
  9385. "'" +
  9386. _stage +
  9387. "'" +
  9388. ", " +
  9389. "'" +
  9390. _task +
  9391. "'" +
  9392. ", " +
  9393. "'" +
  9394. _tool +
  9395. "'" +
  9396. ", " +
  9397. "'" +
  9398. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9399. "'" +
  9400. ", " +
  9401. "'" +
  9402. aTool +
  9403. "'" +
  9404. ", " +
  9405. "`" +
  9406. text +
  9407. "`" +
  9408. ")\n" +
  9409. " });\n" +
  9410. "}\n" +
  9411. "document.head.appendChild(_js);\n";
  9412. _iframe.contentWindow.document.head.appendChild(_ajs);
  9413. }
  9414. }
  9415. //U.MD.D.I.openClick(str);
  9416. //如果有任务栏信息
  9417. // if (_taskbar) {
  9418. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9419. // }
  9420. }
  9421. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9422. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9423. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9424. _userinfo = US.userInfo, //登录用户信息
  9425. _userid = US.userInfo.userid //登录用户id
  9426. let _iframe;
  9427. let _cid = cid,
  9428. _stage = stage,
  9429. _task = task,
  9430. _tool = tool;
  9431. var _jie = $$("div", {
  9432. "style": {
  9433. "position": "absolute",
  9434. "bottom": "50px",
  9435. "right": "50px",
  9436. "zIndex": "9999",
  9437. "backgroundColor": "#2268bc",
  9438. "color": "#fff",
  9439. "padding": "12px 20px",
  9440. "cursor": "pointer",
  9441. "borderRadius": "4px",
  9442. },
  9443. "innerHTML": "上传模板"
  9444. })
  9445. let aTool = ''
  9446. let _loading = document.createElement('div')
  9447. _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;"
  9448. // _loading.id = "";
  9449. let _lchild = document.createElement('div')
  9450. let _limg = document.createElement('img')
  9451. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9452. _limg.style = "width: 26px;margin-right: 10px;"
  9453. _lchild.appendChild(_limg)
  9454. let _lspan = document.createElement('span')
  9455. _lspan.innerHTML = "上传中..."
  9456. _lchild.appendChild(_lspan)
  9457. _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%);"
  9458. _loading.appendChild(_lchild)
  9459. var _box = $$('div', {
  9460. "style": {
  9461. "position": "relative",
  9462. "width": "100%",
  9463. "height": "100%",
  9464. },
  9465. })
  9466. _box.appendChild(_loading)
  9467. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9468. switch (str) {
  9469. case "whiteboard":
  9470. aTool = 1;
  9471. _iframe = $$("iframe", {
  9472. "frameborder": "no",
  9473. "border": "0",
  9474. "scrolling ": "no",
  9475. "style": {
  9476. "cssText": "border:0;width:100%;height:100%"
  9477. },
  9478. "src": "https://beta.iwb.cocorobo.cn/"
  9479. })
  9480. _box.appendChild(_iframe);
  9481. _box.appendChild(_jie);
  9482. _formdiv = new U.UF.UI.form(
  9483. "电子白板",
  9484. _box, {
  9485. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9486. "style": {
  9487. "width": "90%",
  9488. "height": "90%",
  9489. "overflow": 'hidden'
  9490. },
  9491. "onresize": function () { }
  9492. }, {
  9493. closecallback: function () { }
  9494. }, {
  9495. "style": {
  9496. "height": "36px"
  9497. }
  9498. }).form; //创建窗体
  9499. _taskbar = {
  9500. "id": str + _formdiv.id,
  9501. "style": {
  9502. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9503. },
  9504. "name": "电子白板",
  9505. "forms": _formdiv,
  9506. "click": function () {
  9507. U.MD.D.I.openApplication(str, obj, info);
  9508. }
  9509. }
  9510. break;
  9511. case "mind":
  9512. aTool = 3;
  9513. _iframe = $$("iframe", {
  9514. "frameborder": "no",
  9515. "border": "0",
  9516. "scrolling ": "no",
  9517. "style": {
  9518. "cssText": "border:0;width:100%;height:100%"
  9519. },
  9520. "src": "/kityminder-editor/dist/index.html"
  9521. });
  9522. _box.appendChild(_iframe);
  9523. _box.appendChild(_jie);
  9524. _formdiv = new U.UF.UI.form(
  9525. "思维导图",
  9526. _box, { //"/jsmind/example/demo.html"
  9527. "id": "minds_Yu" + cid + stage + task + tool,
  9528. "style": {
  9529. "width": "90%",
  9530. "height": "90%",
  9531. "overflow": 'hidden'
  9532. },
  9533. "onresize": function () { }
  9534. }, {
  9535. closecallback: function () { }
  9536. }, {
  9537. "style": {
  9538. "height": "36px"
  9539. }
  9540. }).form; //创建窗体
  9541. _taskbar = {
  9542. "id": str + _formdiv.id,
  9543. "style": {
  9544. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9545. },
  9546. "name": "思维导图",
  9547. "forms": _formdiv,
  9548. "click": function () {
  9549. U.MD.D.I.openApplication(str, obj, info);
  9550. }
  9551. }
  9552. break;
  9553. case "doc":
  9554. aTool = 6;
  9555. _iframe = $$("iframe", {
  9556. "frameborder": "no",
  9557. "border": "0",
  9558. "scrolling ": "no",
  9559. "style": {
  9560. "cssText": "border:0;width:100%;height:100%"
  9561. },
  9562. "src": "/Office/Word/WordEditArea.htm"
  9563. })
  9564. _box.appendChild(_iframe);
  9565. _box.appendChild(_jie);
  9566. _formdiv = new U.UF.UI.form(
  9567. "协同文档",
  9568. _box, {
  9569. "id": "docs_Yu" + cid + stage + task + tool,
  9570. "style": {
  9571. "width": "90%",
  9572. "height": "90%",
  9573. "overflow": 'hidden'
  9574. },
  9575. "onresize": function () { }
  9576. }, {
  9577. closecallback: function () { }
  9578. }, {
  9579. "style": {
  9580. "height": "36px"
  9581. }
  9582. }).form; //创建窗体
  9583. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9584. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9585. })
  9586. _taskbar = {
  9587. "id": str + _formdiv.id,
  9588. "style": {
  9589. "backgroundImage": "url(/img/icon/doc.png)"
  9590. },
  9591. "name": "协同文档",
  9592. "forms": _formdiv,
  9593. "click": function () {
  9594. U.MD.D.I.openApplication(str, obj, info);
  9595. }
  9596. }
  9597. break;
  9598. case "CocoPi":
  9599. aTool = 57;
  9600. _iframe = $$("iframe", {
  9601. "allowpaymentrequest": "allowpaymentrequest",
  9602. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9603. "webkitallowfullscreen": "",
  9604. "mozallowfullscreen": "",
  9605. "frameborder": "no",
  9606. "border": "0",
  9607. "scrolling ": "no",
  9608. "style": {
  9609. "cssText": "border:0;width:100%;height:100%"
  9610. },
  9611. "src": "https://pi.cocorobo.cn/"
  9612. })
  9613. _box.appendChild(_iframe);
  9614. _box.appendChild(_jie);
  9615. _formdiv = new U.UF.UI.form(
  9616. "CocoPi",
  9617. _box, {
  9618. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9619. "style": {
  9620. "width": "90%",
  9621. "height": "90%",
  9622. "overflow": 'hidden'
  9623. },
  9624. "onresize": function () { }
  9625. }, {
  9626. closecallback: function () { }
  9627. }, {
  9628. "style": {
  9629. "height": "36px"
  9630. }
  9631. }).form; //创建窗体
  9632. _taskbar = {
  9633. "id": str + _formdiv.id,
  9634. "style": {
  9635. "backgroundImage": "url(/img/icon/cocopi.png)"
  9636. },
  9637. "name": "CocoPi",
  9638. "forms": _formdiv,
  9639. "click": function () {
  9640. U.MD.D.I.openApplication(str, obj, info);
  9641. }
  9642. }
  9643. break;
  9644. }
  9645. if (_iframe) {
  9646. if (str == 'doc') {
  9647. _iframe = _formdiv.querySelector('iframe')
  9648. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9649. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9650. })
  9651. if (onloadListener) {
  9652. _iframe.contentDocument.location.reload()
  9653. } else {
  9654. _iframe.contentDocument.location.reload()
  9655. }
  9656. } else if (str == 'mind') {
  9657. _iframe = _formdiv.querySelector('iframe')
  9658. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9659. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9660. })
  9661. if (onloadListener) {
  9662. _iframe.contentDocument.location.reload()
  9663. } else {
  9664. _iframe.contentDocument.location.reload()
  9665. }
  9666. } else if (str == 'whiteboard') {
  9667. _iframe = _formdiv.querySelector('iframe')
  9668. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9669. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9670. })
  9671. // if (onloadListener) {
  9672. // try {
  9673. // _iframe.src += "?cocorobo="+new Date().getTime()
  9674. // _iframe.contentWindow.document.location.reload()
  9675. // } catch (error) {
  9676. // }
  9677. // } else {
  9678. // _iframe.contentDocument.location.reload()
  9679. // }
  9680. } else if (str == 'CocoPi') {
  9681. _iframe = _formdiv.querySelector('iframe')
  9682. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9683. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9684. })
  9685. if (onloadListener) {
  9686. _iframe.contentDocument.location.reload()
  9687. } else {
  9688. _iframe.contentDocument.location.reload()
  9689. }
  9690. } else {
  9691. _iframe.onload = () => { };
  9692. }
  9693. _jie.onclick = async () => {
  9694. let text = ''
  9695. let type = '2'
  9696. if (aTool == 1) {
  9697. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9698. type = '3'
  9699. } else if (aTool == 6) {
  9700. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9701. type = '1'
  9702. } else if (aTool == 3) {
  9703. text = await U.MD.D.I.getEditorContent(_iframe);
  9704. type = '2'
  9705. } else if (aTool == 57) {
  9706. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9707. type = '4'
  9708. }
  9709. _loading.style.display = 'flex'
  9710. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9711. }
  9712. }
  9713. //U.MD.D.I.openClick(str);
  9714. //如果有任务栏信息
  9715. // if (_taskbar) {
  9716. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9717. // }
  9718. }
  9719. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9720. var xmlhttp;
  9721. var Mac, Sn, DeviceId
  9722. if (window.XMLHttpRequest) {
  9723. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9724. xmlhttp = new XMLHttpRequest();
  9725. } else {
  9726. // IE6, IE5 浏览器执行代码
  9727. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9728. }
  9729. xmlhttp.onreadystatechange = function () {
  9730. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9731. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9732. // resolve(res.value[0][0].text);
  9733. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9734. }
  9735. }
  9736. }
  9737. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9738. xmlhttp.send();
  9739. }
  9740. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  9741. var xmlhttp;
  9742. var Mac, Sn, DeviceId
  9743. if (window.XMLHttpRequest) {
  9744. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9745. xmlhttp = new XMLHttpRequest();
  9746. } else {
  9747. // IE6, IE5 浏览器执行代码
  9748. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9749. }
  9750. xmlhttp.onreadystatechange = function () {
  9751. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9752. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9753. // resolve(res.value[0][0].text);
  9754. if (type == '2') {
  9755. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9756. } else if (type == '3') {
  9757. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9758. } else if (type == '4') {
  9759. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  9760. }
  9761. } else {
  9762. if (type == '2') {
  9763. iframe.contentWindow.editor.minder.importData('json', '')
  9764. } else if (type == '3') {
  9765. iframe.contentWindow.h.app.updateScene({ elements: [] })
  9766. } else if (type == '4') {
  9767. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9768. }
  9769. }
  9770. }
  9771. }
  9772. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9773. xmlhttp.send();
  9774. }
  9775. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  9776. var xmlhttp;
  9777. var Mac, Sn, DeviceId
  9778. if (window.XMLHttpRequest) {
  9779. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9780. xmlhttp = new XMLHttpRequest();
  9781. } else {
  9782. // IE6, IE5 浏览器执行代码
  9783. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9784. }
  9785. xmlhttp.onreadystatechange = function () {
  9786. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9787. if (xmlhttp.response) {
  9788. // resolve(res.value[0][0].text);
  9789. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  9790. // $(fileInput).val('');
  9791. // });
  9792. span.innerHTML = '上传成功'
  9793. setTimeout(() => {
  9794. loading.style.display = 'none'
  9795. }, 1000);
  9796. }
  9797. }
  9798. }
  9799. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  9800. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  9801. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  9802. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  9803. // 设置请求头,表示请求体的编码格式
  9804. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  9805. // 设置请求体,使用url-encoded格式的数据
  9806. }
  9807. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  9808. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9809. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9810. _userinfo = US.userInfo, //登录用户信息
  9811. _userid = US.userInfo.userid //登录用户id
  9812. let _iframe;
  9813. let _cid = cid,
  9814. _stage = stage,
  9815. _task = task,
  9816. _tool = tool;
  9817. var _jie = $$("div", {
  9818. "style": {
  9819. "position": "absolute",
  9820. "bottom": "50px",
  9821. "right": "50px",
  9822. "zIndex": "9999",
  9823. "backgroundColor": "#2268bc",
  9824. "color": "#fff",
  9825. "padding": "12px 20px",
  9826. "cursor": "pointer",
  9827. "borderRadius": "4px",
  9828. },
  9829. "innerHTML": "提交作业"
  9830. })
  9831. let aTool = ''
  9832. let _loading = document.createElement('div')
  9833. _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;"
  9834. // _loading.id = "";
  9835. let _lchild = document.createElement('div')
  9836. let _limg = document.createElement('img')
  9837. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9838. _limg.style = "width: 26px;margin-right: 10px;"
  9839. _lchild.appendChild(_limg)
  9840. let _lspan = document.createElement('span')
  9841. _lspan.innerHTML = "上传中..."
  9842. _lchild.appendChild(_lspan)
  9843. _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%);"
  9844. _loading.appendChild(_lchild)
  9845. var _box = $$('div', {
  9846. "style": {
  9847. "position": "relative",
  9848. "width": "100%",
  9849. "height": "100%",
  9850. },
  9851. })
  9852. _box.appendChild(_loading)
  9853. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  9854. switch (str) {
  9855. case "CocoPi":
  9856. aTool = 57;
  9857. _iframe = $$("iframe", {
  9858. "allowpaymentrequest": "allowpaymentrequest",
  9859. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9860. "webkitallowfullscreen": "",
  9861. "mozallowfullscreen": "",
  9862. "frameborder": "no",
  9863. "border": "0",
  9864. "scrolling ": "no",
  9865. "style": {
  9866. "cssText": "border:0;width:100%;height:100%"
  9867. },
  9868. "src": "https://pi.cocorobo.cn/"
  9869. })
  9870. _box.appendChild(_iframe);
  9871. _box.appendChild(_jie);
  9872. _formdiv = new U.UF.UI.form(
  9873. "CocoPi",
  9874. _box, {
  9875. "id": "CocoPi_Upload" + cid + stage + task + tool,
  9876. "style": {
  9877. "width": "90%",
  9878. "height": "90%",
  9879. "overflow": 'hidden'
  9880. },
  9881. "onresize": function () { }
  9882. }, {
  9883. closecallback: function () { }
  9884. }, {
  9885. "style": {
  9886. "height": "36px"
  9887. }
  9888. }).form; //创建窗体
  9889. _taskbar = {
  9890. "id": str + _formdiv.id,
  9891. "style": {
  9892. "backgroundImage": "url(/img/icon/cocopi.png)"
  9893. },
  9894. "name": "CocoPi",
  9895. "forms": _formdiv,
  9896. "click": function () {
  9897. U.MD.D.I.openApplication(str, obj, info);
  9898. }
  9899. }
  9900. break;
  9901. }
  9902. if (_iframe) {
  9903. if (str == 'CocoPi') {
  9904. _iframe = _formdiv.querySelector('iframe')
  9905. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9906. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9907. })
  9908. if (onloadListener) {
  9909. _iframe.contentDocument.location.reload()
  9910. } else {
  9911. _iframe.contentDocument.location.reload()
  9912. }
  9913. }
  9914. _jie.onclick = async () => {
  9915. let text = ''
  9916. if (aTool == 57) {
  9917. text = _iframe.contentWindow.getLoadXmlStr()
  9918. }
  9919. _loading.style.display = 'flex'
  9920. console.log(_loading);
  9921. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9922. _loading.style.display = 'none'
  9923. let _div = document.createElement('div')
  9924. _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;"
  9925. let _inner = document.createElement('div')
  9926. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  9927. _inner.innerHTML = "上传成功"
  9928. _div.appendChild(_inner)
  9929. _iframe.contentWindow.window.document.body.appendChild(_div)
  9930. _div.onclick = () => {
  9931. _iframe.contentWindow.window.document.body.removeChild(_div)
  9932. }
  9933. setTimeout(() => {
  9934. _iframe.contentWindow.window.document.body.removeChild(_div)
  9935. }, 1000);
  9936. }, [], { "type": "POST", "withCredentials": true });
  9937. }
  9938. }
  9939. }
  9940. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  9941. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9942. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9943. _userid = student.userid, //登录用户id
  9944. _username = student.student //用户名字
  9945. let _iframe;
  9946. let _cid = cid,
  9947. _stage = stage,
  9948. _task = task,
  9949. _tool = tool;
  9950. var _jie = $$("div", {
  9951. "style": {
  9952. "position": "absolute",
  9953. "bottom": "50px",
  9954. "right": "50px",
  9955. "zIndex": "9999",
  9956. "backgroundColor": "#2268bc",
  9957. "color": "#fff",
  9958. "padding": "12px 20px",
  9959. "cursor": "pointer",
  9960. "borderRadius": "4px",
  9961. },
  9962. "innerHTML": "提交作业"
  9963. })
  9964. let aTool = ''
  9965. let _loading = document.createElement('div')
  9966. _loading.style = "width:100%;height:100%;background:#00000000;position:absolute;top:0;left:0;z-index:99999999999999;display: none;justify-content: center;align-items: center;"
  9967. // _loading.id = "";
  9968. let _lchild = document.createElement('div')
  9969. let _limg = document.createElement('img')
  9970. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9971. _limg.style = "width: 26px;margin-right: 10px;"
  9972. _lchild.appendChild(_limg)
  9973. let _lspan = document.createElement('span')
  9974. _lspan.innerHTML = "上传中..."
  9975. _lchild.appendChild(_lspan)
  9976. _lchild.style = "color: rgb(255, 255, 255);padding: 15px;background: rgba(0, 0, 0, 0.44);font-size: 18px;display: flex;align-items: center;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);"
  9977. _loading.appendChild(_lchild)
  9978. var _box = $$('div', {
  9979. "style": {
  9980. "position": "relative",
  9981. "width": "100%",
  9982. "height": "100%",
  9983. },
  9984. })
  9985. _box.appendChild(_loading)
  9986. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  9987. switch (str) {
  9988. case "CocoPi":
  9989. aTool = 57;
  9990. _iframe = $$("iframe", {
  9991. "allowpaymentrequest": "allowpaymentrequest",
  9992. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9993. "webkitallowfullscreen": "",
  9994. "mozallowfullscreen": "",
  9995. "frameborder": "no",
  9996. "border": "0",
  9997. "scrolling ": "no",
  9998. "style": {
  9999. "cssText": "border:0;width:100%;height:100%"
  10000. },
  10001. "src": "https://pi.cocorobo.cn/"
  10002. })
  10003. _box.appendChild(_iframe);
  10004. _box.appendChild(_jie);
  10005. _formdiv = new U.UF.UI.form(
  10006. "CocoPi-" + _username,
  10007. _box, {
  10008. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10009. "style": {
  10010. "width": "90%",
  10011. "height": "90%",
  10012. "overflow": 'hidden'
  10013. },
  10014. "onresize": function () { }
  10015. }, {
  10016. closecallback: function () { }
  10017. }, {
  10018. "style": {
  10019. "height": "36px"
  10020. }
  10021. }).form; //创建窗体
  10022. _taskbar = {
  10023. "id": str + _formdiv.id,
  10024. "style": {
  10025. "backgroundImage": "url(/img/icon/cocopi.png)"
  10026. },
  10027. "name": "CocoPi",
  10028. "forms": _formdiv,
  10029. "click": function () {
  10030. U.MD.D.I.openApplication(str, obj, info);
  10031. }
  10032. }
  10033. break;
  10034. }
  10035. if (_iframe) {
  10036. if (str == 'CocoPi') {
  10037. _iframe = _formdiv.querySelector('iframe')
  10038. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10039. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10040. })
  10041. if (onloadListener) {
  10042. _iframe.contentDocument.location.reload()
  10043. } else {
  10044. _iframe.contentDocument.location.reload()
  10045. }
  10046. }
  10047. _jie.onclick = async () => {
  10048. let text = ''
  10049. if (aTool == 57) {
  10050. text = _iframe.contentWindow.getLoadXmlStr()
  10051. }
  10052. _loading.style.display = 'flex'
  10053. console.log(_loading);
  10054. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10055. _loading.style.display = 'none'
  10056. let _div = document.createElement('div')
  10057. _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;"
  10058. let _inner = document.createElement('div')
  10059. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10060. _inner.innerHTML = "上传成功"
  10061. _div.appendChild(_inner)
  10062. _iframe.contentWindow.window.document.body.appendChild(_div)
  10063. _div.onclick = () => {
  10064. _iframe.contentWindow.window.document.body.removeChild(_div)
  10065. }
  10066. setTimeout(() => {
  10067. _iframe.contentWindow.window.document.body.removeChild(_div)
  10068. }, 1000);
  10069. }, [], { "type": "POST", "withCredentials": true });
  10070. }
  10071. }
  10072. }
  10073. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10074. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10075. if (res.value[0].length > 0) {
  10076. if (atool == 57) {
  10077. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10078. }
  10079. } else {
  10080. if (atool == 57) {
  10081. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10082. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10083. }
  10084. }
  10085. }, [], { "type": "POST", "withCredentials": true });
  10086. }