DeskTop.js 691 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  106. ];
  107. U.MD.D.I.studentDeskIcon = [
  108. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  109. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  110. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  111. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  112. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  113. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  114. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  115. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  116. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  117. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  118. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  119. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  120. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  121. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  122. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  123. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  124. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  125. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  126. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  127. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  128. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  129. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  130. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  131. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  132. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  133. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  134. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  135. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  136. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  137. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  138. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  139. ];
  140. U.MD.D.I.studentDeskIcon2 = [
  141. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  142. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  143. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  144. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  145. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  146. ]
  147. U.MD.D.I.studentDeskIcon3 = [
  148. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  149. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  150. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  151. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  152. ]
  153. U.MD.D.I.schoolDeskIcon = [
  154. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  155. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  156. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  157. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  158. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  159. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  160. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  161. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  162. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  163. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  164. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  165. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  166. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  167. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  168. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  169. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  170. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  171. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  172. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  173. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  174. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  175. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  176. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  177. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  178. ];
  179. U.MD.D.I.orgDeskIcon = [
  180. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  181. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  182. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  183. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  184. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  185. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  187. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  188. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  189. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  190. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  191. ];
  192. U.MD.D.I.orgStemDeskIcon = [
  193. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  194. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  195. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  196. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  197. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  198. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  199. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  200. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  201. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  202. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  203. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  204. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  205. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  206. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  207. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  209. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  210. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  211. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  212. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  213. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  214. ];
  215. U.MD.D.I.szulsDeskIcon = [
  216. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  217. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  218. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  219. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  220. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  221. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  222. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  223. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  224. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  225. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  226. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  227. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  228. ];
  229. U.MD.D.I.hanDeskIcon = [
  230. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  231. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  232. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  233. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  234. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  235. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  236. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  237. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  238. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  239. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  240. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  241. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  242. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  243. ];
  244. U.MD.D.I.GMteacherDeskIcon = [
  245. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  246. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  247. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  248. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  249. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  250. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  251. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  252. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  253. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  254. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  255. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  256. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  257. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  258. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  259. ];
  260. U.MD.D.I.GMstudentDeskIcon = [
  261. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  262. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  263. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  264. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  265. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  266. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  267. ];
  268. //松山湖
  269. U.MD.D.I.SONGteacherDeskIcon = [
  270. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  271. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  272. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  273. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  274. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  275. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  276. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  277. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  278. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  279. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  280. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  281. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  282. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  283. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  284. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  285. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  286. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  287. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  288. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  289. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  290. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  291. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  292. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  293. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  294. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  295. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  296. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  297. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  298. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  299. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  300. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  301. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  302. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  303. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  304. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  305. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  306. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  307. ];
  308. U.MD.D.I.tcStudentDeskIcon = [
  309. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  310. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  311. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  312. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  313. ];
  314. U.MD.D.I.tcTeacherDeskIcon = [
  315. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  316. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  317. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  318. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  319. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  320. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  321. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  322. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  323. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  324. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  325. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  326. ];
  327. U.MD.D.I.tcOrganizerDeskIcon = [
  328. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  329. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  330. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  331. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  332. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  333. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  334. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  335. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  336. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  337. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  338. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  339. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  340. ];
  341. U.MD.D.I.szscStudentDeskIcon = [
  342. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  343. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  344. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  345. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  346. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  347. ];
  348. U.MD.D.I.szscTeacherDeskIcon = [
  349. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  350. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  351. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  352. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  353. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  354. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  355. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  356. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  357. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  358. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  359. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  360. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  361. ];
  362. U.MD.D.I.szscOrganizerDeskIcon = [
  363. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  364. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  365. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  366. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  367. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  368. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  369. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  370. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  371. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  372. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  373. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  374. ];
  375. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  376. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  377. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  378. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  379. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  380. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  381. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  382. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  383. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  384. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  385. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  386. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  387. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  388. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  389. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  390. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  391. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  392. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  393. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  394. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  395. ];
  396. U.MD.D.I.wankeAdminDeskIcon = [
  397. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  398. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  399. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  400. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  401. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  402. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  403. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  404. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  405. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  406. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  407. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  408. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  409. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  410. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  411. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  412. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  413. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  414. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  415. ];
  416. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  417. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  418. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  419. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  420. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  421. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  422. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  423. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  424. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  425. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  426. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  427. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  428. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  429. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  430. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  431. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  432. ];
  433. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  434. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  435. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  436. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  437. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  438. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  439. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  440. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  441. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  442. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  443. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  444. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  445. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  446. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  447. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  448. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  449. ];
  450. //明德教师桌面图标的全局变量
  451. U.MD.D.I.MingdeTeacherDeskIcon = [
  452. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  453. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  454. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  455. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  456. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  457. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  458. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  459. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  460. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  461. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  462. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  463. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  464. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  465. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  466. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  467. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  468. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  469. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  470. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  471. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  472. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  473. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  474. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  475. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  476. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  477. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  478. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  479. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  480. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  481. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  482. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  483. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  484. ];
  485. //97c4ee8b-d010-4042-986d-e9d3c217264f
  486. //教师桌面图标的全局变量
  487. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  488. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  489. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  490. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  491. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  492. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  493. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  494. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  495. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  496. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  497. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  498. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  499. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  500. ];
  501. //福田
  502. U.MD.D.I.futianTeacherDeskIcon = [
  503. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  504. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  505. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  506. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  507. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  508. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  509. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  510. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  511. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  512. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  513. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  514. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  515. ];
  516. //福田
  517. U.MD.D.I.futianAdminDeskIcon = [
  518. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  519. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  520. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  521. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  522. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  523. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  524. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  525. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  526. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  527. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  528. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  529. ];
  530. //lotech
  531. U.MD.D.I.lotechTeacherDeskIcon = [
  532. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  533. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  534. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  535. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  536. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  537. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  538. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  539. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  540. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  541. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  542. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  543. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  544. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  546. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  547. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  548. ];
  549. //龙华中心小学教师桌面图标的全局变量
  550. U.MD.D.I.longhuateacherDeskIcon = [
  551. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  552. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  553. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  554. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  555. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  556. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  557. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  558. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  559. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  560. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  561. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  562. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  563. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  564. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  565. ];
  566. //教科院实小教师桌面图标的全局变量
  567. U.MD.D.I.siesteacherDeskIcon = [
  568. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  569. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  570. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  571. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  572. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  573. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  574. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  575. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  576. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  577. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  578. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  579. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  580. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  581. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  582. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  583. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  584. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  587. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  588. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  589. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  590. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  591. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  592. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  593. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  594. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  595. ];
  596. //教科院实小教师桌面图标的全局变量
  597. U.MD.D.I.siesStudentDeskIcon = [
  598. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  599. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  600. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  601. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  602. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  603. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  604. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  605. ];
  606. //中山小学教师桌面图标的全局变量
  607. U.MD.D.I.guzmsteacherDeskIcon = [
  608. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  609. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  610. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  611. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  612. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  613. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  614. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  615. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  616. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  617. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  618. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  619. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  620. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  621. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  622. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  623. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  624. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  625. ];
  626. //中山小学学生桌面图标的全局变量
  627. U.MD.D.I.guzmsStudentDeskIcon = [
  628. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  629. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  630. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  631. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  632. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  633. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  634. ];
  635. //福田
  636. U.MD.D.I.gdjgTeacherDeskIcon = [
  637. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  638. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  639. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  640. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  641. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  642. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  643. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  644. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  645. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  646. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  647. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  648. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  649. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  650. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  651. ];
  652. //gdjg
  653. U.MD.D.I.gdjgAdminDeskIcon = [
  654. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  655. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  656. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  657. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  658. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  659. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  660. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  661. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  662. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  663. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  664. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  665. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  666. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  667. ];
  668. //hk
  669. U.MD.D.I.hkteacherDeskIcon = [
  670. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  671. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  672. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  673. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  674. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  675. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  676. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  677. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  678. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  679. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  680. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  681. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  682. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  683. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  684. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  685. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  686. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  687. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  688. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  689. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  690. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  691. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  692. ];
  693. //ricoh
  694. U.MD.D.I.ricohteacherDeskIcon = [
  695. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  696. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  697. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  698. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  699. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  700. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  701. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  702. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  703. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  704. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  705. ];
  706. //hk
  707. U.MD.D.I.hkStudentDeskIcon = [
  708. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  709. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  710. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.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. ];
  715. //hk
  716. U.MD.D.I.hkaceteacherDeskIcon = [
  717. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  718. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  719. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  720. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  721. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  722. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  723. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  724. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  725. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  726. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  727. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  728. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  729. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  730. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  731. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  732. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  733. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  734. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  735. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  736. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  737. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  738. ];
  739. //hk
  740. U.MD.D.I.hkaceStudentDeskIcon = [
  741. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  742. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  743. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  744. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  745. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  746. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  747. ];
  748. //香海正覺蓮社佛教正覺中學
  749. U.MD.D.I.hkZJLSteacherDeskIcon = [
  750. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  751. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  752. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  753. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  754. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  755. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  756. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  757. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  758. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  759. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  760. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  761. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  762. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  763. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  764. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  765. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  766. ];
  767. //香海正覺蓮社佛教正覺中學
  768. U.MD.D.I.hkZJLSStudentDeskIcon = [
  769. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  770. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  771. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  772. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  773. ];
  774. //云海
  775. U.MD.D.I.yunhaiTeacherDeskIcon = [
  776. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  777. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  778. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  779. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  783. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  784. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  785. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  786. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  787. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  788. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  789. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  790. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  791. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  792. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  793. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  794. ];
  795. //福田
  796. U.MD.D.I.heyuanTeacherDeskIcon = [
  797. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  798. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  799. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  800. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  801. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  802. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  803. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  804. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  805. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  806. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  807. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  808. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  809. ];
  810. //福田
  811. U.MD.D.I.heyuanAdminDeskIcon = [
  812. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  813. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  814. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  815. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  816. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  817. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  818. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  819. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  820. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  821. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  822. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  823. ];
  824. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  825. U.MD.D.I.szherTeacherDeskIcon = [
  826. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  827. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  828. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  829. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  830. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  831. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  832. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  833. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  834. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  835. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  836. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  837. ];
  838. //dsei
  839. U.MD.D.I.dseiTeacherDeskIcon = [
  840. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  841. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  842. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  843. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  844. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  845. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  846. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  847. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  848. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  849. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  850. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  851. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  852. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  853. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  854. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  855. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  856. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  857. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  858. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  859. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  860. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  861. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  862. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  863. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  864. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  865. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  866. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  867. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  868. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  869. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  870. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  871. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  872. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  873. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  874. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  875. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  876. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  877. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  878. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  879. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  880. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  881. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  882. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  883. ];
  884. //dsei
  885. U.MD.D.I.dseiAdminDeskIcon = [
  886. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  887. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  888. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  889. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  890. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  891. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  892. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  893. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  894. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  895. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  896. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  897. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  898. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  899. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  900. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  901. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  902. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  903. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  904. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  905. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  906. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  907. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  908. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  909. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  910. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  911. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  912. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  913. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  914. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  915. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  916. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  917. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  918. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  919. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  920. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  921. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  922. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  923. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  924. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  925. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  926. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  927. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  928. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  929. ];
  930. //dsei
  931. U.MD.D.I.dseiStudentDeskIcon = [
  932. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  933. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  934. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  935. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  936. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  937. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  938. ];
  939. //未来教育基地
  940. U.MD.D.I.szjkyTeacherDeskIcon = [
  941. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  942. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  943. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  944. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  945. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  946. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  947. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  948. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  949. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  950. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  951. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  952. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  953. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  954. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  955. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  956. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  957. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  958. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  959. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  960. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  961. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  962. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  963. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  964. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  965. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  966. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  967. ];
  968. //未来教育基地
  969. U.MD.D.I.szjkyAdminDeskIcon = [
  970. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  971. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  972. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  973. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  974. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  975. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  976. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  977. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  978. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  979. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  980. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  981. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  982. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  983. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  984. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  985. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  986. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  987. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  988. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  989. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  990. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  991. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  992. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  993. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  994. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  995. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  996. ];
  997. //未来教育基地
  998. U.MD.D.I.szjkyStudentDeskIcon = [
  999. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1000. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1001. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1002. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1003. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1004. ];
  1005. //成华教育局
  1006. U.MD.D.I.chjyjTeacherDeskIcon = [
  1007. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1008. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1009. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1010. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1011. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1012. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1013. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1014. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1015. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1016. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1017. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1018. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1019. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1020. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1021. ];
  1022. //成华教育局chjyj
  1023. U.MD.D.I.chjyjAdminDeskIcon = [
  1024. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1025. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1026. { "Name": "项目管理", "Url": "studentCourseS", "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": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1029. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1030. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1031. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1032. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1033. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1034. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1035. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1036. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1037. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1038. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1039. ];
  1040. //成华教育局chjyj
  1041. U.MD.D.I.chjyjStudentDeskIcon = [
  1042. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1043. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1044. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1045. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1046. ];
  1047. //tpc
  1048. U.MD.D.I.tpcStudentDeskIcon = [
  1049. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1050. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1051. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1052. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1053. ];
  1054. //tpc
  1055. U.MD.D.I.tpcTeacherDeskIcon = [
  1056. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1057. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1058. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1059. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1060. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1061. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1062. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1063. ];
  1064. //tpc
  1065. U.MD.D.I.tpcAdminDeskIcon = [
  1066. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1067. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1068. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1069. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1070. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1071. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1072. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1073. ];
  1074. //THU-IOE
  1075. U.MD.D.I.thuioeTeacherDeskIcon = [
  1076. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1077. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1078. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1079. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1080. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1081. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1082. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1083. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1084. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1085. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1086. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1087. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1088. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1089. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1090. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1091. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1092. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1093. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1094. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1095. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1096. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1097. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1098. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1099. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1100. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1101. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1102. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1103. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1104. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1105. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1106. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1107. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1108. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1109. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1110. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1111. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1112. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1113. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1114. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1115. ];
  1116. //THU-IOE
  1117. U.MD.D.I.thuioeStudentDeskIcon = [
  1118. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1119. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1120. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1121. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1122. ];
  1123. //jccssyl
  1124. U.MD.D.I.jccssylTeacherDeskIcon = [
  1125. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1126. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1127. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1128. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1129. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1130. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1131. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1132. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1133. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1134. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1135. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1136. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1137. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1138. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1139. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1140. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1141. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1142. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1143. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1144. ];
  1145. //jccssyl
  1146. U.MD.D.I.jccssylStudentDeskIcon = [
  1147. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1148. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1149. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1150. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1151. ];
  1152. //cale
  1153. U.MD.D.I.caleTeacherDeskIcon = [
  1154. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1155. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1156. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1157. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1158. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1159. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1160. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1161. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1162. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1163. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1164. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1165. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1166. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1167. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1168. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1169. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1170. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1171. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1172. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1173. ];
  1174. //cale
  1175. U.MD.D.I.caleStudentDeskIcon = [
  1176. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1177. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1178. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1179. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1180. ];
  1181. //lqwmsgzs
  1182. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1183. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1184. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1185. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1186. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1187. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1188. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1189. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1190. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1191. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1192. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1193. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1194. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1195. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1196. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1197. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1198. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1199. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1200. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1201. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1202. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1203. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1204. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1205. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1206. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1207. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1208. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1209. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1210. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1211. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1212. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1213. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1214. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1215. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1216. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1217. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1218. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1219. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1220. ];
  1221. //lqwmsgzs
  1222. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  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. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1226. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1227. ];
  1228. //盐田区幼儿园
  1229. U.MD.D.I.ytyTeacherDeskIcon = [
  1230. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1231. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1232. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1233. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1234. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1235. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1236. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1237. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1238. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1239. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1240. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1241. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1242. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1243. ];
  1244. //盐田区幼儿园
  1245. U.MD.D.I.ytyStudentDeskIcon = [
  1246. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1247. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1248. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1249. ];
  1250. //scnuai
  1251. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1252. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1253. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1254. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1255. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1256. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1257. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1258. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1259. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1260. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1261. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1262. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1263. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1264. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1265. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1266. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1267. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1268. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1269. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1270. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1271. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1272. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1273. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1274. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1275. ];
  1276. //scnuai
  1277. U.MD.D.I.scnuaiAdminDeskIcon = [
  1278. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1279. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1280. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1281. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1282. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1283. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1284. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1285. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1286. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1287. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1288. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1289. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1290. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1291. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1292. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1293. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1294. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1295. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1296. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1297. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1298. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1299. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1300. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1301. ];
  1302. //scnuai
  1303. U.MD.D.I.scnuaiStudentDeskIcon = [
  1304. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1305. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1306. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1307. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1308. ];
  1309. //cocobiz
  1310. U.MD.D.I.cocobizteacherDeskIcon = [
  1311. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1312. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1313. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1314. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1315. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1316. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1317. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1318. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1319. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1320. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1321. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1322. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1323. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1324. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1325. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1326. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1327. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1328. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1329. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1330. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1331. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1332. ];
  1333. //cocobiz
  1334. U.MD.D.I.cocobizStudentDeskIcon = [
  1335. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1336. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1337. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1338. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1339. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1340. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1341. ];
  1342. //xxzjky
  1343. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1344. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1345. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1346. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1347. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1348. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1349. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1350. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1351. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1352. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1353. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1354. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1355. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1356. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1357. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1358. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1359. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1360. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1361. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1362. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1363. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1364. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1365. ];
  1366. //xxzjky
  1367. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1368. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1369. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1370. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1371. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1372. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1373. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1374. ];
  1375. //nsfx
  1376. U.MD.D.I.nsfxTeacherDeskIcon = [
  1377. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1378. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1379. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1380. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1381. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1382. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1383. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1384. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1385. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1386. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1387. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1388. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1389. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1390. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1391. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1392. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1393. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1394. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1395. ];
  1396. //nsfx
  1397. U.MD.D.I.nsfxStudentDeskIcon = [
  1398. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1399. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1400. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1401. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1402. ];
  1403. //stia
  1404. U.MD.D.I.stiaTeacherDeskIcon = [
  1405. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1406. // { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1407. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1408. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1409. // { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1410. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1411. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1412. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1413. // { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1414. // { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1415. // { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1416. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1417. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1418. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1419. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1420. ];
  1421. //stia
  1422. U.MD.D.I.stiaStudentDeskIcon = [
  1423. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1424. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1425. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1426. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1427. ];
  1428. //szdjg
  1429. U.MD.D.I.szdjgTeacherDeskIcon = [
  1430. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1431. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1432. ];
  1433. //szdjg
  1434. U.MD.D.I.szdjgStudentDeskIcon = [
  1435. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1436. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1437. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1438. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1439. ];
  1440. //010607
  1441. U.MD.D.I.x010607TeacherDeskIcon = [
  1442. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1443. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1444. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1445. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1446. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1447. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1448. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1449. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1450. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1451. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1452. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1453. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1454. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1455. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1456. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1457. ];
  1458. //010607
  1459. U.MD.D.I.x010607StudentDeskIcon = [
  1460. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1461. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1462. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1463. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1464. ];
  1465. //010608
  1466. U.MD.D.I.x010608TeacherDeskIcon = [
  1467. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1468. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1469. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1470. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1471. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1472. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1473. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1474. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1475. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1476. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1477. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1478. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1479. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1480. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1481. ];
  1482. //010608
  1483. U.MD.D.I.x010608StudentDeskIcon = [
  1484. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1485. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1486. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1487. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1488. ];
  1489. //xhly
  1490. U.MD.D.I.xhlyTeacherDeskIcon = [
  1491. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1492. ];
  1493. //010608
  1494. U.MD.D.I.xhlyStudentDeskIcon = [
  1495. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1496. ];
  1497. //北师大
  1498. U.MD.D.I.BSDNSteacherDeskIcon = [
  1499. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1500. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1501. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1502. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1503. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1504. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1505. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1506. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1507. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1508. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1509. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1510. ];
  1511. //北师大
  1512. U.MD.D.I.BSDNSstudentDeskIcon = [
  1513. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1514. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1515. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1516. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1517. ];
  1518. //CUHK_EDU
  1519. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1520. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1521. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1522. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1523. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1524. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1525. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1526. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1527. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1528. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1529. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1530. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1531. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1532. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1533. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1534. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1535. ];
  1536. //CUHK_EDU
  1537. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1538. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1539. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1540. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1541. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1542. ];
  1543. //010503
  1544. U.MD.D.I.x010503TeacherDeskIcon = [
  1545. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1546. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1547. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1548. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1549. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1550. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1551. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1552. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1553. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1554. ];
  1555. //010503
  1556. U.MD.D.I.x010503StudentDeskIcon = [
  1557. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1558. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1559. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1560. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1561. ];
  1562. //SPROUT Lab
  1563. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1564. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1565. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1566. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1567. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1568. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1569. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1570. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1571. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1572. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1573. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1574. ];
  1575. //SPROUT Lab
  1576. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1577. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1578. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1579. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1580. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1581. ];
  1582. //010204
  1583. U.MD.D.I.x010204TeacherDeskIcon = [
  1584. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1585. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1586. ];
  1587. //010204
  1588. U.MD.D.I.x010204StudentDeskIcon = [
  1589. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1590. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1591. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1592. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1593. ];
  1594. //trail
  1595. U.MD.D.I.trailTeacherDeskIcon = [
  1596. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1597. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1598. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1599. ];
  1600. //trail
  1601. U.MD.D.I.trailStudentDeskIcon = [
  1602. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1603. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1604. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1605. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1606. ];
  1607. //010504
  1608. U.MD.D.I.x010504TeacherDeskIcon = [
  1609. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1610. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1611. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1612. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1613. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1614. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1615. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1616. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1617. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1618. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1619. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1620. ];
  1621. //010504
  1622. U.MD.D.I.x010504StudentDeskIcon = [
  1623. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1624. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1625. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1626. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1627. ];
  1628. //SCNUET
  1629. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1630. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1631. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1632. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1633. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1634. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1635. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1636. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1637. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1638. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1639. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1640. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1641. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1642. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1643. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1644. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1645. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1646. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1647. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1648. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1649. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1650. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1651. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1652. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1653. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1654. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1655. ];
  1656. //SCNUET
  1657. U.MD.D.I.SCNUETAdminDeskIcon = [
  1658. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1659. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1660. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1661. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1662. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1663. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1664. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1665. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1666. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1667. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1668. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1669. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1670. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1671. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1672. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1673. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1674. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1675. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1676. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1677. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1678. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1679. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1680. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1681. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1682. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1683. ];
  1684. //SCNUET
  1685. U.MD.D.I.SCNUETStudentDeskIcon = [
  1686. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1687. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1688. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1689. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1690. ];
  1691. //x020201
  1692. U.MD.D.I.x020201TeacherDeskIcon = [
  1693. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1694. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1695. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1696. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1697. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1698. { "Name": "学生管理", "Url": "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": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1701. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1702. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1703. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1704. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1705. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1706. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1707. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1708. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1709. ];
  1710. //x020201
  1711. U.MD.D.I.x020201AdminDeskIcon = [
  1712. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1713. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1714. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1715. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1716. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1717. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1718. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1719. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1720. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1721. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1722. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1723. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1724. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1725. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1726. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1727. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1728. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1729. ];
  1730. //020201
  1731. U.MD.D.I.x020201StudentDeskIcon = [
  1732. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1733. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1734. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1735. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1736. ];
  1737. //010611
  1738. U.MD.D.I.x010611TeacherDeskIcon = [
  1739. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1740. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1741. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1742. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1743. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1744. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1745. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1746. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1747. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1748. ];
  1749. //010611
  1750. U.MD.D.I.x010611StudentDeskIcon = [
  1751. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1752. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1753. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1754. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1755. ];
  1756. //010612
  1757. U.MD.D.I.x010612TeacherDeskIcon = [
  1758. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1759. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1760. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1761. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1762. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1763. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1764. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1765. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1766. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1767. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1768. ];
  1769. //010612
  1770. U.MD.D.I.x010612StudentDeskIcon = [
  1771. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1772. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1773. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1774. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1775. ];
  1776. //tianyuan
  1777. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1778. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1779. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1780. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1781. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1782. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1783. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1784. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1785. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1786. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1787. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1788. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1789. ];
  1790. //010611
  1791. U.MD.D.I.tianyuanStudentDeskIcon = [
  1792. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1793. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1794. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1795. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1796. ];
  1797. //320101
  1798. U.MD.D.I.x320101TeacherDeskIcon = [
  1799. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1800. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1801. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1802. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1803. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1804. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1805. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1806. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1807. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1808. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1809. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1810. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1811. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1812. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1813. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1814. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1815. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1816. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1817. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1818. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1819. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1820. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1821. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1822. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1823. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1824. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1825. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1826. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1827. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1828. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1829. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1830. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1831. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1832. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1833. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1834. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1835. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1836. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1837. ];
  1838. //320101
  1839. U.MD.D.I.x320101StudentDeskIcon = [
  1840. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1841. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1842. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1843. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1844. ];
  1845. //szsy
  1846. U.MD.D.I.szsyTeacherDeskIcon = [
  1847. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1848. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1849. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1850. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1851. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1852. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1853. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1854. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1855. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1856. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1857. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1858. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1859. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1860. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1861. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1862. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1863. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1864. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1865. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1866. ];
  1867. //szsy
  1868. U.MD.D.I.szsyStudentDeskIcon = [
  1869. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1870. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1871. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1872. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1873. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1874. ];
  1875. //010404
  1876. U.MD.D.I.x010404TeacherDeskIcon = [
  1877. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1878. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1879. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1880. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1881. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1882. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1883. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1884. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1885. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1886. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1887. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1888. ];
  1889. //010404
  1890. U.MD.D.I.x010404StudentDeskIcon = [
  1891. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1892. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1893. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1894. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1895. ];
  1896. //#region 桌面初始化a
  1897. /**
  1898. * 初始化桌面的起始函数
  1899. *
  1900. */
  1901. U.MD.D.I.init = function () {
  1902. if ($("#U_MD_D_K")[0]) {
  1903. //初始化桌面图标
  1904. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1905. // var clickUrl = ':12588/requestIp.php';
  1906. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1907. // U.MD.D.I.Ip = data;
  1908. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1909. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1910. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1911. // })
  1912. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1913. // })
  1914. }
  1915. }
  1916. /**
  1917. * 模式切换
  1918. *
  1919. */
  1920. U.MD.D.I.ModeCheck = function (type) {
  1921. if (US.Config.type == type) {
  1922. return
  1923. }
  1924. US.Config.type = type
  1925. $('.U_PBL_Check .active')[0].className = ''
  1926. if (type == 1) {
  1927. $('.U_PBL_Check div')[0].className = 'active'
  1928. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1929. } else {
  1930. $('.U_PBL_Check div')[1].className = 'active'
  1931. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1932. }
  1933. //初始化桌面图标
  1934. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1935. if (type == 2) {
  1936. U.MD.D.I.openApplication("project")
  1937. }
  1938. }
  1939. /**
  1940. * 隐藏任务栏
  1941. *
  1942. * @param {element} 桌面元素
  1943. */
  1944. U.MD.D.I.hiddenTaskbar = function (el) {
  1945. //任务栏位置变小
  1946. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1947. //桌面的位置变大
  1948. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1949. }
  1950. /**
  1951. * 隐藏任务栏
  1952. *
  1953. * @param {element} 桌面元素
  1954. */
  1955. U.MD.D.I.hiddenTaskbarout = function (el) {
  1956. //任务栏位置变小
  1957. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1958. //任务栏位置变化
  1959. U.selectEl(el).css({ "bottom": "-60px" });
  1960. //桌面的位置变大
  1961. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1962. }
  1963. }
  1964. /**
  1965. * 初始化打印桌面图标
  1966. *
  1967. * @param {element} 桌面元素
  1968. */
  1969. U.MD.D.I.initDesktopIcons = function (el, type) {
  1970. var i, //用于循环
  1971. _content, //桌面图标元素
  1972. _iconcontent, //桌面图标元素
  1973. _frag = $$("frag"), //定义一个碎片元素
  1974. _type = US.userInfo.type,
  1975. _org = US.userInfo.org,
  1976. _oid = US.userInfo.organizeid,
  1977. _role = US.userInfo.role,
  1978. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1979. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1980. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1981. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1982. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1983. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1984. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1985. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1986. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1987. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1988. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1989. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1990. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1991. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1992. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1993. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1994. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1995. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1996. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1997. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1998. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1999. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  2000. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  2001. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  2002. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  2003. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  2004. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  2005. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  2006. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  2007. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  2008. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  2009. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  2010. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  2011. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  2012. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  2013. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  2014. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  2015. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  2016. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  2017. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  2018. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  2019. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  2020. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  2021. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  2022. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  2023. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  2024. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  2025. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  2026. _ricohTeacherDeskIconInfo = U.MD.D.I.ricohteacherDeskIcon, //hk
  2027. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  2028. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  2029. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  2030. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  2031. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  2032. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  2033. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  2034. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  2035. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  2036. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  2037. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  2038. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  2039. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  2040. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  2041. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  2042. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  2043. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  2044. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  2045. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  2046. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  2047. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  2048. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  2049. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  2050. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  2051. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  2052. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  2053. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  2054. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  2055. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2056. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2057. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2058. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2059. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2060. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2061. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2062. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2063. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2064. _x010612StudentDeskIconInfo = U.MD.D.I.x010612StudentDeskIcon, //010611
  2065. _x010612TeacherDeskIconInfo = U.MD.D.I.x010612TeacherDeskIcon, //010611
  2066. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2067. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2068. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2069. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2070. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2071. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2072. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2073. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2074. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2075. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2076. _x010404StudentDeskIconInfo = U.MD.D.I.x010404StudentDeskIcon, //010404
  2077. _x010404TeacherDeskIconInfo = U.MD.D.I.x010404TeacherDeskIcon, //010404
  2078. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2079. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2080. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2081. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2082. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2083. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2084. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2085. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2086. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2087. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2088. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2089. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2090. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2091. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2092. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2093. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2094. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2095. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2096. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2097. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  2098. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263','9b46a3c9-7657-11ef-9b30-005056b86db5','857af1c7-c8ee-4b04-85b5-fd182903adb7','876030db-7a49-11ef-9b30-005056b86db5','b97fc213-86a9-11ef-9b30-005056b86db5', 'c636f63e-86f4-11ef-9b30-005056b86db5','6c16df93-8849-11ef-9b30-005056b86db5','72c16ee0-89fe-11ef-9b30-005056b86db5','369222a8-cddd-11ed-9546-005056b86db5','3fc7840d-a1c4-11ef-9b30-005056b86db5','2c5d4971-ed9e-11ef-b508-005056924926','bc239322-ffb2-11ef-b508-005056924926','91796dfb-8791-11ef-9b30-005056b86db5','86fa8cd7-00c2-11f0-b508-005056924926'];
  2099. var _orgA = ["7ada499f-4ec7-11ed-8c78-005056b86db5", "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d", "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b", "150e3120-9195-11ed-b13d-005056b86db5", "ee40e8e3-e36c-4872-8105-cf395481012s", '97c4ee8b-d010-4042-986d-e9d3c217264f', 'ec0af97a-7c10-4259-a7eb-db9cc8174cdc', '4df1b570-f6ac-48fc-8d50-d0b157dae776', 'e632b86c-f89d-11ed-91d8-005056b86db5', 'b50cf65a-001c-11ee-91d8-005056b86db5', '578de748-05d2-11ee-91d8-005056b86db5', '54f09f1e-09f0-11ee-91d8-005056b86db5', '7b016f69-0f4f-11ee-91d8-005056b86db5', '1973f6c7-1561-11ee-91d8-005056b86db5', '2fa75e51-189a-11ee-91d8-005056b86db5', 'a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956', 'fbb00cc1-380b-4173-add4-59b3cf7682b5', '63060b4a-89dc-4f0c-bf04-a1de22d479ff', '777559d2-7239-11ee-b98c-005056b86db5', '03d24cf9-4fbc-4aeb-bb02-6f84f66e6344','884c5665-a453-46f3-b7b6-01d575290aa9','c9a6de59-8b4f-4be1-8565-a08081f649d3','7f280060-665e-4868-b68f-1eec9e1b4a07','f3b243b2-75e2-4b00-8f66-7644946a2a25','16ace517-b5c7-4168-a9bb-a9e0035df840','2fe1a080-4425-4620-b7a0-be2f3750ffd4','a5efd078-20f6-4185-bef9-6d1c688bee70','23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6','ec84034b-8ea4-4d27-9cba-1adcb4720bb3','b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc','c8266c04-59e3-44de-bcf2-8f906e66e636','7cc601a0-fafc-4116-a805-0adbacf7a38d'];
  2100. //清楚桌面图标
  2101. el.innerHTML = "";
  2102. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2103. _teacherDesktopIconInfo.push(
  2104. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2105. { "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)" } },
  2106. )
  2107. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2108. }
  2109. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5' || _org == '4d3812ef-fa66-11ef-b508-005056924926' || _oid == "0df61e4c-fe2d-11ef-b508-005056924926" || _org == 'eaee75a4-ff2e-11ef-b508-005056924926' || _org == 'e775a5d7-039a-11f0-b508-005056924926' || _org == '4d3812ef-fa66-11ef-b508-005056924926') {
  2110. _teacherDesktopIconInfo.push(
  2111. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2112. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2113. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2114. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2115. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2116. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2117. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2118. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2119. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2120. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2121. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2122. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2123. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2124. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2125. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2126. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2127. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2128. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2129. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2130. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2131. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2132. )
  2133. }
  2134. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2135. _teacherDesktopIconInfo.push(
  2136. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2137. )
  2138. }
  2139. if (_oid == 'b650d914-f039-11ef-b508-005056924926') {//松坪学校
  2140. _nsfxTeacherDeskIconInfo.push(
  2141. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2142. )
  2143. }
  2144. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2145. // _teacherDesktopIconInfo.push(
  2146. // )
  2147. // }
  2148. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2149. _teacherDesktopIconInfo.push(
  2150. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2151. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2152. )
  2153. }
  2154. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2155. _teacherDesktopIconInfo.push(
  2156. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2157. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2158. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2159. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2160. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2161. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2162. )
  2163. _studentDesktopIconInfo.push(
  2164. )
  2165. }
  2166. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2167. _teacherDesktopIconInfo.push(
  2168. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2169. )
  2170. _studentDesktopIconInfo.push(
  2171. )
  2172. }
  2173. //010606 组织
  2174. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2175. _teacherDesktopIconInfo.push(
  2176. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2177. )
  2178. _studentDesktopIconInfo.push(
  2179. )
  2180. }
  2181. //麒麟二中 和 民新小学
  2182. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2183. _teacherDesktopIconInfo.push(
  2184. )
  2185. }
  2186. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2187. _teacherDesktopIconInfo.push(
  2188. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2189. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2190. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2191. )
  2192. }
  2193. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2194. _hkTeacherDeskIconInfo.push(
  2195. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2196. )
  2197. }
  2198. //北师大附中(010601)
  2199. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2200. // _teacherDesktopIconInfo.push(
  2201. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2202. // )
  2203. // _studentDesktopIconInfo.push(
  2204. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2205. // )
  2206. // }
  2207. //樂善堂余近卿中學
  2208. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2209. _teacherDesktopIconInfo.push(
  2210. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2211. )
  2212. }
  2213. // Education Artificial Intelligence
  2214. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2215. _teacherDesktopIconInfo.push(
  2216. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2217. )
  2218. }
  2219. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2220. _teacherDesktopIconInfo.push(
  2221. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2222. )
  2223. }
  2224. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2225. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2226. _teacherDesktopIconInfo.push(
  2227. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2228. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2229. )
  2230. }
  2231. //麒麟二中
  2232. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2233. _studentDesktopIconInfo.push(
  2234. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2235. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2236. )
  2237. }
  2238. //万科双语
  2239. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2240. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2241. if (el.Name == '项目管理') {
  2242. el.Name = 'PBL项目'
  2243. }
  2244. return el
  2245. })
  2246. _studentDesktopIconInfo3.push(
  2247. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2248. )
  2249. }
  2250. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2251. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2252. return el.Name != '魔盒识字' && el.Name != '24点'
  2253. })
  2254. }
  2255. 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) {
  2256. _studentDesktopIconInfo.push(
  2257. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2258. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2259. )
  2260. }
  2261. //循环创建桌面图标
  2262. if (type == 1) {
  2263. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2264. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2265. _content = $$("div", {
  2266. className: "U_MD_D_KO",
  2267. "onmousedown": U.UF.C.closure(function (obj) {
  2268. //防止拖动图标即打开了桌面应用
  2269. U.MD.D.click(this, obj);
  2270. }, [_studentDesktopIconInfo[i]]),
  2271. "onclick": U.UF.C.closure(function (obj) {
  2272. //防止拖动图标即打开了桌面应用
  2273. U.MD.D.click(this, obj);
  2274. }, [_studentDesktopIconInfo[i]])
  2275. }, _frag); //
  2276. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2277. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2278. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2279. }
  2280. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2281. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2282. _content = $$("div", {
  2283. className: "U_MD_D_KO",
  2284. "onmousedown": U.UF.C.closure(function (obj) {
  2285. //防止拖动图标即打开了桌面应用
  2286. U.MD.D.click(this, obj);
  2287. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2288. "onclick": U.UF.C.closure(function (obj) {
  2289. //防止拖动图标即打开了桌面应用
  2290. U.MD.D.click(this, obj);
  2291. }, [_hkZJLSStudentDeskIconInfo[i]])
  2292. }, _frag); //
  2293. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2294. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2295. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2296. } //
  2297. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2298. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2299. _content = $$("div", {
  2300. className: "U_MD_D_KO",
  2301. "onmousedown": U.UF.C.closure(function (obj) {
  2302. //防止拖动图标即打开了桌面应用
  2303. U.MD.D.click(this, obj);
  2304. }, [_ytyStudentDeskIconInfo[i]]),
  2305. "onclick": U.UF.C.closure(function (obj) {
  2306. //防止拖动图标即打开了桌面应用
  2307. U.MD.D.click(this, obj);
  2308. }, [_ytyStudentDeskIconInfo[i]])
  2309. }, _frag); //
  2310. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2311. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2312. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2313. } //
  2314. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2315. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2316. _content = $$("div", {
  2317. className: "U_MD_D_KO",
  2318. "onmousedown": U.UF.C.closure(function (obj) {
  2319. //防止拖动图标即打开了桌面应用
  2320. U.MD.D.click(this, obj);
  2321. }, [_jccssylStudentDeskIconInfo[i]]),
  2322. "onclick": U.UF.C.closure(function (obj) {
  2323. //防止拖动图标即打开了桌面应用
  2324. U.MD.D.click(this, obj);
  2325. }, [_jccssylStudentDeskIconInfo[i]])
  2326. }, _frag); //
  2327. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2328. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2329. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2330. }
  2331. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2332. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2333. _content = $$("div", {
  2334. className: "U_MD_D_KO",
  2335. "onmousedown": U.UF.C.closure(function (obj) {
  2336. //防止拖动图标即打开了桌面应用
  2337. U.MD.D.click(this, obj);
  2338. }, [_scnuaiStudentDeskIconInfo[i]]),
  2339. "onclick": U.UF.C.closure(function (obj) {
  2340. //防止拖动图标即打开了桌面应用
  2341. U.MD.D.click(this, obj);
  2342. }, [_scnuaiStudentDeskIconInfo[i]])
  2343. }, _frag); //
  2344. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2345. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2346. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2347. }
  2348. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2349. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2350. _content = $$("div", {
  2351. className: "U_MD_D_KO",
  2352. "onmousedown": U.UF.C.closure(function (obj) {
  2353. //防止拖动图标即打开了桌面应用
  2354. U.MD.D.click(this, obj);
  2355. }, [_caleStudentDeskIconInfo[i]]),
  2356. "onclick": U.UF.C.closure(function (obj) {
  2357. //防止拖动图标即打开了桌面应用
  2358. U.MD.D.click(this, obj);
  2359. }, [_caleStudentDeskIconInfo[i]])
  2360. }, _frag); //
  2361. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2362. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2363. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2364. }
  2365. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2366. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2367. _content = $$("div", {
  2368. className: "U_MD_D_KO",
  2369. "onmousedown": U.UF.C.closure(function (obj) {
  2370. //防止拖动图标即打开了桌面应用
  2371. U.MD.D.click(this, obj);
  2372. }, [_thuioeStudentDeskIconInfo[i]]),
  2373. "onclick": U.UF.C.closure(function (obj) {
  2374. //防止拖动图标即打开了桌面应用
  2375. U.MD.D.click(this, obj);
  2376. }, [_thuioeStudentDeskIconInfo[i]])
  2377. }, _frag); //
  2378. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2379. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2380. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2381. }
  2382. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2383. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2384. _content = $$("div", {
  2385. className: "U_MD_D_KO",
  2386. "onmousedown": U.UF.C.closure(function (obj) {
  2387. //防止拖动图标即打开了桌面应用
  2388. U.MD.D.click(this, obj);
  2389. }, [_tpcStudentDeskIconInfo[i]]),
  2390. "onclick": U.UF.C.closure(function (obj) {
  2391. //防止拖动图标即打开了桌面应用
  2392. U.MD.D.click(this, obj);
  2393. }, [_tpcStudentDeskIconInfo[i]])
  2394. }, _frag); //
  2395. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2396. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2397. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2398. } //
  2399. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2400. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2401. _content = $$("div", {
  2402. className: "U_MD_D_KO",
  2403. "onmousedown": U.UF.C.closure(function (obj) {
  2404. //防止拖动图标即打开了桌面应用
  2405. U.MD.D.click(this, obj);
  2406. }, [_chjyjStudentDeskIconInfo[i]]),
  2407. "onclick": U.UF.C.closure(function (obj) {
  2408. //防止拖动图标即打开了桌面应用
  2409. U.MD.D.click(this, obj);
  2410. }, [_chjyjStudentDeskIconInfo[i]])
  2411. }, _frag); //
  2412. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2413. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2414. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2415. }
  2416. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2417. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2418. _content = $$("div", {
  2419. className: "U_MD_D_KO",
  2420. "onmousedown": U.UF.C.closure(function (obj) {
  2421. //防止拖动图标即打开了桌面应用
  2422. U.MD.D.click(this, obj);
  2423. }, [_szjkyStudentDeskIconInfo[i]]),
  2424. "onclick": U.UF.C.closure(function (obj) {
  2425. //防止拖动图标即打开了桌面应用
  2426. U.MD.D.click(this, obj);
  2427. }, [_szjkyStudentDeskIconInfo[i]])
  2428. }, _frag); //
  2429. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2430. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2431. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2432. }
  2433. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2434. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2435. _content = $$("div", {
  2436. className: "U_MD_D_KO",
  2437. "onmousedown": U.UF.C.closure(function (obj) {
  2438. //防止拖动图标即打开了桌面应用
  2439. U.MD.D.click(this, obj);
  2440. }, [_x020201StudentDeskIconInfo[i]]),
  2441. "onclick": U.UF.C.closure(function (obj) {
  2442. //防止拖动图标即打开了桌面应用
  2443. U.MD.D.click(this, obj);
  2444. }, [_x020201StudentDeskIconInfo[i]])
  2445. }, _frag); //
  2446. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2447. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2448. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2449. }
  2450. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2451. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2452. _content = $$("div", {
  2453. className: "U_MD_D_KO",
  2454. "onmousedown": U.UF.C.closure(function (obj) {
  2455. //防止拖动图标即打开了桌面应用
  2456. U.MD.D.click(this, obj);
  2457. }, [_SCNUETStudentDeskIconInfo[i]]),
  2458. "onclick": U.UF.C.closure(function (obj) {
  2459. //防止拖动图标即打开了桌面应用
  2460. U.MD.D.click(this, obj);
  2461. }, [_SCNUETStudentDeskIconInfo[i]])
  2462. }, _frag); //
  2463. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2464. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2465. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2466. }
  2467. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2468. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2469. _content = $$("div", {
  2470. className: "U_MD_D_KO",
  2471. "onmousedown": U.UF.C.closure(function (obj) {
  2472. //防止拖动图标即打开了桌面应用
  2473. U.MD.D.click(this, obj);
  2474. }, [_dseiStudentDeskIconInfo[i]]),
  2475. "onclick": U.UF.C.closure(function (obj) {
  2476. //防止拖动图标即打开了桌面应用
  2477. U.MD.D.click(this, obj);
  2478. }, [_dseiStudentDeskIconInfo[i]])
  2479. }, _frag); //
  2480. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2481. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2482. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2483. }
  2484. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2485. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2486. _content = $$("div", {
  2487. className: "U_MD_D_KO",
  2488. "onmousedown": U.UF.C.closure(function (obj) {
  2489. //防止拖动图标即打开了桌面应用
  2490. U.MD.D.click(this, obj);
  2491. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2492. "onclick": U.UF.C.closure(function (obj) {
  2493. //防止拖动图标即打开了桌面应用
  2494. U.MD.D.click(this, obj);
  2495. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2496. }, _frag); //
  2497. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2498. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2499. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2500. }
  2501. } else if (_type == 2 && (_org == "7cc601a0-fafc-4116-a805-0adbacf7a38d")) {
  2502. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2503. _content = $$("div", {
  2504. className: "U_MD_D_KO",
  2505. "onmousedown": U.UF.C.closure(function (obj) {
  2506. //防止拖动图标即打开了桌面应用
  2507. U.MD.D.click(this, obj);
  2508. }, [_nsfxStudentDeskIconInfo[i]]),
  2509. "onclick": U.UF.C.closure(function (obj) {
  2510. //防止拖动图标即打开了桌面应用
  2511. U.MD.D.click(this, obj);
  2512. }, [_nsfxStudentDeskIconInfo[i]])
  2513. }, _frag); //
  2514. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2515. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2516. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2517. }
  2518. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2519. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2520. _content = $$("div", {
  2521. className: "U_MD_D_KO",
  2522. "onmousedown": U.UF.C.closure(function (obj) {
  2523. //防止拖动图标即打开了桌面应用
  2524. U.MD.D.click(this, obj);
  2525. }, [_stiaStudentDeskIconInfo[i]]),
  2526. "onclick": U.UF.C.closure(function (obj) {
  2527. //防止拖动图标即打开了桌面应用
  2528. U.MD.D.click(this, obj);
  2529. }, [_stiaStudentDeskIconInfo[i]])
  2530. }, _frag); //
  2531. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2532. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2533. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2534. }
  2535. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2536. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2537. _content = $$("div", {
  2538. className: "U_MD_D_KO",
  2539. "onmousedown": U.UF.C.closure(function (obj) {
  2540. //防止拖动图标即打开了桌面应用
  2541. U.MD.D.click(this, obj);
  2542. }, [_szdjgStudentDeskIconInfo[i]]),
  2543. "onclick": U.UF.C.closure(function (obj) {
  2544. //防止拖动图标即打开了桌面应用
  2545. U.MD.D.click(this, obj);
  2546. }, [_szdjgStudentDeskIconInfo[i]])
  2547. }, _frag); //
  2548. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2549. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2550. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2551. }
  2552. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2553. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2554. _content = $$("div", {
  2555. className: "U_MD_D_KO",
  2556. "onmousedown": U.UF.C.closure(function (obj) {
  2557. //防止拖动图标即打开了桌面应用
  2558. U.MD.D.click(this, obj);
  2559. }, [_x010607StudentDeskIconInfo[i]]),
  2560. "onclick": U.UF.C.closure(function (obj) {
  2561. //防止拖动图标即打开了桌面应用
  2562. U.MD.D.click(this, obj);
  2563. }, [_x010607StudentDeskIconInfo[i]])
  2564. }, _frag); //
  2565. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2566. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2567. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2568. }
  2569. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2570. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2571. _content = $$("div", {
  2572. className: "U_MD_D_KO",
  2573. "onmousedown": U.UF.C.closure(function (obj) {
  2574. //防止拖动图标即打开了桌面应用
  2575. U.MD.D.click(this, obj);
  2576. }, [_xhlyStudentDeskIconInfo[i]]),
  2577. "onclick": U.UF.C.closure(function (obj) {
  2578. //防止拖动图标即打开了桌面应用
  2579. U.MD.D.click(this, obj);
  2580. }, [_xhlyStudentDeskIconInfo[i]])
  2581. }, _frag); //
  2582. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2583. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2584. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2585. }
  2586. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2587. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2588. _content = $$("div", {
  2589. className: "U_MD_D_KO",
  2590. "onmousedown": U.UF.C.closure(function (obj) {
  2591. //防止拖动图标即打开了桌面应用
  2592. U.MD.D.click(this, obj);
  2593. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2594. "onclick": U.UF.C.closure(function (obj) {
  2595. //防止拖动图标即打开了桌面应用
  2596. U.MD.D.click(this, obj);
  2597. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2598. }, _frag); //
  2599. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2600. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2601. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2602. }
  2603. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2604. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2605. _content = $$("div", {
  2606. className: "U_MD_D_KO",
  2607. "onmousedown": U.UF.C.closure(function (obj) {
  2608. //防止拖动图标即打开了桌面应用
  2609. U.MD.D.click(this, obj);
  2610. }, [_x010503StudentDeskIconInfo[i]]),
  2611. "onclick": U.UF.C.closure(function (obj) {
  2612. //防止拖动图标即打开了桌面应用
  2613. U.MD.D.click(this, obj);
  2614. }, [_x010503StudentDeskIconInfo[i]])
  2615. }, _frag); //
  2616. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2617. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2618. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2619. }
  2620. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2621. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2622. _content = $$("div", {
  2623. className: "U_MD_D_KO",
  2624. "onmousedown": U.UF.C.closure(function (obj) {
  2625. //防止拖动图标即打开了桌面应用
  2626. U.MD.D.click(this, obj);
  2627. }, [_x010504StudentDeskIconInfo[i]]),
  2628. "onclick": U.UF.C.closure(function (obj) {
  2629. //防止拖动图标即打开了桌面应用
  2630. U.MD.D.click(this, obj);
  2631. }, [_x010504StudentDeskIconInfo[i]])
  2632. }, _frag); //
  2633. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2634. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2635. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2636. }
  2637. } else if (_type == 2 && (_oid == "bc239322-ffb2-11ef-b508-005056924926")) {
  2638. for (i = 0; i < _x010404StudentDeskIconInfo.length; i++) {
  2639. _content = $$("div", {
  2640. className: "U_MD_D_KO",
  2641. "onmousedown": U.UF.C.closure(function (obj) {
  2642. //防止拖动图标即打开了桌面应用
  2643. U.MD.D.click(this, obj);
  2644. }, [_x010404StudentDeskIconInfo[i]]),
  2645. "onclick": U.UF.C.closure(function (obj) {
  2646. //防止拖动图标即打开了桌面应用
  2647. U.MD.D.click(this, obj);
  2648. }, [_x010404StudentDeskIconInfo[i]])
  2649. }, _frag); //
  2650. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2651. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404StudentDeskIconInfo[i].style }, _iconcontent);
  2652. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404StudentDeskIconInfo[i].Name }, _iconcontent);
  2653. }
  2654. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2655. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2656. _content = $$("div", {
  2657. className: "U_MD_D_KO",
  2658. "onmousedown": U.UF.C.closure(function (obj) {
  2659. //防止拖动图标即打开了桌面应用
  2660. U.MD.D.click(this, obj);
  2661. }, [_x010204StudentDeskIconInfo[i]]),
  2662. "onclick": U.UF.C.closure(function (obj) {
  2663. //防止拖动图标即打开了桌面应用
  2664. U.MD.D.click(this, obj);
  2665. }, [_x010204StudentDeskIconInfo[i]])
  2666. }, _frag); //
  2667. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2668. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2669. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2670. }
  2671. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2672. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2673. _content = $$("div", {
  2674. className: "U_MD_D_KO",
  2675. "onmousedown": U.UF.C.closure(function (obj) {
  2676. //防止拖动图标即打开了桌面应用
  2677. U.MD.D.click(this, obj);
  2678. }, [_x320101StudentDeskIconInfo[i]]),
  2679. "onclick": U.UF.C.closure(function (obj) {
  2680. //防止拖动图标即打开了桌面应用
  2681. U.MD.D.click(this, obj);
  2682. }, [_x320101StudentDeskIconInfo[i]])
  2683. }, _frag); //
  2684. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2685. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2686. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2687. }
  2688. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2689. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2690. _content = $$("div", {
  2691. className: "U_MD_D_KO",
  2692. "onmousedown": U.UF.C.closure(function (obj) {
  2693. //防止拖动图标即打开了桌面应用
  2694. U.MD.D.click(this, obj);
  2695. }, [_trailStudentDeskIconInfo[i]]),
  2696. "onclick": U.UF.C.closure(function (obj) {
  2697. //防止拖动图标即打开了桌面应用
  2698. U.MD.D.click(this, obj);
  2699. }, [_trailStudentDeskIconInfo[i]])
  2700. }, _frag); //
  2701. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2702. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2703. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2704. }
  2705. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2706. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2707. _content = $$("div", {
  2708. className: "U_MD_D_KO",
  2709. "onmousedown": U.UF.C.closure(function (obj) {
  2710. //防止拖动图标即打开了桌面应用
  2711. U.MD.D.click(this, obj);
  2712. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2713. "onclick": U.UF.C.closure(function (obj) {
  2714. //防止拖动图标即打开了桌面应用
  2715. U.MD.D.click(this, obj);
  2716. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2717. }, _frag); //
  2718. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2719. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2720. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2721. }
  2722. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2723. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2724. _content = $$("div", {
  2725. className: "U_MD_D_KO",
  2726. "onmousedown": U.UF.C.closure(function (obj) {
  2727. //防止拖动图标即打开了桌面应用
  2728. U.MD.D.click(this, obj);
  2729. }, [_szsyStudentDeskIconInfo[i]]),
  2730. "onclick": U.UF.C.closure(function (obj) {
  2731. //防止拖动图标即打开了桌面应用
  2732. U.MD.D.click(this, obj);
  2733. }, [_szsyStudentDeskIconInfo[i]])
  2734. }, _frag); //
  2735. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2736. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2737. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2738. }
  2739. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2740. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2741. _content = $$("div", {
  2742. className: "U_MD_D_KO",
  2743. "onmousedown": U.UF.C.closure(function (obj) {
  2744. //防止拖动图标即打开了桌面应用
  2745. U.MD.D.click(this, obj);
  2746. }, [_x010608StudentDeskIconInfo[i]]),
  2747. "onclick": U.UF.C.closure(function (obj) {
  2748. //防止拖动图标即打开了桌面应用
  2749. U.MD.D.click(this, obj);
  2750. }, [_x010608StudentDeskIconInfo[i]])
  2751. }, _frag); //
  2752. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2753. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2754. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2755. }
  2756. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2757. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2758. _content = $$("div", {
  2759. className: "U_MD_D_KO",
  2760. "onmousedown": U.UF.C.closure(function (obj) {
  2761. //防止拖动图标即打开了桌面应用
  2762. U.MD.D.click(this, obj);
  2763. }, [_x010611StudentDeskIconInfo[i]]),
  2764. "onclick": U.UF.C.closure(function (obj) {
  2765. //防止拖动图标即打开了桌面应用
  2766. U.MD.D.click(this, obj);
  2767. }, [_x010611StudentDeskIconInfo[i]])
  2768. }, _frag); //
  2769. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2770. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2771. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2772. }
  2773. } else if (_type == 2 && (_oid == "86fa8cd7-00c2-11f0-b508-005056924926")) {
  2774. for (i = 0; i < _x010612StudentDeskIconInfo.length; i++) {
  2775. _content = $$("div", {
  2776. className: "U_MD_D_KO",
  2777. "onmousedown": U.UF.C.closure(function (obj) {
  2778. //防止拖动图标即打开了桌面应用
  2779. U.MD.D.click(this, obj);
  2780. }, [_x010612StudentDeskIconInfo[i]]),
  2781. "onclick": U.UF.C.closure(function (obj) {
  2782. //防止拖动图标即打开了桌面应用
  2783. U.MD.D.click(this, obj);
  2784. }, [_x010612StudentDeskIconInfo[i]])
  2785. }, _frag); //
  2786. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2787. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612StudentDeskIconInfo[i].style }, _iconcontent);
  2788. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612StudentDeskIconInfo[i].Name }, _iconcontent);
  2789. }
  2790. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2791. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2792. _content = $$("div", {
  2793. className: "U_MD_D_KO",
  2794. "onmousedown": U.UF.C.closure(function (obj) {
  2795. //防止拖动图标即打开了桌面应用
  2796. U.MD.D.click(this, obj);
  2797. }, [_tianyuantudentDeskIconInfo[i]]),
  2798. "onclick": U.UF.C.closure(function (obj) {
  2799. //防止拖动图标即打开了桌面应用
  2800. U.MD.D.click(this, obj);
  2801. }, [_tianyuantudentDeskIconInfo[i]])
  2802. }, _frag); //
  2803. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2804. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2805. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2806. }
  2807. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2808. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2809. _content = $$("div", {
  2810. className: "U_MD_D_KO",
  2811. "onmousedown": U.UF.C.closure(function (obj) {
  2812. //防止拖动图标即打开了桌面应用
  2813. U.MD.D.click(this, obj);
  2814. }, [_siesStudentDeskIconInfo[i]]),
  2815. "onclick": U.UF.C.closure(function (obj) {
  2816. //防止拖动图标即打开了桌面应用
  2817. U.MD.D.click(this, obj);
  2818. }, [_siesStudentDeskIconInfo[i]])
  2819. }, _frag); //
  2820. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2821. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2822. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2823. }
  2824. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2825. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2826. _content = $$("div", {
  2827. className: "U_MD_D_KO",
  2828. "onmousedown": U.UF.C.closure(function (obj) {
  2829. //防止拖动图标即打开了桌面应用
  2830. U.MD.D.click(this, obj);
  2831. }, [_guzmsStudentDeskIconInfo[i]]),
  2832. "onclick": U.UF.C.closure(function (obj) {
  2833. //防止拖动图标即打开了桌面应用
  2834. U.MD.D.click(this, obj);
  2835. }, [_guzmsStudentDeskIconInfo[i]])
  2836. }, _frag); //
  2837. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2838. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2839. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2840. }
  2841. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2842. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2843. _content = $$("div", {
  2844. className: "U_MD_D_KO",
  2845. "onmousedown": U.UF.C.closure(function (obj) {
  2846. //防止拖动图标即打开了桌面应用
  2847. U.MD.D.click(this, obj);
  2848. }, [_hkStudentDeskIconInfo[i]]),
  2849. "onclick": U.UF.C.closure(function (obj) {
  2850. //防止拖动图标即打开了桌面应用
  2851. U.MD.D.click(this, obj);
  2852. }, [_hkStudentDeskIconInfo[i]])
  2853. }, _frag); //
  2854. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2855. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2856. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2857. }
  2858. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2859. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2860. _content = $$("div", {
  2861. className: "U_MD_D_KO",
  2862. "onmousedown": U.UF.C.closure(function (obj) {
  2863. //防止拖动图标即打开了桌面应用
  2864. U.MD.D.click(this, obj);
  2865. }, [_hkaceStudentDeskIconInfo[i]]),
  2866. "onclick": U.UF.C.closure(function (obj) {
  2867. //防止拖动图标即打开了桌面应用
  2868. U.MD.D.click(this, obj);
  2869. }, [_hkaceStudentDeskIconInfo[i]])
  2870. }, _frag); //
  2871. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2872. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2873. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2874. }
  2875. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2876. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2877. _content = $$("div", {
  2878. className: "U_MD_D_KO",
  2879. "onmousedown": U.UF.C.closure(function (obj) {
  2880. //防止拖动图标即打开了桌面应用
  2881. U.MD.D.click(this, obj);
  2882. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2883. "onclick": U.UF.C.closure(function (obj) {
  2884. //防止拖动图标即打开了桌面应用
  2885. U.MD.D.click(this, obj);
  2886. }, [_BSDNSstudentDesktopIconInfo[i]])
  2887. }, _frag); //
  2888. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2889. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2890. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2891. }
  2892. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2893. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2894. _content = $$("div", {
  2895. className: "U_MD_D_KO",
  2896. "onmousedown": U.UF.C.closure(function (obj) {
  2897. //防止拖动图标即打开了桌面应用
  2898. U.MD.D.click(this, obj);
  2899. }, [_cocobizStudentDeskIconInfo[i]]),
  2900. "onclick": U.UF.C.closure(function (obj) {
  2901. //防止拖动图标即打开了桌面应用
  2902. U.MD.D.click(this, obj);
  2903. }, [_cocobizStudentDeskIconInfo[i]])
  2904. }, _frag); //
  2905. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2906. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2907. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2908. }
  2909. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2910. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2911. _content = $$("div", {
  2912. className: "U_MD_D_KO",
  2913. "onmousedown": U.UF.C.closure(function (obj) {
  2914. //防止拖动图标即打开了桌面应用
  2915. U.MD.D.click(this, obj);
  2916. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2917. "onclick": U.UF.C.closure(function (obj) {
  2918. //防止拖动图标即打开了桌面应用
  2919. U.MD.D.click(this, obj);
  2920. }, [_xxzjkyStudentDeskIconInfo[i]])
  2921. }, _frag); //
  2922. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2923. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2924. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2925. }
  2926. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2927. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2928. _content = $$("div", {
  2929. className: "U_MD_D_KO",
  2930. "onmousedown": U.UF.C.closure(function (obj) {
  2931. //防止拖动图标即打开了桌面应用
  2932. U.MD.D.click(this, obj);
  2933. }, [_studentDesktopIconInfo[i]]),
  2934. "onclick": U.UF.C.closure(function (obj) {
  2935. //防止拖动图标即打开了桌面应用
  2936. U.MD.D.click(this, obj);
  2937. }, [_studentDesktopIconInfo[i]])
  2938. }, _frag); //
  2939. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2940. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2941. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2942. }
  2943. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2944. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2945. _content = $$("div", {
  2946. className: "U_MD_D_KO",
  2947. "onmousedown": U.UF.C.closure(function (obj) {
  2948. //防止拖动图标即打开了桌面应用
  2949. U.MD.D.click(this, obj);
  2950. }, [_tcStudentDeskIconInfo[i]]),
  2951. "onclick": U.UF.C.closure(function (obj) {
  2952. //防止拖动图标即打开了桌面应用
  2953. U.MD.D.click(this, obj);
  2954. }, [_tcStudentDeskIconInfo[i]])
  2955. }, _frag); //
  2956. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2957. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2958. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2959. }
  2960. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2961. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2962. _content = $$("div", {
  2963. className: "U_MD_D_KO",
  2964. "onmousedown": U.UF.C.closure(function (obj) {
  2965. //防止拖动图标即打开了桌面应用
  2966. U.MD.D.click(this, obj);
  2967. }, [_szscStudentDeskIconInfo[i]]),
  2968. "onclick": U.UF.C.closure(function (obj) {
  2969. //防止拖动图标即打开了桌面应用
  2970. U.MD.D.click(this, obj);
  2971. }, [_szscStudentDeskIconInfo[i]])
  2972. }, _frag); //
  2973. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2974. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2975. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2976. }
  2977. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2978. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  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. }, [_studentDesktopIconInfo3[i]]),
  2985. "onclick": U.UF.C.closure(function (obj) {
  2986. //防止拖动图标即打开了桌面应用
  2987. U.MD.D.click(this, obj);
  2988. }, [_studentDesktopIconInfo3[i]])
  2989. }, _frag); //
  2990. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2991. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2992. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2993. }
  2994. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2995. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2996. _content = $$("div", {
  2997. className: "U_MD_D_KO",
  2998. "onmousedown": U.UF.C.closure(function (obj) {
  2999. //防止拖动图标即打开了桌面应用
  3000. U.MD.D.click(this, obj);
  3001. }, [_studentDesktopIconInfo2[i]]),
  3002. "onclick": U.UF.C.closure(function (obj) {
  3003. //防止拖动图标即打开了桌面应用
  3004. U.MD.D.click(this, obj);
  3005. }, [_studentDesktopIconInfo2[i]])
  3006. }, _frag); //
  3007. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3008. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  3009. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  3010. }
  3011. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  3012. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  3013. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  3014. continue
  3015. }
  3016. _content = $$("div", {
  3017. className: "U_MD_D_KO",
  3018. "onmousedown": U.UF.C.closure(function (obj) {
  3019. //防止拖动图标即打开了桌面应用
  3020. U.MD.D.click(this, obj);
  3021. }, [_wanketeacherDesktopIconInfo[i]]),
  3022. "onclick": U.UF.C.closure(function (obj) {
  3023. //防止拖动图标即打开了桌面应用
  3024. U.MD.D.click(this, obj);
  3025. }, [_wanketeacherDesktopIconInfo[i]])
  3026. }, _frag); //
  3027. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3028. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  3029. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  3030. }
  3031. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  3032. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  3033. _content = $$("div", {
  3034. className: "U_MD_D_KO",
  3035. "onmousedown": U.UF.C.closure(function (obj) {
  3036. //防止拖动图标即打开了桌面应用
  3037. U.MD.D.click(this, obj);
  3038. }, [_wankeAdminDesktopIconInfo[i]]),
  3039. "onclick": U.UF.C.closure(function (obj) {
  3040. //防止拖动图标即打开了桌面应用
  3041. U.MD.D.click(this, obj);
  3042. }, [_wankeAdminDesktopIconInfo[i]])
  3043. }, _frag); //
  3044. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3045. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  3046. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  3047. }
  3048. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  3049. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  3050. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3051. continue
  3052. }
  3053. _content = $$("div", {
  3054. className: "U_MD_D_KO",
  3055. "onmousedown": U.UF.C.closure(function (obj) {
  3056. //防止拖动图标即打开了桌面应用
  3057. U.MD.D.click(this, obj);
  3058. }, [_scnuaiTeacherDeskIconInfo[i]]),
  3059. "onclick": U.UF.C.closure(function (obj) {
  3060. //防止拖动图标即打开了桌面应用
  3061. U.MD.D.click(this, obj);
  3062. }, [_scnuaiTeacherDeskIconInfo[i]])
  3063. }, _frag); //
  3064. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3065. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3066. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3067. }
  3068. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  3069. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  3070. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3071. continue
  3072. }
  3073. _content = $$("div", {
  3074. className: "U_MD_D_KO",
  3075. "onmousedown": U.UF.C.closure(function (obj) {
  3076. //防止拖动图标即打开了桌面应用
  3077. U.MD.D.click(this, obj);
  3078. }, [_BSDNSteacherDesktopIconInfo[i]]),
  3079. "onclick": U.UF.C.closure(function (obj) {
  3080. //防止拖动图标即打开了桌面应用
  3081. U.MD.D.click(this, obj);
  3082. }, [_BSDNSteacherDesktopIconInfo[i]])
  3083. }, _frag); //
  3084. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3085. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  3086. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  3087. }
  3088. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  3089. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  3090. _content = $$("div", {
  3091. className: "U_MD_D_KO",
  3092. "onmousedown": U.UF.C.closure(function (obj) {
  3093. //防止拖动图标即打开了桌面应用
  3094. U.MD.D.click(this, obj);
  3095. }, [_scnuaiAdminDeskIconInfo[i]]),
  3096. "onclick": U.UF.C.closure(function (obj) {
  3097. //防止拖动图标即打开了桌面应用
  3098. U.MD.D.click(this, obj);
  3099. }, [_scnuaiAdminDeskIconInfo[i]])
  3100. }, _frag); //
  3101. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3102. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3103. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3104. }
  3105. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3106. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3107. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3108. continue
  3109. }
  3110. _content = $$("div", {
  3111. className: "U_MD_D_KO",
  3112. "onmousedown": U.UF.C.closure(function (obj) {
  3113. //防止拖动图标即打开了桌面应用
  3114. U.MD.D.click(this, obj);
  3115. }, [_jccssylTeacherDeskIconInfo[i]]),
  3116. "onclick": U.UF.C.closure(function (obj) {
  3117. //防止拖动图标即打开了桌面应用
  3118. U.MD.D.click(this, obj);
  3119. }, [_jccssylTeacherDeskIconInfo[i]])
  3120. }, _frag); //
  3121. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3122. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3123. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3124. }
  3125. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3126. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3127. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3128. continue
  3129. }
  3130. _content = $$("div", {
  3131. className: "U_MD_D_KO",
  3132. "onmousedown": U.UF.C.closure(function (obj) {
  3133. //防止拖动图标即打开了桌面应用
  3134. U.MD.D.click(this, obj);
  3135. }, [_caleTeacherDeskIconInfo[i]]),
  3136. "onclick": U.UF.C.closure(function (obj) {
  3137. //防止拖动图标即打开了桌面应用
  3138. U.MD.D.click(this, obj);
  3139. }, [_caleTeacherDeskIconInfo[i]])
  3140. }, _frag); //
  3141. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3142. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3143. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3144. }
  3145. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3146. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3147. _content = $$("div", {
  3148. className: "U_MD_D_KO",
  3149. "onmousedown": U.UF.C.closure(function (obj) {
  3150. //防止拖动图标即打开了桌面应用
  3151. U.MD.D.click(this, obj);
  3152. }, [_tpcOrganizerDeskIconInfo[i]]),
  3153. "onclick": U.UF.C.closure(function (obj) {
  3154. //防止拖动图标即打开了桌面应用
  3155. U.MD.D.click(this, obj);
  3156. }, [_tpcOrganizerDeskIconInfo[i]])
  3157. }, _frag); //
  3158. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3159. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3160. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3161. }
  3162. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3163. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3164. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3165. continue
  3166. }
  3167. _content = $$("div", {
  3168. className: "U_MD_D_KO",
  3169. "onmousedown": U.UF.C.closure(function (obj) {
  3170. //防止拖动图标即打开了桌面应用
  3171. U.MD.D.click(this, obj);
  3172. }, [_tpcTeacherDeskIconInfo[i]]),
  3173. "onclick": U.UF.C.closure(function (obj) {
  3174. //防止拖动图标即打开了桌面应用
  3175. U.MD.D.click(this, obj);
  3176. }, [_tpcTeacherDeskIconInfo[i]])
  3177. }, _frag); //
  3178. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3179. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3180. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3181. }
  3182. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3183. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3184. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3185. continue
  3186. }
  3187. _content = $$("div", {
  3188. className: "U_MD_D_KO",
  3189. "onmousedown": U.UF.C.closure(function (obj) {
  3190. //防止拖动图标即打开了桌面应用
  3191. U.MD.D.click(this, obj);
  3192. }, [_teacherDesktopIconInfo2[i]]),
  3193. "onclick": U.UF.C.closure(function (obj) {
  3194. //防止拖动图标即打开了桌面应用
  3195. U.MD.D.click(this, obj);
  3196. }, [_teacherDesktopIconInfo2[i]])
  3197. }, _frag); //
  3198. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3199. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3200. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3201. }
  3202. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3203. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3204. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3205. continue
  3206. }
  3207. _content = $$("div", {
  3208. className: "U_MD_D_KO",
  3209. "onmousedown": U.UF.C.closure(function (obj) {
  3210. //防止拖动图标即打开了桌面应用
  3211. U.MD.D.click(this, obj);
  3212. }, [_thuioeTeacherDeskIconInfo[i]]),
  3213. "onclick": U.UF.C.closure(function (obj) {
  3214. //防止拖动图标即打开了桌面应用
  3215. U.MD.D.click(this, obj);
  3216. }, [_thuioeTeacherDeskIconInfo[i]])
  3217. }, _frag); //
  3218. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3219. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3220. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3221. }
  3222. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3223. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3224. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3225. continue
  3226. }
  3227. _content = $$("div", {
  3228. className: "U_MD_D_KO",
  3229. "onmousedown": U.UF.C.closure(function (obj) {
  3230. //防止拖动图标即打开了桌面应用
  3231. U.MD.D.click(this, obj);
  3232. }, [_lotechTeacherDeskIconInfo[i]]),
  3233. "onclick": U.UF.C.closure(function (obj) {
  3234. //防止拖动图标即打开了桌面应用
  3235. U.MD.D.click(this, obj);
  3236. }, [_lotechTeacherDeskIconInfo[i]])
  3237. }, _frag); //
  3238. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3239. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3240. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3241. }//
  3242. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3243. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3244. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3245. continue
  3246. }
  3247. _content = $$("div", {
  3248. className: "U_MD_D_KO",
  3249. "onmousedown": U.UF.C.closure(function (obj) {
  3250. //防止拖动图标即打开了桌面应用
  3251. U.MD.D.click(this, obj);
  3252. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3253. "onclick": U.UF.C.closure(function (obj) {
  3254. //防止拖动图标即打开了桌面应用
  3255. U.MD.D.click(this, obj);
  3256. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3257. }, _frag); //
  3258. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3259. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3260. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3261. }
  3262. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3263. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3264. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3265. continue
  3266. }
  3267. _content = $$("div", {
  3268. className: "U_MD_D_KO",
  3269. "onmousedown": U.UF.C.closure(function (obj) {
  3270. //防止拖动图标即打开了桌面应用
  3271. U.MD.D.click(this, obj);
  3272. }, [_siesTeacherDeskIconInfo[i]]),
  3273. "onclick": U.UF.C.closure(function (obj) {
  3274. //防止拖动图标即打开了桌面应用
  3275. U.MD.D.click(this, obj);
  3276. }, [_siesTeacherDeskIconInfo[i]])
  3277. }, _frag); //
  3278. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3279. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3280. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3281. }
  3282. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3283. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3284. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3285. continue
  3286. }
  3287. _content = $$("div", {
  3288. className: "U_MD_D_KO",
  3289. "onmousedown": U.UF.C.closure(function (obj) {
  3290. //防止拖动图标即打开了桌面应用
  3291. U.MD.D.click(this, obj);
  3292. }, [_guzmsTeacherDeskIconInfo[i]]),
  3293. "onclick": U.UF.C.closure(function (obj) {
  3294. //防止拖动图标即打开了桌面应用
  3295. U.MD.D.click(this, obj);
  3296. }, [_guzmsTeacherDeskIconInfo[i]])
  3297. }, _frag); //
  3298. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3299. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3300. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3301. }
  3302. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3303. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3304. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3305. continue
  3306. }
  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. }, [_longhuaTeacherDeskIconInfo[i]]),
  3313. "onclick": U.UF.C.closure(function (obj) {
  3314. //防止拖动图标即打开了桌面应用
  3315. U.MD.D.click(this, obj);
  3316. }, [_longhuaTeacherDeskIconInfo[i]])
  3317. }, _frag); //
  3318. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3319. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3320. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3321. }
  3322. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3323. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3324. if(_role === 0 && _ytyTeacherDeskIconInfo[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. }, [_ytyTeacherDeskIconInfo[i]]),
  3333. "onclick": U.UF.C.closure(function (obj) {
  3334. //防止拖动图标即打开了桌面应用
  3335. U.MD.D.click(this, obj);
  3336. }, [_ytyTeacherDeskIconInfo[i]])
  3337. }, _frag); //
  3338. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3339. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3340. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3341. }
  3342. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3343. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3344. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3345. continue
  3346. }
  3347. _content = $$("div", {
  3348. className: "U_MD_D_KO",
  3349. "onmousedown": U.UF.C.closure(function (obj) {
  3350. //防止拖动图标即打开了桌面应用
  3351. U.MD.D.click(this, obj);
  3352. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3353. "onclick": U.UF.C.closure(function (obj) {
  3354. //防止拖动图标即打开了桌面应用
  3355. U.MD.D.click(this, obj);
  3356. }, [_yunhaiTeacherDeskIconInfo[i]])
  3357. }, _frag); //
  3358. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3359. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3360. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3361. } //_hkStudentDeskIconInfo
  3362. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3363. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3364. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3365. continue
  3366. }
  3367. _content = $$("div", {
  3368. className: "U_MD_D_KO",
  3369. "onmousedown": U.UF.C.closure(function (obj) {
  3370. //防止拖动图标即打开了桌面应用
  3371. U.MD.D.click(this, obj);
  3372. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3373. "onclick": U.UF.C.closure(function (obj) {
  3374. //防止拖动图标即打开了桌面应用
  3375. U.MD.D.click(this, obj);
  3376. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3377. }, _frag); //
  3378. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3379. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3380. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3381. }
  3382. } else if ((_type == 1 || _type == 4) && (_oid == "91796dfb-8791-11ef-9b30-005056b86db5")) {
  3383. for (i = 0; i < _ricohTeacherDeskIconInfo.length; i++) {
  3384. if(_role === 0 && _ricohTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3385. continue
  3386. }
  3387. _content = $$("div", {
  3388. className: "U_MD_D_KO",
  3389. "onmousedown": U.UF.C.closure(function (obj) {
  3390. //防止拖动图标即打开了桌面应用
  3391. U.MD.D.click(this, obj);
  3392. }, [_ricohTeacherDeskIconInfo[i]]),
  3393. "onclick": U.UF.C.closure(function (obj) {
  3394. //防止拖动图标即打开了桌面应用
  3395. U.MD.D.click(this, obj);
  3396. }, [_ricohTeacherDeskIconInfo[i]])
  3397. }, _frag); //
  3398. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3399. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ricohTeacherDeskIconInfo[i].style }, _iconcontent);
  3400. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ricohTeacherDeskIconInfo[i].Name }, _iconcontent);
  3401. }
  3402. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3403. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3404. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3405. continue
  3406. }
  3407. _content = $$("div", {
  3408. className: "U_MD_D_KO",
  3409. "onmousedown": U.UF.C.closure(function (obj) {
  3410. //防止拖动图标即打开了桌面应用
  3411. U.MD.D.click(this, obj);
  3412. }, [_hkTeacherDeskIconInfo[i]]),
  3413. "onclick": U.UF.C.closure(function (obj) {
  3414. //防止拖动图标即打开了桌面应用
  3415. U.MD.D.click(this, obj);
  3416. }, [_hkTeacherDeskIconInfo[i]])
  3417. }, _frag); //
  3418. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3419. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3420. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3421. }
  3422. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3423. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3424. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3425. continue
  3426. }
  3427. _content = $$("div", {
  3428. className: "U_MD_D_KO",
  3429. "onmousedown": U.UF.C.closure(function (obj) {
  3430. //防止拖动图标即打开了桌面应用
  3431. U.MD.D.click(this, obj);
  3432. }, [_hkaceTeacherDeskIconInfo[i]]),
  3433. "onclick": U.UF.C.closure(function (obj) {
  3434. //防止拖动图标即打开了桌面应用
  3435. U.MD.D.click(this, obj);
  3436. }, [_hkaceTeacherDeskIconInfo[i]])
  3437. }, _frag); //
  3438. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3439. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3440. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3441. }
  3442. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3443. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3444. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3445. continue
  3446. }
  3447. _content = $$("div", {
  3448. className: "U_MD_D_KO",
  3449. "onmousedown": U.UF.C.closure(function (obj) {
  3450. //防止拖动图标即打开了桌面应用
  3451. U.MD.D.click(this, obj);
  3452. }, [_cocobizTeacherDeskIconInfo[i]]),
  3453. "onclick": U.UF.C.closure(function (obj) {
  3454. //防止拖动图标即打开了桌面应用
  3455. U.MD.D.click(this, obj);
  3456. }, [_cocobizTeacherDeskIconInfo[i]])
  3457. }, _frag); //
  3458. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3459. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3460. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3461. }
  3462. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3463. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3464. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3465. continue
  3466. }
  3467. _content = $$("div", {
  3468. className: "U_MD_D_KO",
  3469. "onmousedown": U.UF.C.closure(function (obj) {
  3470. //防止拖动图标即打开了桌面应用
  3471. U.MD.D.click(this, obj);
  3472. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3473. "onclick": U.UF.C.closure(function (obj) {
  3474. //防止拖动图标即打开了桌面应用
  3475. U.MD.D.click(this, obj);
  3476. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3477. }, _frag); //
  3478. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3479. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3480. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3481. }
  3482. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3483. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3484. _content = $$("div", {
  3485. className: "U_MD_D_KO",
  3486. "onmousedown": U.UF.C.closure(function (obj) {
  3487. //防止拖动图标即打开了桌面应用
  3488. U.MD.D.click(this, obj);
  3489. }, [_gdjgAdminDeskIconInfo[i]]),
  3490. "onclick": U.UF.C.closure(function (obj) {
  3491. //防止拖动图标即打开了桌面应用
  3492. U.MD.D.click(this, obj);
  3493. }, [_gdjgAdminDeskIconInfo[i]])
  3494. }, _frag); //
  3495. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3496. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3497. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3498. }
  3499. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3500. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3501. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3502. continue
  3503. }
  3504. _content = $$("div", {
  3505. className: "U_MD_D_KO",
  3506. "onmousedown": U.UF.C.closure(function (obj) {
  3507. //防止拖动图标即打开了桌面应用
  3508. U.MD.D.click(this, obj);
  3509. }, [_gdjgTeacherDeskIconInfo[i]]),
  3510. "onclick": U.UF.C.closure(function (obj) {
  3511. //防止拖动图标即打开了桌面应用
  3512. U.MD.D.click(this, obj);
  3513. }, [_gdjgTeacherDeskIconInfo[i]])
  3514. }, _frag); //
  3515. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3516. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3517. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3518. }
  3519. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3520. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3521. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3522. continue
  3523. }
  3524. _content = $$("div", {
  3525. className: "U_MD_D_KO",
  3526. "onmousedown": U.UF.C.closure(function (obj) {
  3527. //防止拖动图标即打开了桌面应用
  3528. U.MD.D.click(this, obj);
  3529. }, [_szherTeacherDeskIconInfo[i]]),
  3530. "onclick": U.UF.C.closure(function (obj) {
  3531. //防止拖动图标即打开了桌面应用
  3532. U.MD.D.click(this, obj);
  3533. }, [_szherTeacherDeskIconInfo[i]])
  3534. }, _frag); //
  3535. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3536. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3537. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3538. }
  3539. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3540. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3541. _content = $$("div", {
  3542. className: "U_MD_D_KO",
  3543. "onmousedown": U.UF.C.closure(function (obj) {
  3544. //防止拖动图标即打开了桌面应用
  3545. U.MD.D.click(this, obj);
  3546. }, [_heyuannAdminDeskIconInfo[i]]),
  3547. "onclick": U.UF.C.closure(function (obj) {
  3548. //防止拖动图标即打开了桌面应用
  3549. U.MD.D.click(this, obj);
  3550. }, [_heyuannAdminDeskIconInfo[i]])
  3551. }, _frag); //
  3552. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3553. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3554. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3555. }
  3556. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3557. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3558. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3559. continue
  3560. }
  3561. _content = $$("div", {
  3562. className: "U_MD_D_KO",
  3563. "onmousedown": U.UF.C.closure(function (obj) {
  3564. //防止拖动图标即打开了桌面应用
  3565. U.MD.D.click(this, obj);
  3566. }, [_heyuanTeacherDeskIconInfo[i]]),
  3567. "onclick": U.UF.C.closure(function (obj) {
  3568. //防止拖动图标即打开了桌面应用
  3569. U.MD.D.click(this, obj);
  3570. }, [_heyuanTeacherDeskIconInfo[i]])
  3571. }, _frag); //
  3572. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3573. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3574. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3575. } //
  3576. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3577. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3578. _content = $$("div", {
  3579. className: "U_MD_D_KO",
  3580. "onmousedown": U.UF.C.closure(function (obj) {
  3581. //防止拖动图标即打开了桌面应用
  3582. U.MD.D.click(this, obj);
  3583. }, [_dseiAdminDeskIconInfo[i]]),
  3584. "onclick": U.UF.C.closure(function (obj) {
  3585. //防止拖动图标即打开了桌面应用
  3586. U.MD.D.click(this, obj);
  3587. }, [_dseiAdminDeskIconInfo[i]])
  3588. }, _frag); //
  3589. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3590. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3591. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3592. }
  3593. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3594. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3595. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3596. continue
  3597. }
  3598. _content = $$("div", {
  3599. className: "U_MD_D_KO",
  3600. "onmousedown": U.UF.C.closure(function (obj) {
  3601. //防止拖动图标即打开了桌面应用
  3602. U.MD.D.click(this, obj);
  3603. }, [_dseiTeacherDeskIconInfo[i]]),
  3604. "onclick": U.UF.C.closure(function (obj) {
  3605. //防止拖动图标即打开了桌面应用
  3606. U.MD.D.click(this, obj);
  3607. }, [_dseiTeacherDeskIconInfo[i]])
  3608. }, _frag); //
  3609. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3610. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3611. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3612. } //
  3613. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3614. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3615. _content = $$("div", {
  3616. className: "U_MD_D_KO",
  3617. "onmousedown": U.UF.C.closure(function (obj) {
  3618. //防止拖动图标即打开了桌面应用
  3619. U.MD.D.click(this, obj);
  3620. }, [_chjyjAdminDeskIconInfo[i]]),
  3621. "onclick": U.UF.C.closure(function (obj) {
  3622. //防止拖动图标即打开了桌面应用
  3623. U.MD.D.click(this, obj);
  3624. }, [_chjyjAdminDeskIconInfo[i]])
  3625. }, _frag); //
  3626. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3627. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3628. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3629. }//
  3630. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3631. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3632. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3633. continue
  3634. }
  3635. _content = $$("div", {
  3636. className: "U_MD_D_KO",
  3637. "onmousedown": U.UF.C.closure(function (obj) {
  3638. //防止拖动图标即打开了桌面应用
  3639. U.MD.D.click(this, obj);
  3640. }, [_chjyjTeacherDeskIconInfo[i]]),
  3641. "onclick": U.UF.C.closure(function (obj) {
  3642. //防止拖动图标即打开了桌面应用
  3643. U.MD.D.click(this, obj);
  3644. }, [_chjyjTeacherDeskIconInfo[i]])
  3645. }, _frag); //
  3646. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3647. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3648. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3649. }
  3650. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3651. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  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. }, [_szjkyAdminDeskIconInfo[i]]),
  3658. "onclick": U.UF.C.closure(function (obj) {
  3659. //防止拖动图标即打开了桌面应用
  3660. U.MD.D.click(this, obj);
  3661. }, [_szjkyAdminDeskIconInfo[i]])
  3662. }, _frag); //
  3663. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3664. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3665. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3666. }//
  3667. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3668. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3669. if(_role === 0 && _szjkyTeacherDeskIconInfo[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. }, [_szjkyTeacherDeskIconInfo[i]]),
  3678. "onclick": U.UF.C.closure(function (obj) {
  3679. //防止拖动图标即打开了桌面应用
  3680. U.MD.D.click(this, obj);
  3681. }, [_szjkyTeacherDeskIconInfo[i]])
  3682. }, _frag); //
  3683. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3684. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3685. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3686. }
  3687. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3688. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3689. _content = $$("div", {
  3690. className: "U_MD_D_KO",
  3691. "onmousedown": U.UF.C.closure(function (obj) {
  3692. //防止拖动图标即打开了桌面应用
  3693. U.MD.D.click(this, obj);
  3694. }, [_x020201AdminDeskIconInfo[i]]),
  3695. "onclick": U.UF.C.closure(function (obj) {
  3696. //防止拖动图标即打开了桌面应用
  3697. U.MD.D.click(this, obj);
  3698. }, [_x020201AdminDeskIconInfo[i]])
  3699. }, _frag); //
  3700. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3701. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3702. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3703. }//
  3704. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3705. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3706. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3707. continue
  3708. }
  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. }, [_x020201TeacherDeskIconInfo[i]]),
  3715. "onclick": U.UF.C.closure(function (obj) {
  3716. //防止拖动图标即打开了桌面应用
  3717. U.MD.D.click(this, obj);
  3718. }, [_x020201TeacherDeskIconInfo[i]])
  3719. }, _frag); //
  3720. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3721. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3722. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3723. }
  3724. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3725. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3726. _content = $$("div", {
  3727. className: "U_MD_D_KO",
  3728. "onmousedown": U.UF.C.closure(function (obj) {
  3729. //防止拖动图标即打开了桌面应用
  3730. U.MD.D.click(this, obj);
  3731. }, [_SCNUETAdminDeskIconInfo[i]]),
  3732. "onclick": U.UF.C.closure(function (obj) {
  3733. //防止拖动图标即打开了桌面应用
  3734. U.MD.D.click(this, obj);
  3735. }, [_SCNUETAdminDeskIconInfo[i]])
  3736. }, _frag); //
  3737. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3738. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3739. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3740. }//
  3741. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3742. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3743. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3744. continue
  3745. }
  3746. _content = $$("div", {
  3747. className: "U_MD_D_KO",
  3748. "onmousedown": U.UF.C.closure(function (obj) {
  3749. //防止拖动图标即打开了桌面应用
  3750. U.MD.D.click(this, obj);
  3751. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3752. "onclick": U.UF.C.closure(function (obj) {
  3753. //防止拖动图标即打开了桌面应用
  3754. U.MD.D.click(this, obj);
  3755. }, [_SCNUETTeacherDeskIconInfo[i]])
  3756. }, _frag); //
  3757. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3758. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3759. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3760. }
  3761. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3762. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3763. _content = $$("div", {
  3764. className: "U_MD_D_KO",
  3765. "onmousedown": U.UF.C.closure(function (obj) {
  3766. //防止拖动图标即打开了桌面应用
  3767. U.MD.D.click(this, obj);
  3768. }, [_futianAdminDeskIconInfo[i]]),
  3769. "onclick": U.UF.C.closure(function (obj) {
  3770. //防止拖动图标即打开了桌面应用
  3771. U.MD.D.click(this, obj);
  3772. }, [_futianAdminDeskIconInfo[i]])
  3773. }, _frag); //
  3774. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3775. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3776. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3777. }
  3778. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3779. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3780. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3781. continue
  3782. }
  3783. _content = $$("div", {
  3784. className: "U_MD_D_KO",
  3785. "onmousedown": U.UF.C.closure(function (obj) {
  3786. //防止拖动图标即打开了桌面应用
  3787. U.MD.D.click(this, obj);
  3788. }, [_futianTeacherDeskIconInfo[i]]),
  3789. "onclick": U.UF.C.closure(function (obj) {
  3790. //防止拖动图标即打开了桌面应用
  3791. U.MD.D.click(this, obj);
  3792. }, [_futianTeacherDeskIconInfo[i]])
  3793. }, _frag); //
  3794. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3795. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3796. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3797. }
  3798. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3799. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3800. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3801. continue
  3802. }
  3803. _content = $$("div", {
  3804. className: "U_MD_D_KO",
  3805. "onmousedown": U.UF.C.closure(function (obj) {
  3806. //防止拖动图标即打开了桌面应用
  3807. U.MD.D.click(this, obj);
  3808. }, [_MingdeTeacherDeskIcon[i]]),
  3809. "onclick": U.UF.C.closure(function (obj) {
  3810. //防止拖动图标即打开了桌面应用
  3811. U.MD.D.click(this, obj);
  3812. }, [_MingdeTeacherDeskIcon[i]])
  3813. }, _frag); //
  3814. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3815. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3816. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3817. }
  3818. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3819. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3820. _content = $$("div", {
  3821. className: "U_MD_D_KO",
  3822. "onmousedown": U.UF.C.closure(function (obj) {
  3823. //防止拖动图标即打开了桌面应用
  3824. U.MD.D.click(this, obj);
  3825. }, [_lhsAdminDesktopIconInfo[i]]),
  3826. "onclick": U.UF.C.closure(function (obj) {
  3827. //防止拖动图标即打开了桌面应用
  3828. U.MD.D.click(this, obj);
  3829. }, [_lhsAdminDesktopIconInfo[i]])
  3830. }, _frag); //
  3831. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3832. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3833. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3834. }
  3835. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3836. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3837. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3838. continue
  3839. }
  3840. _content = $$("div", {
  3841. className: "U_MD_D_KO",
  3842. "onmousedown": U.UF.C.closure(function (obj) {
  3843. //防止拖动图标即打开了桌面应用
  3844. U.MD.D.click(this, obj);
  3845. }, [_lhsteacherDesktopIconInfo[i]]),
  3846. "onclick": U.UF.C.closure(function (obj) {
  3847. //防止拖动图标即打开了桌面应用
  3848. U.MD.D.click(this, obj);
  3849. }, [_lhsteacherDesktopIconInfo[i]])
  3850. }, _frag); //
  3851. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3852. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3853. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3854. }
  3855. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3856. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3857. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3858. continue
  3859. }
  3860. _content = $$("div", {
  3861. className: "U_MD_D_KO",
  3862. "onmousedown": U.UF.C.closure(function (obj) {
  3863. //防止拖动图标即打开了桌面应用
  3864. U.MD.D.click(this, obj);
  3865. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3866. "onclick": U.UF.C.closure(function (obj) {
  3867. //防止拖动图标即打开了桌面应用
  3868. U.MD.D.click(this, obj);
  3869. }, [_zhoujiateacherDesktopIconInfo[i]])
  3870. }, _frag); //
  3871. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3872. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3873. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3874. }
  3875. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3876. for (i = 0; i < _hanDeskIcon.length; i++) {
  3877. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3878. continue
  3879. }
  3880. _content = $$("div", {
  3881. className: "U_MD_D_KO",
  3882. "onmousedown": U.UF.C.closure(function (obj) {
  3883. //防止拖动图标即打开了桌面应用
  3884. U.MD.D.click(this, obj);
  3885. }, [_hanDeskIcon[i]]),
  3886. "onclick": U.UF.C.closure(function (obj) {
  3887. //防止拖动图标即打开了桌面应用
  3888. U.MD.D.click(this, obj);
  3889. }, [_hanDeskIcon[i]])
  3890. }, _frag); //
  3891. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3892. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3893. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3894. }
  3895. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3896. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3897. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3898. continue
  3899. }
  3900. _content = $$("div", {
  3901. className: "U_MD_D_KO",
  3902. "onmousedown": U.UF.C.closure(function (obj) {
  3903. //防止拖动图标即打开了桌面应用
  3904. U.MD.D.click(this, obj);
  3905. }, [_orgStemDeskIcon[i]]),
  3906. "onclick": U.UF.C.closure(function (obj) {
  3907. //防止拖动图标即打开了桌面应用
  3908. U.MD.D.click(this, obj);
  3909. }, [_orgStemDeskIcon[i]])
  3910. }, _frag); //
  3911. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3912. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3913. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3914. }
  3915. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3916. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3917. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3918. continue
  3919. }
  3920. _content = $$("div", {
  3921. className: "U_MD_D_KO",
  3922. "onmousedown": U.UF.C.closure(function (obj) {
  3923. //防止拖动图标即打开了桌面应用
  3924. U.MD.D.click(this, obj);
  3925. }, [_szulsDeskIcon[i]]),
  3926. "onclick": U.UF.C.closure(function (obj) {
  3927. //防止拖动图标即打开了桌面应用
  3928. U.MD.D.click(this, obj);
  3929. }, [_szulsDeskIcon[i]])
  3930. }, _frag); //
  3931. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3932. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3933. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3934. }
  3935. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3936. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3937. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3938. continue
  3939. }
  3940. _content = $$("div", {
  3941. className: "U_MD_D_KO",
  3942. "onmousedown": U.UF.C.closure(function (obj) {
  3943. //防止拖动图标即打开了桌面应用
  3944. U.MD.D.click(this, obj);
  3945. }, [_orgDesktopIconInfo[i]]),
  3946. "onclick": U.UF.C.closure(function (obj) {
  3947. //防止拖动图标即打开了桌面应用
  3948. U.MD.D.click(this, obj);
  3949. }, [_orgDesktopIconInfo[i]])
  3950. }, _frag); //
  3951. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3952. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3953. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3954. }
  3955. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3956. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3957. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3958. continue
  3959. }
  3960. _content = $$("div", {
  3961. className: "U_MD_D_KO",
  3962. "onmousedown": U.UF.C.closure(function (obj) {
  3963. //防止拖动图标即打开了桌面应用
  3964. U.MD.D.click(this, obj);
  3965. }, [_schoolDesktopIconInfo[i]]),
  3966. "onclick": U.UF.C.closure(function (obj) {
  3967. //防止拖动图标即打开了桌面应用
  3968. U.MD.D.click(this, obj);
  3969. }, [_schoolDesktopIconInfo[i]])
  3970. }, _frag); //
  3971. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3972. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3973. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3974. }
  3975. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3976. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3977. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3978. continue
  3979. }
  3980. _content = $$("div", {
  3981. className: "U_MD_D_KO",
  3982. "onmousedown": U.UF.C.closure(function (obj) {
  3983. //防止拖动图标即打开了桌面应用
  3984. U.MD.D.click(this, obj);
  3985. }, [_GMteacherDesktopIconInfo[i]]),
  3986. "onclick": U.UF.C.closure(function (obj) {
  3987. //防止拖动图标即打开了桌面应用
  3988. U.MD.D.click(this, obj);
  3989. }, [_GMteacherDesktopIconInfo[i]])
  3990. }, _frag); //
  3991. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3992. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3993. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3994. }
  3995. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3996. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3997. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3998. continue
  3999. }
  4000. _content = $$("div", {
  4001. className: "U_MD_D_KO",
  4002. "onmousedown": U.UF.C.closure(function (obj) {
  4003. //防止拖动图标即打开了桌面应用
  4004. U.MD.D.click(this, obj);
  4005. }, [_SONGteacherDesktopIconInfo[i]]),
  4006. "onclick": U.UF.C.closure(function (obj) {
  4007. //防止拖动图标即打开了桌面应用
  4008. U.MD.D.click(this, obj);
  4009. }, [_SONGteacherDesktopIconInfo[i]])
  4010. }, _frag); //
  4011. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4012. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  4013. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  4014. }
  4015. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4016. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  4017. _content = $$("div", {
  4018. className: "U_MD_D_KO",
  4019. "onmousedown": U.UF.C.closure(function (obj) {
  4020. //防止拖动图标即打开了桌面应用
  4021. U.MD.D.click(this, obj);
  4022. }, [_GMstudentDesktopIconInfo[i]]),
  4023. "onclick": U.UF.C.closure(function (obj) {
  4024. //防止拖动图标即打开了桌面应用
  4025. U.MD.D.click(this, obj);
  4026. }, [_GMstudentDesktopIconInfo[i]])
  4027. }, _frag); //
  4028. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4029. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  4030. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  4031. }
  4032. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  4033. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  4034. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4035. continue
  4036. }
  4037. _content = $$("div", {
  4038. className: "U_MD_D_KO",
  4039. "onmousedown": U.UF.C.closure(function (obj) {
  4040. //防止拖动图标即打开了桌面应用
  4041. U.MD.D.click(this, obj);
  4042. }, [_tcTeacherDeskIconInfo[i]]),
  4043. "onclick": U.UF.C.closure(function (obj) {
  4044. //防止拖动图标即打开了桌面应用
  4045. U.MD.D.click(this, obj);
  4046. }, [_tcTeacherDeskIconInfo[i]])
  4047. }, _frag); //
  4048. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4049. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  4050. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  4051. }
  4052. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  4053. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  4054. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4055. continue
  4056. }
  4057. _content = $$("div", {
  4058. className: "U_MD_D_KO",
  4059. "onmousedown": U.UF.C.closure(function (obj) {
  4060. //防止拖动图标即打开了桌面应用
  4061. U.MD.D.click(this, obj);
  4062. }, [_tcOrganizerDeskIconInfo[i]]),
  4063. "onclick": U.UF.C.closure(function (obj) {
  4064. //防止拖动图标即打开了桌面应用
  4065. U.MD.D.click(this, obj);
  4066. }, [_tcOrganizerDeskIconInfo[i]])
  4067. }, _frag); //
  4068. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4069. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  4070. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4071. }
  4072. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  4073. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  4074. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4075. continue
  4076. }
  4077. _content = $$("div", {
  4078. className: "U_MD_D_KO",
  4079. "onmousedown": U.UF.C.closure(function (obj) {
  4080. //防止拖动图标即打开了桌面应用
  4081. U.MD.D.click(this, obj);
  4082. }, [_szscTeacherDeskIconInfo[i]]),
  4083. "onclick": U.UF.C.closure(function (obj) {
  4084. //防止拖动图标即打开了桌面应用
  4085. U.MD.D.click(this, obj);
  4086. }, [_szscTeacherDeskIconInfo[i]])
  4087. }, _frag); //
  4088. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4089. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  4090. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  4091. }
  4092. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  4093. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  4094. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4095. continue
  4096. }
  4097. _content = $$("div", {
  4098. className: "U_MD_D_KO",
  4099. "onmousedown": U.UF.C.closure(function (obj) {
  4100. //防止拖动图标即打开了桌面应用
  4101. U.MD.D.click(this, obj);
  4102. }, [_szscOrganizerDeskIconInfo[i]]),
  4103. "onclick": U.UF.C.closure(function (obj) {
  4104. //防止拖动图标即打开了桌面应用
  4105. U.MD.D.click(this, obj);
  4106. }, [_szscOrganizerDeskIconInfo[i]])
  4107. }, _frag); //
  4108. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4109. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  4110. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4111. }
  4112. } else if ((_type == 1 || _type == 4) && _org == "7cc601a0-fafc-4116-a805-0adbacf7a38d") {
  4113. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  4114. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4115. continue
  4116. }
  4117. _content = $$("div", {
  4118. className: "U_MD_D_KO",
  4119. "onmousedown": U.UF.C.closure(function (obj) {
  4120. //防止拖动图标即打开了桌面应用
  4121. U.MD.D.click(this, obj);
  4122. }, [_nsfxTeacherDeskIconInfo[i]]),
  4123. "onclick": U.UF.C.closure(function (obj) {
  4124. //防止拖动图标即打开了桌面应用
  4125. U.MD.D.click(this, obj);
  4126. }, [_nsfxTeacherDeskIconInfo[i]])
  4127. }, _frag); //
  4128. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4129. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4130. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4131. }
  4132. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4133. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4134. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4135. continue
  4136. }
  4137. _content = $$("div", {
  4138. className: "U_MD_D_KO",
  4139. "onmousedown": U.UF.C.closure(function (obj) {
  4140. //防止拖动图标即打开了桌面应用
  4141. U.MD.D.click(this, obj);
  4142. }, [_stiaTeacherDeskIconInfo[i]]),
  4143. "onclick": U.UF.C.closure(function (obj) {
  4144. //防止拖动图标即打开了桌面应用
  4145. U.MD.D.click(this, obj);
  4146. }, [_stiaTeacherDeskIconInfo[i]])
  4147. }, _frag); //
  4148. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4149. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4150. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4151. }
  4152. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4153. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4154. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4155. continue
  4156. }
  4157. _content = $$("div", {
  4158. className: "U_MD_D_KO",
  4159. "onmousedown": U.UF.C.closure(function (obj) {
  4160. //防止拖动图标即打开了桌面应用
  4161. U.MD.D.click(this, obj);
  4162. }, [_szdjgTeacherDeskIconInfo[i]]),
  4163. "onclick": U.UF.C.closure(function (obj) {
  4164. //防止拖动图标即打开了桌面应用
  4165. U.MD.D.click(this, obj);
  4166. }, [_szdjgTeacherDeskIconInfo[i]])
  4167. }, _frag); //
  4168. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4169. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4170. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4171. }
  4172. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4173. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4174. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4175. continue
  4176. }
  4177. _content = $$("div", {
  4178. className: "U_MD_D_KO",
  4179. "onmousedown": U.UF.C.closure(function (obj) {
  4180. //防止拖动图标即打开了桌面应用
  4181. U.MD.D.click(this, obj);
  4182. }, [_x010607TeacherDeskIconInfo[i]]),
  4183. "onclick": U.UF.C.closure(function (obj) {
  4184. //防止拖动图标即打开了桌面应用
  4185. U.MD.D.click(this, obj);
  4186. }, [_x010607TeacherDeskIconInfo[i]])
  4187. }, _frag); //
  4188. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4189. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4190. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4191. }
  4192. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4193. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4194. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4195. continue
  4196. }
  4197. _content = $$("div", {
  4198. className: "U_MD_D_KO",
  4199. "onmousedown": U.UF.C.closure(function (obj) {
  4200. //防止拖动图标即打开了桌面应用
  4201. U.MD.D.click(this, obj);
  4202. }, [_xhlyTeacherDeskIconInfo[i]]),
  4203. "onclick": U.UF.C.closure(function (obj) {
  4204. //防止拖动图标即打开了桌面应用
  4205. U.MD.D.click(this, obj);
  4206. }, [_xhlyTeacherDeskIconInfo[i]])
  4207. }, _frag); //
  4208. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4209. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4210. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4211. }
  4212. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4213. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4214. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4215. continue
  4216. }
  4217. _content = $$("div", {
  4218. className: "U_MD_D_KO",
  4219. "onmousedown": U.UF.C.closure(function (obj) {
  4220. //防止拖动图标即打开了桌面应用
  4221. U.MD.D.click(this, obj);
  4222. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4223. "onclick": U.UF.C.closure(function (obj) {
  4224. //防止拖动图标即打开了桌面应用
  4225. U.MD.D.click(this, obj);
  4226. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4227. }, _frag); //
  4228. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4229. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4230. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4231. }
  4232. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4233. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4234. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4235. continue
  4236. }
  4237. _content = $$("div", {
  4238. className: "U_MD_D_KO",
  4239. "onmousedown": U.UF.C.closure(function (obj) {
  4240. //防止拖动图标即打开了桌面应用
  4241. U.MD.D.click(this, obj);
  4242. }, [_x010503TeacherDeskIconInfo[i]]),
  4243. "onclick": U.UF.C.closure(function (obj) {
  4244. //防止拖动图标即打开了桌面应用
  4245. U.MD.D.click(this, obj);
  4246. }, [_x010503TeacherDeskIconInfo[i]])
  4247. }, _frag); //
  4248. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4249. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4250. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4251. }
  4252. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4253. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4254. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4255. continue
  4256. }
  4257. _content = $$("div", {
  4258. className: "U_MD_D_KO",
  4259. "onmousedown": U.UF.C.closure(function (obj) {
  4260. //防止拖动图标即打开了桌面应用
  4261. U.MD.D.click(this, obj);
  4262. }, [_x010504TeacherDeskIconInfo[i]]),
  4263. "onclick": U.UF.C.closure(function (obj) {
  4264. //防止拖动图标即打开了桌面应用
  4265. U.MD.D.click(this, obj);
  4266. }, [_x010504TeacherDeskIconInfo[i]])
  4267. }, _frag); //
  4268. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4269. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4270. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4271. }
  4272. } else if ((_type == 1 || _type == 4) && _oid == "bc239322-ffb2-11ef-b508-005056924926") {
  4273. for (i = 0; i < _x010404TeacherDeskIconInfo.length; i++) {
  4274. if(_role === 0 && _x010404TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4275. continue
  4276. }
  4277. _content = $$("div", {
  4278. className: "U_MD_D_KO",
  4279. "onmousedown": U.UF.C.closure(function (obj) {
  4280. //防止拖动图标即打开了桌面应用
  4281. U.MD.D.click(this, obj);
  4282. }, [_x010404TeacherDeskIconInfo[i]]),
  4283. "onclick": U.UF.C.closure(function (obj) {
  4284. //防止拖动图标即打开了桌面应用
  4285. U.MD.D.click(this, obj);
  4286. }, [_x010404TeacherDeskIconInfo[i]])
  4287. }, _frag); //
  4288. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4289. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404TeacherDeskIconInfo[i].style }, _iconcontent);
  4290. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404TeacherDeskIconInfo[i].Name }, _iconcontent);
  4291. }
  4292. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4293. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4294. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4295. continue
  4296. }
  4297. _content = $$("div", {
  4298. className: "U_MD_D_KO",
  4299. "onmousedown": U.UF.C.closure(function (obj) {
  4300. //防止拖动图标即打开了桌面应用
  4301. U.MD.D.click(this, obj);
  4302. }, [_x010204TeacherDeskIconInfo[i]]),
  4303. "onclick": U.UF.C.closure(function (obj) {
  4304. //防止拖动图标即打开了桌面应用
  4305. U.MD.D.click(this, obj);
  4306. }, [_x010204TeacherDeskIconInfo[i]])
  4307. }, _frag); //
  4308. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4309. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4310. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4311. }
  4312. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4313. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4314. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4315. continue
  4316. }
  4317. _content = $$("div", {
  4318. className: "U_MD_D_KO",
  4319. "onmousedown": U.UF.C.closure(function (obj) {
  4320. //防止拖动图标即打开了桌面应用
  4321. U.MD.D.click(this, obj);
  4322. }, [_x320101TeacherDeskIconInfo[i]]),
  4323. "onclick": U.UF.C.closure(function (obj) {
  4324. //防止拖动图标即打开了桌面应用
  4325. U.MD.D.click(this, obj);
  4326. }, [_x320101TeacherDeskIconInfo[i]])
  4327. }, _frag); //
  4328. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4329. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4330. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4331. }
  4332. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4333. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4334. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4335. continue
  4336. }
  4337. _content = $$("div", {
  4338. className: "U_MD_D_KO",
  4339. "onmousedown": U.UF.C.closure(function (obj) {
  4340. //防止拖动图标即打开了桌面应用
  4341. U.MD.D.click(this, obj);
  4342. }, [_trailTeacherDeskIconInfo[i]]),
  4343. "onclick": U.UF.C.closure(function (obj) {
  4344. //防止拖动图标即打开了桌面应用
  4345. U.MD.D.click(this, obj);
  4346. }, [_trailTeacherDeskIconInfo[i]])
  4347. }, _frag); //
  4348. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4349. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4350. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4351. }
  4352. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4353. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4354. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4355. continue
  4356. }
  4357. _content = $$("div", {
  4358. className: "U_MD_D_KO",
  4359. "onmousedown": U.UF.C.closure(function (obj) {
  4360. //防止拖动图标即打开了桌面应用
  4361. U.MD.D.click(this, obj);
  4362. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4363. "onclick": U.UF.C.closure(function (obj) {
  4364. //防止拖动图标即打开了桌面应用
  4365. U.MD.D.click(this, obj);
  4366. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4367. }, _frag); //
  4368. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4369. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4370. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4371. }
  4372. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4373. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4374. if(_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4375. continue
  4376. }
  4377. _content = $$("div", {
  4378. className: "U_MD_D_KO",
  4379. "onmousedown": U.UF.C.closure(function (obj) {
  4380. //防止拖动图标即打开了桌面应用
  4381. U.MD.D.click(this, obj);
  4382. }, [_szsyTeacherDeskIconInfo[i]]),
  4383. "onclick": U.UF.C.closure(function (obj) {
  4384. //防止拖动图标即打开了桌面应用
  4385. U.MD.D.click(this, obj);
  4386. }, [_szsyTeacherDeskIconInfo[i]])
  4387. }, _frag); //
  4388. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4389. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4390. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4391. }
  4392. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4393. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4394. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4395. continue
  4396. }
  4397. _content = $$("div", {
  4398. className: "U_MD_D_KO",
  4399. "onmousedown": U.UF.C.closure(function (obj) {
  4400. //防止拖动图标即打开了桌面应用
  4401. U.MD.D.click(this, obj);
  4402. }, [_x010608TeacherDeskIconInfo[i]]),
  4403. "onclick": U.UF.C.closure(function (obj) {
  4404. //防止拖动图标即打开了桌面应用
  4405. U.MD.D.click(this, obj);
  4406. }, [_x010608TeacherDeskIconInfo[i]])
  4407. }, _frag); //
  4408. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4409. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4410. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4411. }
  4412. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4413. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4414. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4415. continue
  4416. }
  4417. _content = $$("div", {
  4418. className: "U_MD_D_KO",
  4419. "onmousedown": U.UF.C.closure(function (obj) {
  4420. //防止拖动图标即打开了桌面应用
  4421. U.MD.D.click(this, obj);
  4422. }, [_x010611TeacherDeskIconInfo[i]]),
  4423. "onclick": U.UF.C.closure(function (obj) {
  4424. //防止拖动图标即打开了桌面应用
  4425. U.MD.D.click(this, obj);
  4426. }, [_x010611TeacherDeskIconInfo[i]])
  4427. }, _frag); //
  4428. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4429. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4430. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4431. }
  4432. } else if ((_type == 1 || _type == 4) && _oid == "86fa8cd7-00c2-11f0-b508-005056924926") {
  4433. for (i = 0; i < _x010612TeacherDeskIconInfo.length; i++) {
  4434. if(_role === 0 && _x010612TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4435. continue
  4436. }
  4437. _content = $$("div", {
  4438. className: "U_MD_D_KO",
  4439. "onmousedown": U.UF.C.closure(function (obj) {
  4440. //防止拖动图标即打开了桌面应用
  4441. U.MD.D.click(this, obj);
  4442. }, [_x010612TeacherDeskIconInfo[i]]),
  4443. "onclick": U.UF.C.closure(function (obj) {
  4444. //防止拖动图标即打开了桌面应用
  4445. U.MD.D.click(this, obj);
  4446. }, [_x010612TeacherDeskIconInfo[i]])
  4447. }, _frag); //
  4448. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4449. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612TeacherDeskIconInfo[i].style }, _iconcontent);
  4450. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612TeacherDeskIconInfo[i].Name }, _iconcontent);
  4451. }
  4452. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4453. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4454. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4455. continue
  4456. }
  4457. _content = $$("div", {
  4458. className: "U_MD_D_KO",
  4459. "onmousedown": U.UF.C.closure(function (obj) {
  4460. //防止拖动图标即打开了桌面应用
  4461. U.MD.D.click(this, obj);
  4462. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4463. "onclick": U.UF.C.closure(function (obj) {
  4464. //防止拖动图标即打开了桌面应用
  4465. U.MD.D.click(this, obj);
  4466. }, [_tianyuanTeacherDeskIconInfo[i]])
  4467. }, _frag); //
  4468. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4469. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4470. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4471. }
  4472. } else {
  4473. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4474. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4475. continue
  4476. }
  4477. _content = $$("div", {
  4478. className: "U_MD_D_KO",
  4479. "onmousedown": U.UF.C.closure(function (obj) {
  4480. //防止拖动图标即打开了桌面应用
  4481. U.MD.D.click(this, obj);
  4482. }, [_teacherDesktopIconInfo[i]]),
  4483. "onclick": U.UF.C.closure(function (obj) {
  4484. //防止拖动图标即打开了桌面应用
  4485. U.MD.D.click(this, obj);
  4486. }, [_teacherDesktopIconInfo[i]])
  4487. }, _frag); //
  4488. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4489. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4490. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4491. }
  4492. }
  4493. } else {
  4494. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4495. _content = $$("div", {
  4496. className: "U_MD_D_KO",
  4497. style: { 'width': '124px', 'height': '145px' },
  4498. "onmousedown": U.UF.C.closure(function (obj) {
  4499. //防止拖动图标即打开了桌面应用
  4500. U.MD.D.click(this, obj);
  4501. }, [_easyDesktopIconInfo[i]]),
  4502. "onclick": U.UF.C.closure(function (obj) {
  4503. //防止拖动图标即打开了桌面应用
  4504. U.MD.D.click(this, obj);
  4505. }, [_easyDesktopIconInfo[i]])
  4506. }, _frag); //
  4507. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4508. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4509. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4510. }
  4511. }
  4512. if (type == 1) {
  4513. //加载好后给图标定位
  4514. U.MD.D.iconPostion($(_frag).Child());
  4515. } else {
  4516. //加载好后给图标定位
  4517. U.MD.D.iconPostion2($(_frag).Child());
  4518. }
  4519. //把图标加载到页面
  4520. el.appendChild(_frag);
  4521. }
  4522. /**
  4523. * 显示任务栏
  4524. *
  4525. * @param {element} 桌面元素
  4526. */
  4527. U.MD.D.I.displayTaskbar = function (el) {
  4528. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4529. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4530. //任务栏位置变化
  4531. U.selectEl(el).css({ "bottom": "0px" });
  4532. //桌面位置变话
  4533. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4534. }
  4535. }
  4536. //#region 桌面图标拖动逻辑
  4537. /**
  4538. * 桌面排列图标
  4539. *
  4540. * @param {element} 桌面元素
  4541. * @param {object} 上下相距的距离
  4542. * @param {object} 左右相距的距离
  4543. * @return {object} 命名空间
  4544. */
  4545. U.MD.D.iconPostion = function (childs, top, left) {
  4546. var i; //用于循环处理
  4547. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4548. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4549. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4550. for (i = 0; i < childs.length; i++) {
  4551. //如果竖排top超过了范围处理
  4552. if (top + 95 > US.height - 10) {
  4553. //left超过了页面范围处理,则向上重叠打印处理
  4554. if ((left + 180) > US.width) {
  4555. top -= 110;
  4556. left -= 90;
  4557. }
  4558. //没有超过范围,那么left+90添加到下一个竖排打印
  4559. else {
  4560. left += 90;
  4561. top = 15;
  4562. };
  4563. }
  4564. //给图标的位置赋值
  4565. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4566. if (i < childs.length - 1) {
  4567. //页面图标每次向下加95
  4568. top += 95;
  4569. }
  4570. }
  4571. //返回最后调用的图标的位置
  4572. return [top, left];
  4573. }
  4574. /**
  4575. * 桌面排列图标
  4576. *
  4577. * @param {element} 桌面元素
  4578. * @param {object} 上下相距的距离
  4579. * @param {object} 左右相距的距离
  4580. * @return {object} 命名空间
  4581. */
  4582. U.MD.D.iconPostion2 = function (childs, top, left) {
  4583. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4584. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4585. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4586. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4587. for (i = 0; i < childs.length; i++) {
  4588. //如果竖排top超过了范围处理
  4589. if (left + 150 > US.width - 10) {
  4590. //left超过了页面范围处理,则向上重叠打印处理
  4591. if ((top + 180) > US.Height) {
  4592. top -= 150;
  4593. left -= 150;
  4594. }
  4595. //没有超过范围,那么left+90添加到下一个竖排打印
  4596. else {
  4597. top += 150;
  4598. left = ol;
  4599. };
  4600. }
  4601. //给图标的位置赋值
  4602. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4603. if (i < childs.length - 1) {
  4604. //页面图标每次向下加95
  4605. left += 150;
  4606. }
  4607. }
  4608. //返回最后调用的图标的位置
  4609. return [top, left];
  4610. }
  4611. /**
  4612. * 桌面点击事件逻辑
  4613. *
  4614. * @param {element} 桌面元素
  4615. * @param {object} 上下相距的距离
  4616. * @param {object} 左右相距的距离
  4617. * @return {object} 命名空间
  4618. */
  4619. U.MD.D.click = function (el, obj) {
  4620. var _buttonnumber = event.button; //点击的按钮的事件值
  4621. var _userinfo = US.userInfo;
  4622. U.UF.EV.stopBubble(); //阻止向上冒泡
  4623. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4624. if (_buttonnumber < 2) {
  4625. //如果是click事件的处理
  4626. if (event.type == "click") {
  4627. //如果元素在mousemove事件中没有移动则出发click事件
  4628. if (!U.MD.D.I.IsDrag) {
  4629. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4630. U.alert("请先登录您的账号!");
  4631. setTimeout(() => {
  4632. U.MD.U.L.login();
  4633. }, 2000);
  4634. } else {
  4635. //打开应用处理
  4636. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4637. }
  4638. }
  4639. }
  4640. //如果是mouse事件的处理
  4641. else {
  4642. if (US.Config.type == '1') {
  4643. //拖动处理,添加拖动和拖动结束事件
  4644. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4645. }
  4646. }
  4647. U.MD.D.I.IsDrag = false;
  4648. }
  4649. }
  4650. /**
  4651. * 拖动的处理
  4652. *
  4653. */
  4654. U.MD.D.iconMove = function () {
  4655. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4656. U.MD.D.I.IsDrag = true;
  4657. }
  4658. /**
  4659. * 拖动结束后,这里是定位处理,以网状的形式定位
  4660. *
  4661. * @param {element} 拖动的元素
  4662. * @return {object} 命名空间
  4663. */
  4664. U.MD.D.iconUp = function (el) {
  4665. var _top = 15,
  4666. _left = 20,
  4667. _margin,
  4668. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4669. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4670. if (_positioninfo["OT"] > 15) {
  4671. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4672. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4673. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4674. }
  4675. if (_positioninfo["OL"] > 20) {
  4676. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4677. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4678. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4679. }
  4680. //while循环判断么一个重叠的元素
  4681. do {
  4682. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4683. _top = _positioninfo[0] + 95; //得到定位后的top
  4684. _left = _positioninfo[1]; //得到定位后的left
  4685. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4686. }
  4687. /**
  4688. * 判断拖动后图标是否重叠
  4689. *
  4690. * @param {element} 拖动的元素
  4691. * @param {element} 桌面所有的元素
  4692. * @param {array} 拖动元素的位置
  4693. ----------[0] 上 top
  4694. ----------[1] 左 left
  4695. * @return {object} 命名空间
  4696. */
  4697. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4698. //循环所有的图标
  4699. for (var i = 0; i < childs.length; i++) {
  4700. //判断有没有和该图标诶子重叠的元素
  4701. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4702. return childs[i]; //如果有返回
  4703. }
  4704. }
  4705. }
  4706. //#endregion
  4707. //#endregion
  4708. //#region 桌面应用
  4709. /**
  4710. * 打开应用
  4711. *
  4712. * @param {string} 类型
  4713. -----------------Disk 网盘系统
  4714. -----------------PDisk 学习系统网盘
  4715. -----------------Poto 图片
  4716. -----------------Video 视频
  4717. -----------------Music 音乐
  4718. -----------------Word word
  4719. -----------------Excel excel
  4720. -----------------Txt 记事本
  4721. -----------------PB 学习系统
  4722. -----------------Blog 朋友圈系统
  4723. -----------------FTP ftp系统
  4724. -----------------Group 好友群
  4725. -----------------SY 首页系统
  4726. -----------------Set 个人设置
  4727. -----------------XSet 系统设置
  4728. -----------------App 我们所有的app
  4729. -----------------BC c.1473.cn 平台
  4730. -----------------CWeb d.1473.cn 变成平台
  4731. -----------------其他的外联系统 我们统一用iframe打开
  4732. * @param {array} 类型
  4733. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4734. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4735. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4736. 如果第一个参数为其他,则无第二个参数
  4737. * @returns {array}
  4738. */
  4739. window.addEventListener('message', function (e) { // 监听 message 事件
  4740. // alert(e.data.type);
  4741. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4742. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4743. //3是展示全部阶段 2学生 1老师 4专家
  4744. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4745. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4746. //3是展示全部阶段 2学生 1老师 4专家
  4747. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4748. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4749. //3是展示全部阶段 2学生 1老师 4专家
  4750. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4751. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4752. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4753. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4754. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4755. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4756. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4757. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4758. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4759. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4760. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4761. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4762. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4763. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4764. //3是展示全部阶段 2学生 1老师 4专家
  4765. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4766. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4767. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4768. U.MD.D.I.selectUser();
  4769. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4770. var _formel = document.getElementById("study");
  4771. U.UF.F.windowZooming(_formel);
  4772. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4773. var _formel = document.getElementById("studyDetail");
  4774. U.UF.F.windowZooming(_formel);
  4775. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4776. var _formel = document.getElementById("studyDetail");
  4777. U.UF.F.windowZooming(_formel);
  4778. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4779. var _formel = document.getElementById("studentStudy");
  4780. U.UF.F.windowZooming(_formel);
  4781. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4782. // var _formel = document.getElementById("study");
  4783. //如果最大化了,那么就把他缩小
  4784. // if (_formel.ismaximize) {
  4785. // return;
  4786. // }
  4787. // U.UF.F.windowZooming(_formel);
  4788. // U.UF.F.topWindow(_formel);
  4789. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4790. // var _formel = document.getElementById("studyDetail");
  4791. //如果最大化了,那么就把他缩小
  4792. // if (_formel.ismaximize) {
  4793. // return;
  4794. // }
  4795. // U.UF.F.windowZooming(_formel);
  4796. // U.UF.F.topWindow(_formel);
  4797. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4798. // var _formel = document.getElementById("studentStudy");
  4799. // if (_formel.ismaximize) {
  4800. // return;
  4801. // }
  4802. // U.UF.F.windowZooming(_formel);
  4803. // U.UF.F.topWindow(_formel);
  4804. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4805. var _formel = document.getElementById("study");
  4806. // if (_formel.ismaximize) {
  4807. // return;
  4808. // }
  4809. // U.UF.F.windowZooming(_formel);
  4810. U.UF.F.topWindow(_formel);
  4811. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4812. var _formel = document.getElementById("studentIndex");
  4813. U.UF.F.windowZooming(_formel);
  4814. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4815. var _formel = document.getElementById("studyDetailS");
  4816. U.UF.F.windowZooming(_formel);
  4817. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4818. var _formel = document.getElementById("studioIndex");
  4819. U.UF.F.windowZooming(_formel);
  4820. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4821. var _formel = document.getElementById("studyDetailStudio");
  4822. U.UF.F.windowZooming(_formel);
  4823. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4824. var _formel = document.getElementById("studyDetailStudio");
  4825. U.UF.F.windowZooming(_formel);
  4826. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4827. var _formel = document.getElementById("studyDetailNT");
  4828. U.UF.F.windowZooming(_formel);
  4829. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4830. var _formel = document.getElementById("studyDetailS");
  4831. U.UF.F.windowZooming(_formel);
  4832. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4833. var _formel = document.getElementById("studyDetailS");
  4834. U.UF.F.topWindow(_formel);
  4835. } else if (e.data.tools && e.data.tools == "1") {
  4836. // U.MD.D.I.openApplication("whiteboard")
  4837. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4838. } else if (e.data.tools && e.data.tools == "2") {
  4839. U.MD.D.I.openApplication("note")
  4840. } else if (e.data.tools && e.data.tools == "3") {
  4841. // U.MD.D.I.openApplication("mind")
  4842. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4843. } else if (e.data.tools && e.data.tools == "4") {
  4844. U.MD.D.I.openApplication("investigation")
  4845. } else if (e.data.tools && e.data.tools == "6") {
  4846. // U.MD.D.I.openApplication("doc")
  4847. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4848. } else if (e.data.tools && e.data.tools == "7") {
  4849. // U.MD.D.I.openApplication("mindNetwork")
  4850. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4851. } else if (e.data.tools && e.data.tools == "8") {
  4852. U.MD.D.I.openApplication("library")
  4853. } else if (e.data.tools && e.data.tools == "17") {
  4854. U.MD.D.I.openApplication("stuLibrary")
  4855. } else if (e.data.tools && e.data.tools == "18") {
  4856. U.MD.D.I.openApplication("train")
  4857. } else if (e.data.tools && e.data.tools == "21") {
  4858. U.MD.D.I.openApplication("program")
  4859. } else if (e.data.tools && e.data.tools == "22") {
  4860. U.MD.D.I.openApplication("AIprogram2")
  4861. } else if (e.data.tools && e.data.tools == "23") {
  4862. U.MD.D.I.openApplication("Pythonprogram")
  4863. } else if (e.data.tools && e.data.tools == "24") {
  4864. U.MD.D.I.openApplication("AIprogram")
  4865. } else if (e.data.tools && e.data.tools == "25") {
  4866. U.MD.D.I.openApplication("sys")
  4867. } else if (e.data.tools && e.data.tools == "26") {
  4868. // U.MD.D.I.openApplication("courseDesign")
  4869. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4870. } else if (e.data.tools && e.data.tools == "31") {
  4871. U.MD.D.I.openApplication("netWorkPanel")
  4872. } else if (e.data.tools && e.data.tools == "32") {
  4873. U.MD.D.I.openApplication("codeEdit")
  4874. } else if (e.data.tools && e.data.tools == "57") {
  4875. U.MD.D.I.openApplication("CocoPi")
  4876. } else if (e.data.tools && e.data.tools == "63") {
  4877. U.MD.D.I.openApplication("Wood")
  4878. } else if (e.data.tools && e.data.tools == "58") {
  4879. U.MD.D.I.openApplication("car")
  4880. } else if (e.data.tools && e.data.tools == "59") {
  4881. U.MD.D.I.openApplication("lineSearch")
  4882. } else if (e.data.tools && e.data.tools == "60") {
  4883. U.MD.D.I.openApplication("deepLearning")
  4884. } else if (e.data.tools && e.data.tools == "61") {
  4885. U.MD.D.I.openApplication("allHistory")
  4886. } else if (e.data.tools && e.data.tools == "28") {
  4887. U.MD.D.I.openApplication("translation")
  4888. } else if (e.data.tools && e.data.tools == "37") {
  4889. U.MD.D.I.openApplication("mohe")
  4890. } else if (e.data.tools && e.data.tools == "38") {
  4891. U.MD.D.I.openApplication("24game")
  4892. } else if (e.data.tools && e.data.tools == "39") {
  4893. U.MD.D.I.openApplication("GeoGebra")
  4894. } else if (e.data.tools && e.data.tools == "43") {
  4895. U.MD.D.I.openApplication("studentEvaluate")
  4896. } else if (e.data.tools && e.data.tools == "44") {
  4897. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4898. } else if (e.data.tools && e.data.tools == "46") {
  4899. U.MD.D.I.openApplication("project")
  4900. } else if (e.data.tools && e.data.tools == "71") {
  4901. U.MD.D.I.openApplication("aigptCourse")
  4902. } else if (e.data.tools && e.data.tools == "1s") {
  4903. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4904. } else if (e.data.tools && e.data.tools == "3s") {
  4905. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4906. } else if (e.data.tools && e.data.tools == "6s") {
  4907. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4908. } else if (e.data.tools && e.data.tools == "1studio") {
  4909. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4910. } else if (e.data.tools && e.data.tools == "3studio") {
  4911. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4912. } else if (e.data.tools && e.data.tools == "6studio") {
  4913. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4914. } else if (e.data.tools && e.data.tools == "3y") {
  4915. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4916. } else if (e.data.tools && e.data.tools == "1y") {
  4917. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4918. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4919. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4920. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4921. U.MD.D.I.openApplication("AIAnalyse")
  4922. } else if (e.data.tools && e.data.tools == "1teacher") {
  4923. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4924. } else if (e.data.tools && e.data.tools == "3teacher") {
  4925. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4926. } else if (e.data.tools && e.data.tools == "7teacher") {
  4927. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4928. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4929. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4930. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4931. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4932. } else if (e.data.tools && e.data.tools == "1E") {
  4933. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4934. } else if (e.data.tools && e.data.tools == "3E") {
  4935. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4936. } else if (e.data.tools && e.data.tools == "57y") {
  4937. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4938. } else if (e.data.tools && e.data.tools == "57u") {
  4939. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4940. } else if (e.data.tools && e.data.tools == "57teacher") {
  4941. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4942. } else if (e.data.tools && e.data.tools == "64") {
  4943. U.MD.D.I.openApplication("AIChat")
  4944. } else if (e.data.tools && e.data.tools == "66") {
  4945. U.MD.D.I.openApplication("formulaEdi")
  4946. } else if (e.data.tools && e.data.tools == "67") {
  4947. U.MD.D.I.openApplication("molStr")
  4948. } else if (e.data.tools && e.data.tools == "68") {
  4949. U.MD.D.I.openApplication("timeAxis")
  4950. } else if (e.data.tools && e.data.tools == "openCourse") {
  4951. let _data = {
  4952. typea: e.data.typea || '',
  4953. typeb: e.data.typeb || '',
  4954. typed: e.data.typed || '',
  4955. }
  4956. U.MD.D.I.openInApplication("index", _data)
  4957. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4958. let _data = {
  4959. classid: e.data.classid || '',
  4960. }
  4961. U.MD.D.I.openInApplication("dataClass", _data)
  4962. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4963. let _data = {
  4964. cid: e.data.cid || '',
  4965. gid: e.data.gid || '',
  4966. }
  4967. U.MD.D.I.openInApplication("opencCscl", _data)
  4968. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4969. U.MD.D.I.openApplication("dataBoardTest")
  4970. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4971. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4972. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4973. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4974. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4975. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4976. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  4977. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  4978. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4979. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4980. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4981. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4982. }else if (e.data.tools && e.data.tools == "loginSz") {
  4983. U.MD.D.I.openInApplication("loginSz")
  4984. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4985. if($('#classroom_observation_board')[0]){
  4986. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4987. }
  4988. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4989. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4990. if($('#classroom_observation_ob_comment')[0]){
  4991. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4992. }
  4993. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4994. }else if (e.data.tools && e.data.tools == "logout"){
  4995. U.MD.U.LO.logoutSystem()
  4996. }else if (e.data.tools && e.data.tools == "getLogin"){
  4997. let _iframe = $('#UI_Login')[0];
  4998. if (_iframe) {
  4999. var userInfo = US.userInfo;
  5000. var type = 2
  5001. if(userInfo && userInfo.userid){
  5002. type = 1
  5003. }
  5004. _contentWindow = _iframe.contentWindow;
  5005. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  5006. }
  5007. }
  5008. });
  5009. U.MD.D.I.selectUser = function () {
  5010. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  5011. if (res.value[0].length > 0) {
  5012. US.userInfo = res.value[0][0];
  5013. $(".userName")[0].innerHTML = US.userInfo.username;
  5014. }
  5015. }, [], { "type": "GET", "withCredentials": true });
  5016. }
  5017. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  5018. var _userinfo = US.userInfo, //登录用户信息
  5019. _userid = US.userInfo.userid, //登录用户id
  5020. _oid = _userinfo.organizeid,
  5021. _type = US.userInfo.type,
  5022. _org = US.userInfo.org,
  5023. _role = US.userInfo.role,
  5024. _classId = US.userInfo.classid;
  5025. if (_type == 4) {
  5026. tType = 4
  5027. }
  5028. switch (str) {
  5029. case "studyDetailNT": //无终端模式
  5030. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5031. setTimeout(() => {
  5032. U.MD.U.L.login();
  5033. }, 2000);
  5034. } else {
  5035. _formdiv = new U.UF.UI.form(
  5036. "课程详情",
  5037. $$("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 }), {
  5038. "id": "studyDetailNT",
  5039. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5040. "onresize": function () { }
  5041. }, {
  5042. closecallback: function () { }
  5043. }, { "style": { "height": "36px" } }).form; //创建窗体
  5044. _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); } }
  5045. break;
  5046. }
  5047. case "studyDetail":
  5048. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5049. setTimeout(() => {
  5050. U.MD.U.L.login();
  5051. }, 2000);
  5052. } else {
  5053. _formdiv = new U.UF.UI.form(
  5054. "课程详情",
  5055. $$("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 }), {
  5056. "id": "studyDetail",
  5057. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5058. "onresize": function () { }
  5059. }, {
  5060. closecallback: function () { }
  5061. }, { "style": { "height": "36px" } }).form; //创建窗体
  5062. _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); } }
  5063. break;
  5064. }
  5065. case "studyDetailTrain":
  5066. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5067. setTimeout(() => {
  5068. U.MD.U.L.login();
  5069. }, 2000);
  5070. } else {
  5071. _formdiv = new U.UF.UI.form(
  5072. "培训详情",
  5073. $$("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 }), {
  5074. "id": "studyDetailTrain",
  5075. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5076. "onresize": function () { }
  5077. }, {
  5078. closecallback: function () { }
  5079. }, { "style": { "height": "36px" } }).form; //创建窗体
  5080. _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); } }
  5081. break;
  5082. }
  5083. case "studyDetailS":
  5084. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5085. setTimeout(() => {
  5086. U.MD.U.L.login();
  5087. }, 2000);
  5088. } else {
  5089. _formdiv = new U.UF.UI.form(
  5090. "项目详情",
  5091. $$("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 }), {
  5092. "id": "studyDetailS",
  5093. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5094. "onresize": function () { }
  5095. }, {
  5096. closecallback: function () { }
  5097. }, { "style": { "height": "36px" } }).form; //创建窗体
  5098. _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); } }
  5099. break;
  5100. }
  5101. case "studyDetailStudio":
  5102. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5103. setTimeout(() => {
  5104. U.MD.U.L.login();
  5105. }, 2000);
  5106. } else {
  5107. _formdiv = new U.UF.UI.form(
  5108. "工作详情",
  5109. $$("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 }), {
  5110. "id": "studyDetailStudio",
  5111. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5112. "onresize": function () { }
  5113. }, {
  5114. closecallback: function () { }
  5115. }, { "style": { "height": "36px" } }).form; //创建窗体
  5116. _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); } }
  5117. break;
  5118. }
  5119. case "studyDetailS5":
  5120. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5121. setTimeout(() => {
  5122. U.MD.U.L.login();
  5123. }, 2000);
  5124. } else {
  5125. _formdiv = new U.UF.UI.form(
  5126. "项目详情",
  5127. $$("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 }), {
  5128. "id": "studyDetailS",
  5129. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5130. "onresize": function () { }
  5131. }, {
  5132. closecallback: function () { }
  5133. }, { "style": { "height": "36px" } }).form; //创建窗体
  5134. _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); } }
  5135. break;
  5136. }
  5137. case "studyDetailGM":
  5138. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5139. setTimeout(() => {
  5140. U.MD.U.L.login();
  5141. }, 2000);
  5142. } else {
  5143. _formdiv = new U.UF.UI.form(
  5144. "课程详情",
  5145. $$("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 }), {
  5146. "id": "studyDetail",
  5147. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5148. "onresize": function () { }
  5149. }, {
  5150. closecallback: function () { }
  5151. }, { "style": { "height": "36px" } }).form; //创建窗体
  5152. _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); } }
  5153. break;
  5154. }
  5155. case "hanUrl":
  5156. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5157. setTimeout(() => {
  5158. U.MD.U.L.login();
  5159. }, 2000);
  5160. } else {
  5161. _formdiv = new U.UF.UI.form(
  5162. "汉字宫",
  5163. $$("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" }), {
  5164. "id": "hanUrl",
  5165. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5166. "onresize": function () { }
  5167. }, {
  5168. closecallback: function () { }
  5169. }, { "style": { "height": "36px" } }).form; //创建窗体
  5170. _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); } }
  5171. break;
  5172. }
  5173. case "index":
  5174. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5175. setTimeout(() => {
  5176. U.MD.U.L.login();
  5177. }, 2000);
  5178. } else {
  5179. _formdiv = new U.UF.UI.form(
  5180. "课程中心",
  5181. $$("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 }), {
  5182. "id": "study",
  5183. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5184. "onresize": function () { }
  5185. }, {
  5186. closecallback: function () { }
  5187. }, { "style": { "height": "36px" } }).form; //创建窗体
  5188. _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); } }
  5189. break;
  5190. }
  5191. case "dataClass":
  5192. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5193. setTimeout(() => {
  5194. U.MD.U.L.login();
  5195. }, 2000);
  5196. } else {
  5197. _formdiv = new U.UF.UI.form(
  5198. "数据报告",
  5199. $$("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 }), {
  5200. "id": "dataClass",
  5201. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5202. "onresize": function () { }
  5203. }, {
  5204. closecallback: function () { }
  5205. }, { "style": { "height": "36px" } }).form; //创建窗体
  5206. _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); } }
  5207. break;
  5208. }
  5209. case "opencCscl":
  5210. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5211. setTimeout(() => {
  5212. U.MD.U.L.login();
  5213. }, 2000);
  5214. } else {
  5215. _formdiv = new U.UF.UI.form(
  5216. "协同建构",
  5217. $$("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 }), {
  5218. "id": "futureClass",
  5219. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5220. "onresize": function () { }
  5221. }, {
  5222. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5223. }, { "style": { "height": "36px" } }).form; //创建窗体
  5224. _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); } }
  5225. break;
  5226. }
  5227. case "openCourseUpdate":
  5228. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5229. setTimeout(() => {
  5230. U.MD.U.L.login();
  5231. }, 2000);
  5232. } else {
  5233. _formdiv = new U.UF.UI.form(
  5234. "课程管理",
  5235. $$("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 }), {
  5236. "id": "openCourseUpdate",
  5237. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5238. "onresize": function () { }
  5239. }, {
  5240. closecallback: function () { }
  5241. }, { "style": { "height": "36px" } }).form; //创建窗体
  5242. break;
  5243. }
  5244. case "openNewCourseUpdate":
  5245. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5246. setTimeout(() => {
  5247. U.MD.U.L.login();
  5248. }, 2000);
  5249. } else {
  5250. _formdiv = new U.UF.UI.form(
  5251. "课程管理",
  5252. $$("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 }), {
  5253. "id": "openCourseUpdate",
  5254. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5255. "onresize": function () { }
  5256. }, {
  5257. closecallback: function () { }
  5258. }, { "style": { "height": "36px" } }).form; //创建窗体
  5259. break;
  5260. }
  5261. case "openCourseEUpdate":
  5262. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5263. setTimeout(() => {
  5264. U.MD.U.L.login();
  5265. }, 2000);
  5266. } else {
  5267. _formdiv = new U.UF.UI.form(
  5268. "课程管理",
  5269. $$("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 }), {
  5270. "id": "openCourseUpdate",
  5271. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5272. "onresize": function () { }
  5273. }, {
  5274. closecallback: function () { }
  5275. }, { "style": { "height": "36px" } }).form; //创建窗体
  5276. break;
  5277. }
  5278. case "openCourseAiUpdate":
  5279. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5280. setTimeout(() => {
  5281. U.MD.U.L.login();
  5282. }, 2000);
  5283. } else {
  5284. _formdiv = new U.UF.UI.form(
  5285. "课程管理",
  5286. $$("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 }), {
  5287. "id": "openCourseUpdate",
  5288. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5289. "onresize": function () { }
  5290. }, {
  5291. closecallback: function () { }
  5292. }, { "style": { "height": "36px" } }).form; //创建窗体
  5293. break;
  5294. }
  5295. case "openCourseAiUpdate2":
  5296. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5297. setTimeout(() => {
  5298. U.MD.U.L.login();
  5299. }, 2000);
  5300. } else {
  5301. _formdiv = new U.UF.UI.form(
  5302. "课程管理",
  5303. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/addCourseEAi?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5304. "id": "openCourseUpdate",
  5305. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5306. "onresize": function () { }
  5307. }, {
  5308. closecallback: function () { }
  5309. }, { "style": { "height": "36px" } }).form; //创建窗体
  5310. break;
  5311. }
  5312. case "openCourseNewUpdate":
  5313. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5314. setTimeout(() => {
  5315. U.MD.U.L.login();
  5316. }, 2000);
  5317. } else {
  5318. _formdiv = new U.UF.UI.form(
  5319. "课程管理",
  5320. $$("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 }), {
  5321. "id": "openCourseUpdate",
  5322. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5323. "onresize": function () { }
  5324. }, {
  5325. closecallback: function () { }
  5326. }, { "style": { "height": "36px" } }).form; //创建窗体
  5327. break;
  5328. }
  5329. case "inviteLoginSz":
  5330. _formdiv = new U.UF.UI.form(
  5331. "随机码登录",
  5332. $$("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 }), {
  5333. "id": "loginSz",
  5334. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5335. "onresize": function () { }
  5336. }, {
  5337. closecallback: function () { }
  5338. }, { "style": { "height": "36px" } }).form; //创建窗体
  5339. break;
  5340. case "loginSz":
  5341. _formdiv = new U.UF.UI.form(
  5342. "教师登录",
  5343. $$("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" }), {
  5344. "id": "loginSz",
  5345. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5346. "onresize": function () { }
  5347. }, {
  5348. closecallback: function () { }
  5349. }, { "style": { "height": "36px" } }).form; //创建窗体
  5350. break;
  5351. case "teacher":
  5352. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5353. setTimeout(() => {
  5354. U.MD.U.L.login();
  5355. }, 2000);
  5356. } else {
  5357. _formdiv = new U.UF.UI.form(
  5358. "教师管理",
  5359. $$("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 }), {
  5360. "id": "teacher",
  5361. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5362. "onresize": function () { }
  5363. }, {
  5364. closecallback: function () { }
  5365. }, { "style": { "height": "36px" } }).form; //创建窗体
  5366. break;
  5367. }
  5368. case "dataBoardSZArea":
  5369. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5370. setTimeout(() => {
  5371. U.MD.U.L.login();
  5372. }, 2000);
  5373. } else {
  5374. _formdiv = new U.UF.UI.form(
  5375. "综合数据看板",
  5376. $$("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 }), {
  5377. "id": "dataBoardSZArea",
  5378. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5379. "onresize": function () { }
  5380. }, {
  5381. closecallback: function () { }
  5382. }, { "style": { "height": "36px" } }).form; //创建窗体
  5383. break;
  5384. }
  5385. case "dataBoardSZCity":
  5386. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5387. setTimeout(() => {
  5388. U.MD.U.L.login();
  5389. }, 2000);
  5390. } else {
  5391. _formdiv = new U.UF.UI.form(
  5392. "综合数据看板",
  5393. $$("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 }), {
  5394. "id": "dataBoardSZCity",
  5395. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5396. "onresize": function () { }
  5397. }, {
  5398. closecallback: function () { }
  5399. }, { "style": { "height": "36px" } }).form; //创建窗体
  5400. break;
  5401. }
  5402. case "classroom_observation_board":
  5403. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5404. setTimeout(() => {
  5405. U.MD.U.L.login();
  5406. }, 2000);
  5407. } else {
  5408. _formdiv = new U.UF.UI.form(
  5409. "课堂观察",
  5410. $$("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 }), {
  5411. "id": "classroom_observation_board",
  5412. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5413. "onresize": function () { }
  5414. }, {
  5415. closecallback: function () { }
  5416. }, { "style": { "height": "36px" } }).form; //创建窗体
  5417. break;
  5418. }
  5419. case "classroom_observation_ob_comment":
  5420. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5421. setTimeout(() => {
  5422. U.MD.U.L.login();
  5423. }, 2000);
  5424. } else {
  5425. _formdiv = new U.UF.UI.form(
  5426. "课堂审核",
  5427. $$("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 }), {
  5428. "id": "classroom_observation_ob_comment",
  5429. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5430. "onresize": function () { }
  5431. }, {
  5432. closecallback: function () { }
  5433. }, { "style": { "height": "36px" } }).form; //创建窗体
  5434. break;
  5435. }
  5436. }
  5437. }
  5438. U.MD.D.I.openApplication = function (str, obj, info) {
  5439. obj = obj || {};
  5440. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5441. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5442. _userinfo = US.userInfo, //登录用户信息
  5443. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5444. _oid = obj.organizeid || _userinfo.organizeid,
  5445. _type = US.userInfo.type,
  5446. _org = US.userInfo.org,
  5447. _role = US.userInfo.role,
  5448. _classId = US.userInfo.classid,
  5449. _TscreenType = 1
  5450. _screenType = 2,
  5451. _SscreenType = 3;
  5452. let iframeBool = true
  5453. if(U.UF.UI.form.allForm[str]){
  5454. iframeBool = false
  5455. }
  5456. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5457. return;
  5458. }
  5459. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5460. switch (str) {
  5461. case "studnetProject": //好友打开
  5462. _formdiv = new U.UF.UI.form(
  5463. "我的项目",
  5464. $$("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 }), {
  5465. "id": "studnetProject",
  5466. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5467. "onresize": function () { }
  5468. }, {
  5469. closecallback: function () { }
  5470. }, { "style": { "height": "36px" } }).form; //创建窗体
  5471. _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); } }
  5472. break;
  5473. case "studentEvaluate": //好友打开
  5474. _formdiv = new U.UF.UI.form(
  5475. "我的评价",
  5476. $$("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 }), {
  5477. "id": "studentEvaluate",
  5478. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5479. "onresize": function () { }
  5480. }, {
  5481. closecallback: function () { }
  5482. }, { "style": { "height": "36px" } }).form; //创建窗体
  5483. _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); } }
  5484. break;
  5485. case "my":
  5486. _formdiv = new U.UF.UI.form(
  5487. "我的资料",
  5488. $$("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 }), {
  5489. "id": "my",
  5490. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5491. "onresize": function () { }
  5492. }, {
  5493. closecallback: function () { }
  5494. }, { "style": { "height": "36px" } }).form; //创建窗体
  5495. _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); } }
  5496. break;
  5497. case "program":
  5498. _formdiv = new U.UF.UI.form(
  5499. "编程平台",
  5500. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5501. "id": "program",
  5502. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5503. "onresize": function () { }
  5504. }, {
  5505. closecallback: function () { }
  5506. }, { "style": { "height": "36px" } }).form; //创建窗体
  5507. _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); } }
  5508. break;
  5509. case "library":
  5510. _formdiv = new U.UF.UI.form(
  5511. "素材库",
  5512. $$("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 }), {
  5513. "id": "library",
  5514. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5515. "onresize": function () { }
  5516. }, {
  5517. closecallback: function () { }
  5518. }, { "style": { "height": "36px" } }).form; //创建窗体
  5519. _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); } }
  5520. break;
  5521. case "whiteboard":
  5522. _formdiv = new U.UF.UI.form(
  5523. "电子白板",
  5524. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5525. "id": "whiteboard",
  5526. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5527. "onresize": function () { }
  5528. }, {
  5529. closecallback: function () { }
  5530. }, { "style": { "height": "36px" } }).form; //创建窗体
  5531. _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); } }
  5532. break;
  5533. case "investigation":
  5534. _formdiv = new U.UF.UI.form(
  5535. "问卷调查",
  5536. $$("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 }), {
  5537. "id": "investigation",
  5538. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5539. "onresize": function () { }
  5540. }, {
  5541. closecallback: function () { }
  5542. }, { "style": { "height": "36px" } }).form; //创建窗体
  5543. _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); } }
  5544. break;
  5545. case "note":
  5546. _formdiv = new U.UF.UI.form(
  5547. "便签分类",
  5548. $$("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 }), {
  5549. "id": "note",
  5550. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5551. "onresize": function () { }
  5552. }, {
  5553. closecallback: function () { }
  5554. }, { "style": { "height": "36px" } }).form; //创建窗体
  5555. _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); } }
  5556. break;
  5557. // case "score":
  5558. // _formdiv = new U.UF.UI.form(
  5559. // "量规评分",
  5560. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5561. // "id": "score",
  5562. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5563. // "onresize": function() {}
  5564. // }, {
  5565. // closecallback: function() {}
  5566. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5567. // _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); } }
  5568. // break;
  5569. case "mind":
  5570. _formdiv = new U.UF.UI.form(
  5571. "思维导图",
  5572. $$("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"
  5573. "id": "mind",
  5574. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5575. "onresize": function () { }
  5576. }, {
  5577. closecallback: function () { }
  5578. }, { "style": { "height": "36px" } }).form; //创建窗体
  5579. _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); } }
  5580. break;
  5581. case "doc":
  5582. // U.MD.D.I.isRoom();
  5583. _formdiv = new U.UF.UI.form(
  5584. "协同文档",
  5585. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5586. "id": "doc",
  5587. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5588. "onresize": function () { }
  5589. }, {
  5590. closecallback: function () { }
  5591. }, { "style": { "height": "36px" } }).form; //创建窗体
  5592. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5593. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5594. // })
  5595. _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); } }
  5596. break;
  5597. case "studentStudy":
  5598. _formdiv = new U.UF.UI.form(
  5599. "课程中心",
  5600. $$("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
  5601. "id": "studentStudy",
  5602. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5603. "onresize": function () { }
  5604. }, {
  5605. closecallback: function () { }
  5606. }, { "style": { "height": "36px" } }).form; //创建窗体
  5607. _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); } }
  5608. break;
  5609. case "train": //好友打开
  5610. _formdiv = new U.UF.UI.form(
  5611. "训练平台",
  5612. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5613. "id": "train",
  5614. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5615. "onresize": function () { }
  5616. }, {
  5617. closecallback: function () { }
  5618. }, { "style": { "height": "36px" } }).form; //创建窗体
  5619. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5620. break;
  5621. case "mindNetwork": //好友打开
  5622. _formdiv = new U.UF.UI.form(
  5623. "思维网格",
  5624. $$("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 }), {
  5625. "id": "mindNetwork",
  5626. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5627. "onresize": function () { }
  5628. }, {
  5629. closecallback: function () { }
  5630. }, { "style": { "height": "36px" } }).form; //创建窗体
  5631. _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); } }
  5632. break;
  5633. case "studentClassRoom": //好友打开
  5634. _formdiv = new U.UF.UI.form(
  5635. "实时课堂",
  5636. $$("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 }), {
  5637. "id": "studentClassRoom",
  5638. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5639. "onresize": function () { }
  5640. }, {
  5641. closecallback: function () { }
  5642. }, { "style": { "height": "36px" } }).form; //创建窗体
  5643. _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); } }
  5644. setTimeout(() => {
  5645. U.UF.F.windowZooming(_formdiv)
  5646. }, 0);
  5647. break;
  5648. }
  5649. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5650. switch (str) {
  5651. case "studnetProject": //好友打开
  5652. _formdiv = new U.UF.UI.form(
  5653. "我的项目",
  5654. $$("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 }), {
  5655. "id": "studnetProject",
  5656. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5657. "onresize": function () { }
  5658. }, {
  5659. closecallback: function () { }
  5660. }, { "style": { "height": "36px" } }).form; //创建窗体
  5661. _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); } }
  5662. break;
  5663. case "studentEvaluate": //好友打开
  5664. _formdiv = new U.UF.UI.form(
  5665. "我的评价",
  5666. $$("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 }), {
  5667. "id": "studentEvaluate",
  5668. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5669. "onresize": function () { }
  5670. }, {
  5671. closecallback: function () { }
  5672. }, { "style": { "height": "36px" } }).form; //创建窗体
  5673. _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); } }
  5674. break;
  5675. case "my":
  5676. _formdiv = new U.UF.UI.form(
  5677. "我的资料",
  5678. $$("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 }), {
  5679. "id": "my",
  5680. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5681. "onresize": function () { }
  5682. }, {
  5683. closecallback: function () { }
  5684. }, { "style": { "height": "36px" } }).form; //创建窗体
  5685. _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); } }
  5686. break;
  5687. case "program":
  5688. _formdiv = new U.UF.UI.form(
  5689. "编程平台",
  5690. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5691. "id": "program",
  5692. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5693. "onresize": function () { }
  5694. }, {
  5695. closecallback: function () { }
  5696. }, { "style": { "height": "36px" } }).form; //创建窗体
  5697. _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); } }
  5698. break;
  5699. case "library":
  5700. _formdiv = new U.UF.UI.form(
  5701. "素材库",
  5702. $$("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 }), {
  5703. "id": "library",
  5704. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5705. "onresize": function () { }
  5706. }, {
  5707. closecallback: function () { }
  5708. }, { "style": { "height": "36px" } }).form; //创建窗体
  5709. _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); } }
  5710. break;
  5711. case "whiteboard":
  5712. _formdiv = new U.UF.UI.form(
  5713. "电子白板",
  5714. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5715. "id": "whiteboard",
  5716. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5717. "onresize": function () { }
  5718. }, {
  5719. closecallback: function () { }
  5720. }, { "style": { "height": "36px" } }).form; //创建窗体
  5721. _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); } }
  5722. break;
  5723. case "investigation":
  5724. _formdiv = new U.UF.UI.form(
  5725. "问卷调查",
  5726. $$("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 }), {
  5727. "id": "investigation",
  5728. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5729. "onresize": function () { }
  5730. }, {
  5731. closecallback: function () { }
  5732. }, { "style": { "height": "36px" } }).form; //创建窗体
  5733. _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); } }
  5734. break;
  5735. case "note":
  5736. _formdiv = new U.UF.UI.form(
  5737. "便签分类",
  5738. $$("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 }), {
  5739. "id": "note",
  5740. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5741. "onresize": function () { }
  5742. }, {
  5743. closecallback: function () { }
  5744. }, { "style": { "height": "36px" } }).form; //创建窗体
  5745. _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); } }
  5746. break;
  5747. // case "score":
  5748. // _formdiv = new U.UF.UI.form(
  5749. // "量规评分",
  5750. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5751. // "id": "score",
  5752. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5753. // "onresize": function() {}
  5754. // }, {
  5755. // closecallback: function() {}
  5756. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5757. // _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); } }
  5758. // break;
  5759. case "mind":
  5760. _formdiv = new U.UF.UI.form(
  5761. "思维导图",
  5762. $$("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"
  5763. "id": "mind",
  5764. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5765. "onresize": function () { }
  5766. }, {
  5767. closecallback: function () { }
  5768. }, { "style": { "height": "36px" } }).form; //创建窗体
  5769. _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); } }
  5770. break;
  5771. case "doc":
  5772. // U.MD.D.I.isRoom();
  5773. _formdiv = new U.UF.UI.form(
  5774. "协同文档",
  5775. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5776. "id": "doc",
  5777. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5778. "onresize": function () { }
  5779. }, {
  5780. closecallback: function () { }
  5781. }, { "style": { "height": "36px" } }).form; //创建窗体
  5782. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5783. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5784. })
  5785. _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); } }
  5786. break;
  5787. case "train": //好友打开
  5788. _formdiv = new U.UF.UI.form(
  5789. "训练平台",
  5790. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5791. "id": "train",
  5792. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5793. "onresize": function () { }
  5794. }, {
  5795. closecallback: function () { }
  5796. }, { "style": { "height": "36px" } }).form; //创建窗体
  5797. _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); } }
  5798. break;
  5799. case "studentStudy":
  5800. _formdiv = new U.UF.UI.form(
  5801. "课程中心",
  5802. $$("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
  5803. "id": "studentStudy",
  5804. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5805. "onresize": function () { }
  5806. }, {
  5807. closecallback: function () { }
  5808. }, { "style": { "height": "36px" } }).form; //创建窗体
  5809. _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); } }
  5810. break;
  5811. case "mindNetwork": //好友打开
  5812. _formdiv = new U.UF.UI.form(
  5813. "思维网格",
  5814. $$("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 }), {
  5815. "id": "mindNetwork",
  5816. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5817. "onresize": function () { }
  5818. }, {
  5819. closecallback: function () { }
  5820. }, { "style": { "height": "36px" } }).form; //创建窗体
  5821. _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); } }
  5822. break;
  5823. case "studentClassRoom": //好友打开
  5824. _formdiv = new U.UF.UI.form(
  5825. "实时课堂",
  5826. $$("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 }), {
  5827. "id": "studentClassRoom",
  5828. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5829. "onresize": function () { }
  5830. }, {
  5831. closecallback: function () { }
  5832. }, { "style": { "height": "36px" } }).form; //创建窗体
  5833. _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); } }
  5834. setTimeout(() => {
  5835. U.UF.F.windowZooming(_formdiv)
  5836. }, 0);
  5837. break;
  5838. }
  5839. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5840. //选择应用处理
  5841. switch (str) {
  5842. case "project": //好友打开
  5843. _formdiv = new U.UF.UI.form(
  5844. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5845. $$("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 }), {
  5846. "id": "project",
  5847. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5848. "onresize": function () { }
  5849. }, {
  5850. closecallback: function () { }
  5851. }, { "style": { "height": "36px" } }).form; //创建窗体
  5852. _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); } }
  5853. break;
  5854. case "student":
  5855. _formdiv = new U.UF.UI.form(
  5856. "学生管理",
  5857. $$("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 }), {
  5858. "id": "student",
  5859. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5860. "onresize": function () { }
  5861. }, {
  5862. closecallback: function () { }
  5863. }, { "style": { "height": "36px" } }).form; //创建窗体
  5864. _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); } }
  5865. break;
  5866. case "evaluate":
  5867. _formdiv = new U.UF.UI.form(
  5868. "学生评价",
  5869. $$("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 }), {
  5870. "id": "evaluate",
  5871. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5872. "onresize": function () { }
  5873. }, {
  5874. closecallback: function () { }
  5875. }, { "style": { "height": "36px" } }).form; //创建窗体
  5876. _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); } }
  5877. break;
  5878. case "sys":
  5879. _formdiv = new U.UF.UI.form(
  5880. "目标管理",
  5881. $$("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 }), {
  5882. "id": "sys",
  5883. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5884. "onresize": function () { }
  5885. }, {
  5886. closecallback: function () { }
  5887. }, { "style": { "height": "36px" } }).form; //创建窗体
  5888. _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); } }
  5889. break;
  5890. case "courseDesign":
  5891. _formdiv = new U.UF.UI.form(
  5892. "项目设计",
  5893. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5894. "id": "courseDesign",
  5895. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5896. "onresize": function () { }
  5897. }, {
  5898. closecallback: function () { }
  5899. }, { "style": { "height": "36px" } }).form; //创建窗体
  5900. _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); } }
  5901. break;
  5902. case "program":
  5903. _formdiv = new U.UF.UI.form(
  5904. "编程平台",
  5905. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5906. "id": "program",
  5907. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5908. "onresize": function () { }
  5909. }, {
  5910. closecallback: function () { }
  5911. }, { "style": { "height": "36px" } }).form; //创建窗体
  5912. _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); } }
  5913. break;
  5914. case "class":
  5915. _formdiv = new U.UF.UI.form(
  5916. "班级管理",
  5917. $$("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 }), {
  5918. "id": "class",
  5919. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5920. "onresize": function () { }
  5921. }, {
  5922. closecallback: function () { }
  5923. }, { "style": { "height": "36px" } }).form; //创建窗体
  5924. _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); } }
  5925. break;
  5926. case "Grade":
  5927. _formdiv = new U.UF.UI.form(
  5928. "年级管理",
  5929. $$("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 }), {
  5930. "id": "Grade",
  5931. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5932. "onresize": function () { }
  5933. }, {
  5934. closecallback: function () { }
  5935. }, { "style": { "height": "36px" } }).form; //创建窗体
  5936. _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); } }
  5937. break;
  5938. case "teacherOffice":
  5939. _formdiv = new U.UF.UI.form(
  5940. "教研室",
  5941. $$("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 }), {
  5942. "id": "teacherOffice",
  5943. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5944. "onresize": function () { }
  5945. }, {
  5946. closecallback: function () { }
  5947. }, { "style": { "height": "36px" } }).form; //创建窗体
  5948. _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); } }
  5949. break;
  5950. case "my":
  5951. _formdiv = new U.UF.UI.form(
  5952. "我的资料",
  5953. $$("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 }), {
  5954. "id": "my",
  5955. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5956. "onresize": function () { }
  5957. }, {
  5958. closecallback: function () { }
  5959. }, { "style": { "height": "36px" } }).form; //创建窗体
  5960. _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); } }
  5961. break;
  5962. case "notice":
  5963. _formdiv = new U.UF.UI.form(
  5964. "通知公告",
  5965. $$("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 }), {
  5966. "id": "notice",
  5967. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5968. "onresize": function () { }
  5969. }, {
  5970. closecallback: function () { }
  5971. }, { "style": { "height": "36px" } }).form; //创建窗体
  5972. _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); } }
  5973. break;
  5974. case "library":
  5975. _formdiv = new U.UF.UI.form(
  5976. "素材库",
  5977. $$("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 }), {
  5978. "id": "library",
  5979. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5980. "onresize": function () { }
  5981. }, {
  5982. closecallback: function () { }
  5983. }, { "style": { "height": "36px" } }).form; //创建窗体
  5984. _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); } }
  5985. break;
  5986. case "whiteboard":
  5987. _formdiv = new U.UF.UI.form(
  5988. "电子白板",
  5989. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5990. "id": "whiteboard",
  5991. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5992. "onresize": function () { }
  5993. }, {
  5994. closecallback: function () { }
  5995. }, { "style": { "height": "36px" } }).form; //创建窗体
  5996. _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); } }
  5997. break;
  5998. case "investigation":
  5999. _formdiv = new U.UF.UI.form(
  6000. "问卷调查",
  6001. $$("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 }), {
  6002. "id": "investigation",
  6003. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6004. "onresize": function () { }
  6005. }, {
  6006. closecallback: function () { }
  6007. }, { "style": { "height": "36px" } }).form; //创建窗体
  6008. _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); } }
  6009. break;
  6010. case "note":
  6011. _formdiv = new U.UF.UI.form(
  6012. "便签分类",
  6013. $$("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 }), {
  6014. "id": "note",
  6015. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6016. "onresize": function () { }
  6017. }, {
  6018. closecallback: function () { }
  6019. }, { "style": { "height": "36px" } }).form; //创建窗体
  6020. _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); } }
  6021. break;
  6022. // case "score":
  6023. // _formdiv = new U.UF.UI.form(
  6024. // "量规评分",
  6025. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6026. // "id": "score",
  6027. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6028. // "onresize": function() {}
  6029. // }, {
  6030. // closecallback: function() {}
  6031. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6032. // _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); } }
  6033. // break;
  6034. case "mind":
  6035. _formdiv = new U.UF.UI.form(
  6036. "思维导图",
  6037. $$("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"
  6038. "id": "mind",
  6039. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6040. "onresize": function () { }
  6041. }, {
  6042. closecallback: function () { }
  6043. }, { "style": { "height": "36px" } }).form; //创建窗体
  6044. _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); } }
  6045. break;
  6046. case "doc":
  6047. // U.MD.D.I.isRoom();
  6048. _formdiv = new U.UF.UI.form(
  6049. "协同文档",
  6050. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6051. "id": "doc",
  6052. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6053. "onresize": function () { }
  6054. }, {
  6055. closecallback: function () { }
  6056. }, { "style": { "height": "36px" } }).form; //创建窗体
  6057. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6058. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6059. })
  6060. _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); } }
  6061. break;
  6062. case "study":
  6063. _formdiv = new U.UF.UI.form(
  6064. "课程中心",
  6065. $$("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
  6066. "id": "study",
  6067. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6068. "onresize": function () { }
  6069. }, {
  6070. closecallback: function () { }
  6071. }, { "style": { "height": "36px" } }).form; //创建窗体
  6072. _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); } }
  6073. break;
  6074. case "mindNetwork": //好友打开
  6075. _formdiv = new U.UF.UI.form(
  6076. "思维网格",
  6077. $$("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 }), {
  6078. "id": "mindNetwork",
  6079. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6080. "onresize": function () { }
  6081. }, {
  6082. closecallback: function () { }
  6083. }, { "style": { "height": "36px" } }).form; //创建窗体
  6084. _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); } }
  6085. break;
  6086. case "train": //好友打开
  6087. _formdiv = new U.UF.UI.form(
  6088. "训练平台",
  6089. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6090. "id": "mindNetwork",
  6091. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6092. "onresize": function () { }
  6093. }, {
  6094. closecallback: function () { }
  6095. }, { "style": { "height": "36px" } }).form; //创建窗体
  6096. _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); } }
  6097. break;
  6098. case "teacherClassRoom": //好友打开
  6099. _formdiv = new U.UF.UI.form(
  6100. "实时课堂",
  6101. $$("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 }), {
  6102. "id": "teacherClassRoom",
  6103. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6104. "onresize": function () { }
  6105. }, {
  6106. closecallback: function () { }
  6107. }, { "style": { "height": "36px" } }).form; //创建窗体
  6108. _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); } }
  6109. setTimeout(() => {
  6110. U.UF.F.windowZooming(_formdiv)
  6111. }, 0);
  6112. break;
  6113. }
  6114. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6115. switch (str) {
  6116. case "project": //好友打开
  6117. _formdiv = new U.UF.UI.form(
  6118. "课程管理",
  6119. $$("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 }), {
  6120. "id": "project",
  6121. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6122. "onresize": function () { }
  6123. }, {
  6124. closecallback: function () { }
  6125. }, { "style": { "height": "36px" } }).form; //创建窗体
  6126. _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); } }
  6127. break;
  6128. case "evaluate":
  6129. _formdiv = new U.UF.UI.form(
  6130. "学生评价",
  6131. $$("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 }), {
  6132. "id": "evaluate",
  6133. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6134. "onresize": function () { }
  6135. }, {
  6136. closecallback: function () { }
  6137. }, { "style": { "height": "36px" } }).form; //创建窗体
  6138. _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); } }
  6139. break;
  6140. case "notice":
  6141. _formdiv = new U.UF.UI.form(
  6142. "通知公告",
  6143. $$("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 }), {
  6144. "id": "notice",
  6145. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6146. "onresize": function () { }
  6147. }, {
  6148. closecallback: function () { }
  6149. }, { "style": { "height": "36px" } }).form; //创建窗体
  6150. _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); } }
  6151. break;
  6152. case "stuLibrary":
  6153. _formdiv = new U.UF.UI.form(
  6154. "学习资料",
  6155. $$("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 }), {
  6156. "id": "stuLibrary",
  6157. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6158. "onresize": function () { }
  6159. }, {
  6160. closecallback: function () { }
  6161. }, { "style": { "height": "36px" } }).form; //创建窗体
  6162. _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); } }
  6163. break;
  6164. case "program":
  6165. _formdiv = new U.UF.UI.form(
  6166. "编程平台",
  6167. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6168. "id": "program",
  6169. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6170. "onresize": function () { }
  6171. }, {
  6172. closecallback: function () { }
  6173. }, { "style": { "height": "36px" } }).form; //创建窗体
  6174. _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); } }
  6175. break;
  6176. case "whiteboard":
  6177. _formdiv = new U.UF.UI.form(
  6178. "电子白板",
  6179. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6180. "id": "whiteboard",
  6181. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6182. "onresize": function () { }
  6183. }, {
  6184. closecallback: function () { }
  6185. }, { "style": { "height": "36px" } }).form; //创建窗体
  6186. _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); } }
  6187. break;
  6188. case "investigation":
  6189. _formdiv = new U.UF.UI.form(
  6190. "问卷调查",
  6191. $$("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 }), {
  6192. "id": "investigation",
  6193. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6194. "onresize": function () { }
  6195. }, {
  6196. closecallback: function () { }
  6197. }, { "style": { "height": "36px" } }).form; //创建窗体
  6198. _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); } }
  6199. break;
  6200. case "mind":
  6201. _formdiv = new U.UF.UI.form(
  6202. "思维导图",
  6203. $$("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"
  6204. "id": "mind",
  6205. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6206. "onresize": function () { }
  6207. }, {
  6208. closecallback: function () { }
  6209. }, { "style": { "height": "36px" } }).form; //创建窗体
  6210. _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); } }
  6211. break;
  6212. case "doc":
  6213. // U.MD.D.I.isRoom();
  6214. _formdiv = new U.UF.UI.form(
  6215. "协同文档",
  6216. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6217. "id": "doc",
  6218. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6219. "onresize": function () { }
  6220. }, {
  6221. closecallback: function () { }
  6222. }, { "style": { "height": "36px" } }).form; //创建窗体
  6223. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6224. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6225. })
  6226. _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); } }
  6227. break;
  6228. case "study":
  6229. _formdiv = new U.UF.UI.form(
  6230. "课程中心",
  6231. $$("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
  6232. "id": "study",
  6233. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6234. "onresize": function () { }
  6235. }, {
  6236. closecallback: function () { }
  6237. }, { "style": { "height": "36px" } }).form; //创建窗体
  6238. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6239. break;
  6240. case "mindNetwork": //好友打开
  6241. _formdiv = new U.UF.UI.form(
  6242. "思维网格",
  6243. $$("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 }), {
  6244. "id": "mindNetwork",
  6245. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6246. "onresize": function () { }
  6247. }, {
  6248. closecallback: function () { }
  6249. }, { "style": { "height": "36px" } }).form; //创建窗体
  6250. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6251. break;
  6252. case "train": //好友打开
  6253. _formdiv = new U.UF.UI.form(
  6254. "训练平台",
  6255. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6256. "id": "train",
  6257. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6258. "onresize": function () { }
  6259. }, {
  6260. closecallback: function () { }
  6261. }, { "style": { "height": "36px" } }).form; //创建窗体
  6262. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6263. break;
  6264. case "sys":
  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/#/evaluation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6268. "id": "sys",
  6269. "style": { "width": "100%", "height": "100%", "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/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6275. break;
  6276. case "courseDesign":
  6277. _formdiv = new U.UF.UI.form(
  6278. "项目设计",
  6279. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6280. "id": "courseDesign",
  6281. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6282. "onresize": function () { }
  6283. }, {
  6284. closecallback: function () { }
  6285. }, { "style": { "height": "36px" } }).form; //创建窗体
  6286. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6287. break;
  6288. }
  6289. } else if (!_type) {
  6290. switch (str) {
  6291. case "my":
  6292. _formdiv = new U.UF.UI.form(
  6293. "我的资料",
  6294. $$("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 }), {
  6295. "id": "my",
  6296. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6297. "onresize": function () { }
  6298. }, {
  6299. closecallback: function () { }
  6300. }, { "style": { "height": "36px" } }).form; //创建窗体
  6301. _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); } }
  6302. break;
  6303. }
  6304. }
  6305. switch (str) {
  6306. // AIprogram2 AI体验 aihub.cocorobo.cn
  6307. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6308. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6309. case "formulaEdi": //公式编辑
  6310. _formdiv = new U.UF.UI.form(
  6311. "公式编辑",
  6312. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6313. "id": "formulaEdi",
  6314. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6315. "onresize": function () { }
  6316. }, {
  6317. closecallback: function () { }
  6318. }, { "style": { "height": "36px" } }).form; //创建窗体
  6319. _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); } }
  6320. break;
  6321. case "molStr": //分子结构
  6322. _formdiv = new U.UF.UI.form(
  6323. "分子结构",
  6324. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6325. "id": "molStr",
  6326. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6327. "onresize": function () { }
  6328. }, {
  6329. closecallback: function () { }
  6330. }, { "style": { "height": "36px" } }).form; //创建窗体
  6331. _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); } }
  6332. break;
  6333. case "timeAxis": //时间轴
  6334. _formdiv = new U.UF.UI.form(
  6335. "时间轴",
  6336. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6337. "id": "timeAxis",
  6338. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6339. "onresize": function () { }
  6340. }, {
  6341. closecallback: function () { }
  6342. }, { "style": { "height": "36px" } }).form; //创建窗体
  6343. _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); } }
  6344. break;
  6345. case "AIprogram2": //AI体验
  6346. _formdiv = new U.UF.UI.form(
  6347. "AI体验",
  6348. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6349. "id": "AIprogram2",
  6350. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6351. "onresize": function () { }
  6352. }, {
  6353. closecallback: function () { }
  6354. }, { "style": { "height": "36px" } }).form; //创建窗体
  6355. _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); } }
  6356. break;
  6357. case "Pythonprogram": //python编程
  6358. _formdiv = new U.UF.UI.form(
  6359. "Python编程",
  6360. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6361. "id": "Pythonprogram",
  6362. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6363. "onresize": function () { }
  6364. }, {
  6365. closecallback: function () { }
  6366. }, { "style": { "height": "36px" } }).form; //创建窗体
  6367. _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); } }
  6368. break;
  6369. case "AIprogram": //ai编程
  6370. _formdiv = new U.UF.UI.form(
  6371. "AI编程平台",
  6372. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6373. "id": "AIprogram",
  6374. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6375. "onresize": function () { }
  6376. }, {
  6377. closecallback: function () { }
  6378. }, { "style": { "height": "36px" } }).form; //创建窗体
  6379. _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); } }
  6380. break;
  6381. case "CocoPi": //CocoPi
  6382. _formdiv = new U.UF.UI.form(
  6383. "CocoPi",
  6384. $$("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" }), {
  6385. "id": "CocoPi",
  6386. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6387. "onresize": function () { }
  6388. }, {
  6389. closecallback: function () { }
  6390. }, { "style": { "height": "36px" } }).form; //创建窗体
  6391. _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); } }
  6392. break;
  6393. case "Wood": //Wood
  6394. _formdiv = new U.UF.UI.form(
  6395. "海龟编程",
  6396. $$("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/" }), {
  6397. "id": "Wood",
  6398. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6399. "onresize": function () { }
  6400. }, {
  6401. closecallback: function () { }
  6402. }, { "style": { "height": "36px" } }).form; //创建窗体
  6403. _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); } }
  6404. break;
  6405. case "car": //模拟驾驶
  6406. _formdiv = new U.UF.UI.form(
  6407. "模拟驾驶",
  6408. $$("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/" }), {
  6409. "id": "car",
  6410. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6411. "onresize": function () { }
  6412. }, {
  6413. closecallback: function () { }
  6414. }, { "style": { "height": "36px" } }).form; //创建窗体
  6415. _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); } }
  6416. break;
  6417. case "lineSearch": //路径搜索
  6418. _formdiv = new U.UF.UI.form(
  6419. "路径搜索",
  6420. $$("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/" }), {
  6421. "id": "lineSearch",
  6422. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6423. "onresize": function () { }
  6424. }, {
  6425. closecallback: function () { }
  6426. }, { "style": { "height": "36px" } }).form; //创建窗体
  6427. _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); } }
  6428. break;
  6429. case "deepLearning": //深度学习
  6430. _formdiv = new U.UF.UI.form(
  6431. "深度学习",
  6432. $$("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/#" }), {
  6433. "id": "deepLearning",
  6434. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6435. "onresize": function () { }
  6436. }, {
  6437. closecallback: function () { }
  6438. }, { "style": { "height": "36px" } }).form; //创建窗体
  6439. _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); } }
  6440. break;
  6441. case "allHistory": //深度学习
  6442. _formdiv = new U.UF.UI.form(
  6443. "全历史",
  6444. $$("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/" }), {
  6445. "id": "allHistory",
  6446. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6447. "onresize": function () { }
  6448. }, {
  6449. closecallback: function () { }
  6450. }, { "style": { "height": "36px" } }).form; //创建窗体
  6451. _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); } }
  6452. break;
  6453. case "chatPDF": //ai编程
  6454. _formdiv = new U.UF.UI.form(
  6455. "chatPDF",
  6456. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6457. "id": "chatPDF",
  6458. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6459. "onresize": function () { }
  6460. }, {
  6461. closecallback: function () { }
  6462. }, { "style": { "height": "36px" } }).form; //创建窗体
  6463. _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); } }
  6464. break;
  6465. case "resources": //国家教育
  6466. _formdiv = new U.UF.UI.form(
  6467. "国家教育",
  6468. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6469. "id": "resources",
  6470. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6471. "onresize": function () { }
  6472. }, {
  6473. closecallback: function () { }
  6474. }, { "style": { "height": "36px" } }).form; //创建窗体
  6475. _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); } }
  6476. break;
  6477. case "codeEdit": //源码编辑
  6478. _formdiv = new U.UF.UI.form(
  6479. "源码编辑",
  6480. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6481. "id": "codeEdit",
  6482. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6483. "onresize": function () { }
  6484. }, {
  6485. closecallback: function () { }
  6486. }, { "style": { "height": "36px" } }).form; //创建窗体
  6487. _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); } }
  6488. break; //
  6489. case "MindMap": //MindMap
  6490. _formdiv = new U.UF.UI.form(
  6491. "MindMap",
  6492. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6493. "id": "MindMap",
  6494. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6495. "onresize": function () { }
  6496. }, {
  6497. closecallback: function () { }
  6498. }, { "style": { "height": "36px" } }).form; //创建窗体
  6499. _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); } }
  6500. break;
  6501. case "netWorkPanel": //netWorkPanel
  6502. _formdiv = new U.UF.UI.form(
  6503. "netWorkPanel",
  6504. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6505. "id": "netWorkPanel",
  6506. "style": { "width": "80%", "height": "90%", "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/netWorkPanel.png)" }, "name": "netWorkPanel", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6512. break;
  6513. case "GeoGebra": //GeoGebra
  6514. _formdiv = new U.UF.UI.form(
  6515. "GeoGebra",
  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": "//www.geogebra.org/calculator" }), {
  6517. "id": "GeoGebra",
  6518. "style": { "width": "80%", "height": "90%", "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/GeoGebra.png)" }, "name": "GeoGebra", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6524. break;
  6525. case "translation": //翻译
  6526. _formdiv = new U.UF.UI.form(
  6527. "翻译",
  6528. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6529. "id": "translation",
  6530. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6531. "onresize": function () { }
  6532. }, {
  6533. closecallback: function () { }
  6534. }, { "style": { "height": "36px" } }).form; //创建窗体
  6535. _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); } }
  6536. break;
  6537. case "mohe": //魔盒
  6538. _formdiv = new U.UF.UI.form(
  6539. "魔盒识字",
  6540. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6541. "id": "mohe",
  6542. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6543. "onresize": function () { }
  6544. }, {
  6545. closecallback: function () { }
  6546. }, { "style": { "height": "36px" } }).form; //创建窗体
  6547. _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); } }
  6548. break;
  6549. case "24game": //24点
  6550. _formdiv = new U.UF.UI.form(
  6551. "24点",
  6552. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6553. "id": "24game",
  6554. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6555. "onresize": function () { }
  6556. }, {
  6557. closecallback: function () { }
  6558. }, { "style": { "height": "36px" } }).form; //创建窗体
  6559. _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); } }
  6560. break;
  6561. case "case":
  6562. _formdiv = new U.UF.UI.form(
  6563. "课程进展",
  6564. $$("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 }), {
  6565. "id": "case",
  6566. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6567. "onresize": function () { }
  6568. }, {
  6569. closecallback: function () { }
  6570. }, { "style": { "height": "36px" } }).form; //创建窗体
  6571. _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); } }
  6572. break;
  6573. case "snf":
  6574. _formdiv = new U.UF.UI.form(
  6575. "赛诺梵",
  6576. $$("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" }), {
  6577. "id": "snf",
  6578. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6579. "onresize": function () { }
  6580. }, {
  6581. closecallback: function () { }
  6582. }, { "style": { "height": "36px" } }).form; //创建窗体
  6583. _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); } }
  6584. break;
  6585. case "hanFamily":
  6586. _formdiv = new U.UF.UI.form(
  6587. "汉字家族",
  6588. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6589. "id": "hanFamily",
  6590. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6591. "onresize": function () { }
  6592. }, {
  6593. closecallback: function () { }
  6594. }, { "style": { "height": "36px" } }).form; //创建窗体
  6595. _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); } }
  6596. break;
  6597. case "hanClassics":
  6598. _formdiv = new U.UF.UI.form(
  6599. "国学经典",
  6600. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6601. "id": "hanClassics",
  6602. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6603. "onresize": function () { }
  6604. }, {
  6605. closecallback: function () { }
  6606. }, { "style": { "height": "36px" } }).form; //创建窗体
  6607. _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); } }
  6608. break;
  6609. case "hanTraining":
  6610. _formdiv = new U.UF.UI.form(
  6611. "笔画训练",
  6612. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6613. "id": "hanTraining",
  6614. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6615. "onresize": function () { }
  6616. }, {
  6617. closecallback: function () { }
  6618. }, { "style": { "height": "36px" } }).form; //创建窗体
  6619. _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); } }
  6620. break;
  6621. case "hanClass":
  6622. _formdiv = new U.UF.UI.form(
  6623. "书法课堂",
  6624. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6625. "id": "hanClass",
  6626. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6627. "onresize": function () { }
  6628. }, {
  6629. closecallback: function () { }
  6630. }, { "style": { "height": "36px" } }).form; //创建窗体
  6631. _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); } }
  6632. break;
  6633. case "han":
  6634. _formdiv = new U.UF.UI.form(
  6635. "汉字宫",
  6636. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6637. "id": "han",
  6638. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6639. "onresize": function () { }
  6640. }, {
  6641. closecallback: function () { }
  6642. }, { "style": { "height": "36px" } }).form; //创建窗体
  6643. _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); } }
  6644. break;
  6645. case "projectGM": //课程管理
  6646. _formdiv = new U.UF.UI.form(
  6647. "课程管理",
  6648. $$("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 }), {
  6649. "id": "projectGM",
  6650. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6651. "onresize": function () { }
  6652. }, {
  6653. closecallback: function () { }
  6654. }, { "style": { "height": "36px" } }).form; //创建窗体
  6655. _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); } }
  6656. break;
  6657. case "studyGM": //课程中心
  6658. _formdiv = new U.UF.UI.form(
  6659. "课程中心",
  6660. $$("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
  6661. "id": "study",
  6662. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6663. "onresize": function () { }
  6664. }, {
  6665. closecallback: function () { }
  6666. }, { "style": { "height": "36px" } }).form; //创建窗体
  6667. _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); } }
  6668. break;
  6669. // studentGM
  6670. case "studentGM": //学生管理
  6671. _formdiv = new U.UF.UI.form(
  6672. "学生管理",
  6673. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studentGM?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org }), {
  6674. "id": "studentGM",
  6675. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6676. "onresize": function () { }
  6677. }, {
  6678. closecallback: function () { }
  6679. }, { "style": { "height": "36px" } }).form; //创建窗体
  6680. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6681. break;
  6682. case "evaluateGM": //学生评价
  6683. _formdiv = new U.UF.UI.form(
  6684. "学生评价",
  6685. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/worksGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6686. "id": "evaluateGM",
  6687. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6688. "onresize": function () { }
  6689. }, {
  6690. closecallback: function () { }
  6691. }, { "style": { "height": "36px" } }).form; //创建窗体
  6692. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6693. break;
  6694. // classGM
  6695. case "classGM": //班级管理
  6696. _formdiv = new U.UF.UI.form(
  6697. "班级管理",
  6698. $$("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 }), {
  6699. "id": "classGM",
  6700. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6701. "onresize": function () { }
  6702. }, {
  6703. closecallback: function () { }
  6704. }, { "style": { "height": "36px" } }).form; //创建窗体
  6705. _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); } }
  6706. break;
  6707. // dataGM
  6708. case "dataGM":
  6709. _formdiv = new U.UF.UI.form(
  6710. "我的资料",
  6711. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/dataGM?userid=" + _userid + "&org=" + _org }), {
  6712. "id": "dataGM",
  6713. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6714. "onresize": function () { }
  6715. }, {
  6716. closecallback: function () { }
  6717. }, { "style": { "height": "36px" } }).form; //创建窗体
  6718. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/data.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6719. break;
  6720. // caseGM
  6721. case "caseGM": //课程进展
  6722. _formdiv = new U.UF.UI.form(
  6723. "课程进展",
  6724. $$("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 }), {
  6725. "id": "caseGM",
  6726. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6727. "onresize": function () { }
  6728. }, {
  6729. closecallback: function () { }
  6730. }, { "style": { "height": "36px" } }).form; //创建窗体
  6731. _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); } }
  6732. break;
  6733. // meterialGM
  6734. case "meterialGM": //素材库
  6735. _formdiv = new U.UF.UI.form(
  6736. "素材库",
  6737. $$("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 }), {
  6738. "id": "meterialGM",
  6739. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6740. "onresize": function () { }
  6741. }, {
  6742. closecallback: function () { }
  6743. }, { "style": { "height": "36px" } }).form; //创建窗体
  6744. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/material.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6745. break;
  6746. // evaluateSGM
  6747. case "evaluateSGM": //我的评价
  6748. _formdiv = new U.UF.UI.form(
  6749. "我的评价",
  6750. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/worksGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6751. "id": "evaluateSGM",
  6752. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6753. "onresize": function () { }
  6754. }, {
  6755. closecallback: function () { }
  6756. }, { "style": { "height": "36px" } }).form; //创建窗体
  6757. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6758. break;
  6759. case "jupyter": //jupyter
  6760. _formdiv = new U.UF.UI.form(
  6761. "jupyter",
  6762. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6763. "id": "jupyter",
  6764. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6765. "onresize": function () { }
  6766. }, {
  6767. closecallback: function () { }
  6768. }, { "style": { "height": "36px" } }).form; //创建窗体
  6769. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/jupyter.png)" }, "name": "jupyter", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6770. break;
  6771. case "number": //数字实验室
  6772. _formdiv = new U.UF.UI.form(
  6773. "数字实验室",
  6774. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6775. "id": "number",
  6776. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6777. "onresize": function () { }
  6778. }, {
  6779. closecallback: function () { }
  6780. }, { "style": { "height": "36px" } }).form; //创建窗体
  6781. _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); } }
  6782. break;
  6783. case "studentCourse": //项目管理 学生
  6784. _formdiv = new U.UF.UI.form(
  6785. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6786. $$("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 }), {
  6787. "id": "studentCourse",
  6788. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6789. "onresize": function () { }
  6790. }, {
  6791. closecallback: function () { }
  6792. }, { "style": { "height": "36px" } }).form; //创建窗体
  6793. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6794. break;
  6795. case "studentCourseS": //项目管理 老师
  6796. _formdiv = new U.UF.UI.form(
  6797. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6798. $$("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 }), {
  6799. "id": "studentCourseS",
  6800. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6801. "onresize": function () { }
  6802. }, {
  6803. closecallback: function () { }
  6804. }, { "style": { "height": "36px" } }).form; //创建窗体
  6805. _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); } }
  6806. break;
  6807. case "studentIndex": //项目中心
  6808. _formdiv = new U.UF.UI.form(
  6809. "项目中心",
  6810. $$("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 }), {
  6811. "id": "studentIndex",
  6812. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6813. "onresize": function () { }
  6814. }, {
  6815. closecallback: function () { }
  6816. }, { "style": { "height": "36px" } }).form; //创建窗体
  6817. _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); } }
  6818. break;
  6819. case "CaseDesignS":
  6820. _formdiv = new U.UF.UI.form(
  6821. "项目进展",
  6822. $$("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 }), {
  6823. "id": "case",
  6824. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6825. "onresize": function () { }
  6826. }, {
  6827. closecallback: function () { }
  6828. }, { "style": { "height": "36px" } }).form; //创建窗体
  6829. _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); } }
  6830. break;
  6831. case "tcStudent": //腾讯学生管理
  6832. _formdiv = new U.UF.UI.form(
  6833. "学生管理",
  6834. $$("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 }), {
  6835. "id": "tcStudent",
  6836. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6837. "onresize": function () { }
  6838. }, {
  6839. closecallback: function () { }
  6840. }, { "style": { "height": "36px" } }).form; //创建窗体
  6841. _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); } }
  6842. break;
  6843. case "tcSchool": //腾讯学校管理
  6844. _formdiv = new U.UF.UI.form(
  6845. "学校管理",
  6846. $$("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 }), {
  6847. "id": "tcSchool",
  6848. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6849. "onresize": function () { }
  6850. }, {
  6851. closecallback: function () { }
  6852. }, { "style": { "height": "36px" } }).form; //创建窗体
  6853. _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); } }
  6854. break;
  6855. case "tcTeacher": //腾讯学校管理
  6856. _formdiv = new U.UF.UI.form(
  6857. "教师管理",
  6858. $$("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 }), {
  6859. "id": "tcTeacher",
  6860. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6861. "onresize": function () { }
  6862. }, {
  6863. closecallback: function () { }
  6864. }, { "style": { "height": "36px" } }).form; //创建窗体
  6865. _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); } }
  6866. break;
  6867. case "teacher":
  6868. _formdiv = new U.UF.UI.form(
  6869. "教师管理",
  6870. $$("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 }), {
  6871. "id": "teacher",
  6872. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6873. "onresize": function () { }
  6874. }, {
  6875. closecallback: function () { }
  6876. }, { "style": { "height": "36px" } }).form; //创建窗体
  6877. _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); } }
  6878. break;
  6879. case "tcData": //腾讯我的资料
  6880. _formdiv = new U.UF.UI.form(
  6881. "我的资料",
  6882. $$("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 }), {
  6883. "id": "tcData",
  6884. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6885. "onresize": function () { }
  6886. }, {
  6887. closecallback: function () { }
  6888. }, { "style": { "height": "36px" } }).form; //创建窗体
  6889. _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); } }
  6890. break;
  6891. case "tcNotice": //腾讯消息通知
  6892. _formdiv = new U.UF.UI.form(
  6893. "消息通知",
  6894. $$("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 }), {
  6895. "id": "tcNotice",
  6896. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6897. "onresize": function () { }
  6898. }, {
  6899. closecallback: function () { }
  6900. }, { "style": { "height": "36px" } }).form; //创建窗体
  6901. _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); } }
  6902. break;
  6903. case "myReport": //好友打开
  6904. _formdiv = new U.UF.UI.form(
  6905. "我的评价",
  6906. $$("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 }), {
  6907. "id": "myReport",
  6908. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6909. "onresize": function () { }
  6910. }, {
  6911. closecallback: function () { }
  6912. }, { "style": { "height": "36px" } }).form; //创建窗体
  6913. _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); } }
  6914. break;
  6915. case "learnAna": //好友打开
  6916. _formdiv = new U.UF.UI.form(
  6917. "学习分析",
  6918. $$("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 }), {
  6919. "id": "learnAna",
  6920. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6921. "onresize": function () { }
  6922. }, {
  6923. closecallback: function () { }
  6924. }, { "style": { "height": "36px" } }).form; //创建窗体
  6925. _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); } }
  6926. break;
  6927. case "AIChat": //AI共创
  6928. _formdiv = new U.UF.UI.form(
  6929. "AI共创",
  6930. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6931. "id": "AIChat",
  6932. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6933. "onresize": function () { }
  6934. }, {
  6935. istop: true,
  6936. closecallback: function () { $("#aichat_icon").remove(); },
  6937. narrowcallback: function () {
  6938. if (!$("#aichat_icon")[0]) {
  6939. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6940. }
  6941. },
  6942. }, { "style": { "height": "36px" } }).form; //创建窗体
  6943. _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); } }
  6944. break;
  6945. case "ainew": //AI共创
  6946. _formdiv = new U.UF.UI.form(
  6947. "AI协同",
  6948. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6949. "id": "ainew",
  6950. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6951. "onresize": function () { }
  6952. }, {
  6953. closecallback: function () { }
  6954. }, { "style": { "height": "36px" } }).form; //创建窗体
  6955. _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); } }
  6956. break;
  6957. case "gpt4": //gpt4
  6958. _formdiv = new U.UF.UI.form(
  6959. "AI助手",
  6960. $$("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 }), {
  6961. "id": "gpt4",
  6962. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6963. "onresize": function () { }
  6964. }, {
  6965. closecallback: function () { }
  6966. }, { "style": { "height": "36px" } }).form; //创建窗体
  6967. _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); } }
  6968. break;
  6969. case "aigpt": //gpt4
  6970. _formdiv = new U.UF.UI.form(
  6971. "AI助手+",
  6972. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6973. "id": "aigpt",
  6974. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6975. "onresize": function () { }
  6976. }, {
  6977. closecallback: function () {
  6978. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6979. }
  6980. }, { "style": { "height": "36px" } }).form; //创建窗体
  6981. _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); } }
  6982. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6983. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6984. })
  6985. break;
  6986. case "aiKnowledge": //aiKnowledge
  6987. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  6988. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  6989. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  6990. }
  6991. _formdiv = new U.UF.UI.form(
  6992. "知识建构",
  6993. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": _url }), {
  6994. "id": "aiKnowledge",
  6995. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6996. "onresize": function () { }
  6997. }, {
  6998. closecallback: function () { }
  6999. }, { "style": { "height": "36px" } }).form; //创建窗体
  7000. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aiKnowledge.png)" }, "name": "知识建构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7001. break;
  7002. case "futureClass": //AI共创
  7003. _formdiv = new U.UF.UI.form(
  7004. "协同建构",
  7005. $$("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
  7006. "id": "synergyCourse",
  7007. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7008. "onresize": function () { }
  7009. }, {
  7010. closecallback: function () {
  7011. $("iframe", _formdiv)[0].contentWindow.loginout();
  7012. }
  7013. }, { "style": { "height": "36px" } }).form; //创建窗体
  7014. _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); } }
  7015. break;
  7016. case "aiagent": //ai agent
  7017. _formdiv = new U.UF.UI.form(
  7018. "AI Agent",
  7019. $$("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" }), {
  7020. "id": "AIAgent",
  7021. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7022. "onresize": function () { }
  7023. }, {
  7024. closecallback: function () { }
  7025. }, { "style": { "height": "36px" } }).form; //创建窗体
  7026. _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); } }
  7027. break;
  7028. case "dataBoard": //数据看板
  7029. _formdiv = new U.UF.UI.form(
  7030. "数据看板",
  7031. $$("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 }), {
  7032. "id": "dataBoard",
  7033. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7034. "onresize": function () { }
  7035. }, {
  7036. closecallback: function () { }
  7037. }, { "style": { "height": "36px" } }).form; //创建窗体
  7038. _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); } }
  7039. break;
  7040. case "dataBoardSies": //数据融合
  7041. _formdiv = new U.UF.UI.form(
  7042. "数据融合",
  7043. $$("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 }), {
  7044. "id": "dataBoardSies",
  7045. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7046. "onresize": function () { }
  7047. }, {
  7048. closecallback: function () { }
  7049. }, { "style": { "height": "36px" } }).form; //创建窗体
  7050. _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); } }
  7051. break;
  7052. case "dataBoardNew": //数据看板
  7053. _formdiv = new U.UF.UI.form(
  7054. "综合看板",
  7055. $$("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 }), {
  7056. "id": "dataBoardNew",
  7057. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7058. "onresize": function () { }
  7059. }, {
  7060. closecallback: function () { }
  7061. }, { "style": { "height": "36px" } }).form; //创建窗体
  7062. _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); } }
  7063. break;
  7064. case "dataBoardTest": //数据看板
  7065. _formdiv = new U.UF.UI.form(
  7066. "评测看板",
  7067. $$("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 }), {
  7068. "id": "dataBoardTest",
  7069. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7070. "onresize": function () { }
  7071. }, {
  7072. closecallback: function () { }
  7073. }, { "style": { "height": "36px" } }).form; //创建窗体
  7074. _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); } }
  7075. break;
  7076. case "AIAnalyse": //AI共创
  7077. _formdiv = new U.UF.UI.form(
  7078. "AI分析",
  7079. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  7080. "id": "AIAnalyse",
  7081. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7082. "onresize": function () { }
  7083. }, {
  7084. closecallback: function () { }
  7085. }, { "style": { "height": "36px" } }).form; //创建窗体
  7086. _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); } }
  7087. break;
  7088. case "studioCourse": //AI共创
  7089. _formdiv = new U.UF.UI.form(
  7090. "工作管理",
  7091. $$("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 }), {
  7092. "id": "studioCourse",
  7093. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7094. "onresize": function () { }
  7095. }, {
  7096. closecallback: function () { }
  7097. }, { "style": { "height": "36px" } }).form; //创建窗体
  7098. _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); } }
  7099. break;
  7100. case "studioIndex": //AI共创
  7101. _formdiv = new U.UF.UI.form(
  7102. "工作中心",
  7103. $$("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 }), {
  7104. "id": "studioIndex",
  7105. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7106. "onresize": function () { }
  7107. }, {
  7108. closecallback: function () { }
  7109. }, { "style": { "height": "36px" } }).form; //创建窗体
  7110. _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); } }
  7111. break;
  7112. case "source":
  7113. _formdiv = new U.UF.UI.form(
  7114. "教学资源",
  7115. $$("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 }), {
  7116. "id": "source",
  7117. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7118. "onresize": function () { }
  7119. }, {
  7120. closecallback: function () { }
  7121. }, { "style": { "height": "36px" } }).form; //创建窗体
  7122. _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); } }
  7123. break;
  7124. case "testTeacher":
  7125. _formdiv = new U.UF.UI.form(
  7126. "智能表单",
  7127. $$("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 }), {
  7128. "id": "testTeacher",
  7129. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7130. "onresize": function () { }
  7131. }, {
  7132. closecallback: function () { }
  7133. }, { "style": { "height": "36px" } }).form; //创建窗体
  7134. _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); } }
  7135. break;
  7136. case "testStudent":
  7137. _formdiv = new U.UF.UI.form(
  7138. "教师中心",
  7139. $$("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 }), {
  7140. "id": "testStudent",
  7141. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7142. "onresize": function () { }
  7143. }, {
  7144. closecallback: function () { }
  7145. }, { "style": { "height": "36px" } }).form; //创建窗体
  7146. _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); } }
  7147. break;
  7148. case "testTeacherSies":
  7149. _formdiv = new U.UF.UI.form(
  7150. "教师管理",
  7151. $$("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 }), {
  7152. "id": "testTeacherSies",
  7153. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7154. "onresize": function () { }
  7155. }, {
  7156. closecallback: function () { }
  7157. }, { "style": { "height": "36px" } }).form; //创建窗体
  7158. _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); } }
  7159. break;
  7160. case "testStudentSies":
  7161. _formdiv = new U.UF.UI.form(
  7162. "教师中心",
  7163. $$("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 }), {
  7164. "id": "testStudentSies",
  7165. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7166. "onresize": function () { }
  7167. }, {
  7168. closecallback: function () { }
  7169. }, { "style": { "height": "36px" } }).form; //创建窗体
  7170. _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); } }
  7171. break;
  7172. case "ytpbl": //消息通知
  7173. _formdiv = new U.UF.UI.form(
  7174. "案例征集",
  7175. $$("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 }), {
  7176. "id": "ytpbl",
  7177. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7178. "onresize": function () { }
  7179. }, {
  7180. closecallback: function () { }
  7181. }, { "style": { "height": "36px" } }).form; //创建窗体
  7182. _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); } }
  7183. // 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");
  7184. break;
  7185. case "aiCourseResource": //人工智能窗体
  7186. _formdiv = new U.UF.UI.form(
  7187. false,
  7188. $$("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 }), {
  7189. "id": "aiCourseResource",
  7190. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7191. "onresize": function () { },
  7192. "isdrag": false,
  7193. }, {
  7194. closecallback: function () { }
  7195. }, { "style": { "height": "36px" } }).form; //创建窗体
  7196. _taskbar = ''
  7197. break;
  7198. case "szdjgCocooroboX": //图形化编程
  7199. _formdiv = new U.UF.UI.form(
  7200. "图形化编程",
  7201. $$("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" }), {
  7202. "id": "szdjgCocooroboX",
  7203. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7204. "onresize": function () { }
  7205. }, {
  7206. closecallback: function () { }
  7207. }, { "style": { "height": "36px" } }).form; //创建窗体
  7208. _taskbar = ''
  7209. break;
  7210. case "szdjgPython": //python编程
  7211. _formdiv = new U.UF.UI.form(
  7212. "Python编程",
  7213. $$("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" }), {
  7214. "id": "szdjgPython",
  7215. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7216. "onresize": function () { }
  7217. }, {
  7218. closecallback: function () { }
  7219. }, { "style": { "height": "36px" } }).form; //创建窗体
  7220. _taskbar = ''
  7221. break;
  7222. case "Record":
  7223. _formdiv = new U.UF.UI.form(
  7224. "观察记录",
  7225. $$("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 }), {
  7226. "id": "Record",
  7227. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7228. "onresize": function () { }
  7229. }, {
  7230. closecallback: function () { }
  7231. }, { "style": { "height": "36px" } }).form; //创建窗体
  7232. _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); } }
  7233. break;
  7234. case "aigptCourse":
  7235. _formdiv = new U.UF.UI.form(
  7236. "AI智能体",
  7237. $$("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' }), {
  7238. "id": "aigptCourse",
  7239. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7240. "onresize": function () { }
  7241. }, {
  7242. closecallback: function () { }
  7243. }, { "style": { "height": "36px" } }).form; //创建窗体
  7244. _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); } }
  7245. break;
  7246. case "classroomObservation":
  7247. _formdiv = new U.UF.UI.form(
  7248. "课堂观察",
  7249. $$("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 }), {
  7250. "id": "classroomObservation",
  7251. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7252. "onresize": function () { }
  7253. }, {
  7254. closecallback: function () { }
  7255. }, { "style": { "height": "36px" } }).form; //创建窗体
  7256. _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); } }
  7257. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7258. break;
  7259. case "pblCourse":
  7260. _formdiv = new U.UF.UI.form(
  7261. "学生PBL",
  7262. $$("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 }), {
  7263. "id": "pblCourse",
  7264. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7265. "onresize": function () { }
  7266. }, {
  7267. closecallback: function () { }
  7268. }, { "style": { "height": "36px" } }).form; //创建窗体
  7269. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "学生PBL", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7270. break;
  7271. case "appStore":
  7272. _formdiv = new U.UF.UI.form(
  7273. "CocoFlow",
  7274. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//beta.cloud.cocorobo.cn/aigpt/#/WorkSpace?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7275. "id": "appStore",
  7276. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7277. "onresize": function () { }
  7278. }, {
  7279. closecallback: function () { }
  7280. }, { "style": { "height": "36px" } }).form; //创建窗体
  7281. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/appStore.png)" }, "name": "CocoFlow", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7282. break;
  7283. case "sassPlatform":
  7284. _formdiv = new U.UF.UI.form(
  7285. "Sass通用后台管理",
  7286. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/sassPlatform?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7287. "id": "sassPlatform",
  7288. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7289. "onresize": function () { }
  7290. }, {
  7291. closecallback: function () { }
  7292. }, { "style": { "height": "36px" } }).form; //创建窗体
  7293. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/sassPlatForm.png)" }, "name": "sassPlatform", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7294. break;
  7295. case "EDU":
  7296. _formdiv = new U.UF.UI.form(
  7297. "EDU",
  7298. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//edu.cocorobo.cn" }), {
  7299. "id": "EDU",
  7300. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7301. "onresize": function () { }
  7302. }, {
  7303. closecallback: function () { }
  7304. }, { "style": { "height": "36px" } }).form; //创建窗体
  7305. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/EDU.png)" }, "name": "EDU", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7306. break;
  7307. case "knowledge":
  7308. _formdiv = new U.UF.UI.form(
  7309. "知识库",
  7310. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://storage.cocorobo.cn/dist/#/knowledge?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7311. "id": "knowledge",
  7312. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7313. "onresize": function () { }
  7314. }, {
  7315. closecallback: function () { }
  7316. }, { "style": { "height": "36px" } }).form; //创建窗体
  7317. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/knowledge.png)" }, "name": "knowledge", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7318. break;
  7319. case "userExamine":
  7320. _formdiv = new U.UF.UI.form(
  7321. "账号申请",
  7322. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//user.cocorobo.cn/#/examineDialog" }), {
  7323. "id": "userExamine",
  7324. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7325. "onresize": function () { }
  7326. }, {
  7327. closecallback: function () { }
  7328. }, { "style": { "height": "36px" } }).form; //创建窗体
  7329. break;
  7330. }
  7331. //U.MD.D.I.openClick(str);
  7332. //如果有任务栏信息
  7333. if (_taskbar) {
  7334. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7335. }
  7336. if(iframeBool){
  7337. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7338. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7339. // console.log("iframe进入");
  7340. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7341. // };
  7342. setTimeout(() => {
  7343. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7344. }, 2000);
  7345. }
  7346. }
  7347. // U.MD.D.I.openClick = function(str){
  7348. // var click = '';
  7349. // switch(str){
  7350. // case 'friend':
  7351. // click = '我的好友';
  7352. // break;
  7353. // case 'domain':
  7354. // click = '域名管理';
  7355. // break;
  7356. // case 'disk':
  7357. // click = '我的云盘';
  7358. // break;
  7359. // case 'word':
  7360. // click = 'Word';
  7361. // break;
  7362. // case 'excel':
  7363. // click = 'Execl';
  7364. // break;
  7365. // case 'txt':
  7366. // click = '文本文件';
  7367. // break;
  7368. // case 'lookupFriend':
  7369. // click = '查找好友';
  7370. // break;
  7371. // case 'ftp':
  7372. // click = 'FTP';
  7373. // break;
  7374. // case 'group':
  7375. // click = '群组';
  7376. // break;
  7377. // case 'set':
  7378. // click = '我的设置';
  7379. // break;
  7380. // case 'systemSet':
  7381. // click = '系统设置';
  7382. // break;
  7383. // case 'boomYun':
  7384. // click = '互联办公';
  7385. // break;
  7386. // case 'xz':
  7387. // click = '云端下载';
  7388. // break;
  7389. // case 'client':
  7390. // click = '有思浏览器';
  7391. // break;
  7392. // case 'backEndProgramming':
  7393. // click = '在线后台编程';
  7394. // break;
  7395. // case 'frontEndProgramming':
  7396. // click = '在线前端编程';
  7397. // break;
  7398. // default: break;
  7399. // }
  7400. // if(U.MD.D.I.Ip && click){
  7401. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7402. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7403. // })
  7404. // }
  7405. // }
  7406. /**
  7407. *函数作用:ajax简易函数,使用post格式
  7408. *@param url {data} 后台地址
  7409. *@param data {data} 参数json
  7410. *@param fn {data} 回调函数
  7411. *
  7412. */
  7413. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7414. // var xhr = new XMLHttpRequest();
  7415. // xhr.open("GET",url,true);
  7416. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7417. // xhr.onreadystatechange = function(){
  7418. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7419. // fn.call(this,xhr.responseText);
  7420. // }
  7421. // };
  7422. // xhr.send();
  7423. // }
  7424. /*判断是否是内网IP*/
  7425. // U.MD.D.I.isInnerIPFn = function(str){
  7426. // var curPageUrl = str;
  7427. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7428. // curPageUrl =curPageUrl.replace(reg1,'');
  7429. // // console.log('curPageUrl-1 '+curPageUrl);
  7430. // var reg2 = /\:+/g;//替换冒号为一点
  7431. // curPageUrl =curPageUrl.replace(reg2,'.');
  7432. // // console.log('curPageUrl-2 '+curPageUrl);
  7433. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7434. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7435. // if(curPageUrl[2] != '16'){
  7436. // return ipAddress;
  7437. // }else{
  7438. // return false;
  7439. // }
  7440. // }
  7441. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7442. // //compatibility for firefox and chrome
  7443. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7444. // var pc = new myPeerConnection({
  7445. // iceServers: []
  7446. // }),
  7447. // noop = function() {},
  7448. // localIPs = {},
  7449. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7450. // key;
  7451. // function iterateIP(ip) {
  7452. // if (!localIPs[ip]) onNewIP(ip);
  7453. // localIPs[ip] = true;
  7454. // }
  7455. // //create a bogus data channel
  7456. // pc.createDataChannel("");
  7457. // // create offer and set local description
  7458. // pc.createOffer().then(function(sdp) {
  7459. // sdp.sdp.split('\n').forEach(function(line) {
  7460. // if (line.indexOf('candidate') < 0) return;
  7461. // line.match(ipRegex).forEach(iterateIP);
  7462. // });
  7463. // pc.setLocalDescription(sdp, noop, noop);
  7464. // }).catch(function(reason) {
  7465. // // An error occurred, so handle the failure to connect
  7466. // });
  7467. // //sten for candidate events
  7468. // pc.onicecandidate = function(ice) {
  7469. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7470. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7471. // };
  7472. // }
  7473. // U.MD.D.I.getUserIpBool = function(callback){
  7474. // U.MD.D.I.getUserIP(function(ip){
  7475. // alert("Got IP! :" + ip);
  7476. // });
  7477. //}
  7478. //#endregion
  7479. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7480. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7481. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7482. _userinfo = US.userInfo, //登录用户信息
  7483. _userid = US.userInfo.userid //登录用户id
  7484. let _iframe;
  7485. let _cid = cid,
  7486. _stage = stage,
  7487. _task = task,
  7488. _tool = tool;
  7489. var _jie = $$("div", {
  7490. "style": {
  7491. "position": "absolute",
  7492. "bottom": "50px",
  7493. "right": "50px",
  7494. "zIndex": "9999",
  7495. "backgroundColor": "#2268bc",
  7496. "color": "#fff",
  7497. "padding": "12px 20px",
  7498. "cursor": "pointer",
  7499. "borderRadius": "4px",
  7500. },
  7501. "innerHTML": "提交作业"
  7502. })
  7503. let aTool = ''
  7504. let _loading = document.createElement('div')
  7505. _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;"
  7506. // _loading.id = "";
  7507. let _lchild = document.createElement('div')
  7508. let _limg = document.createElement('img')
  7509. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7510. _limg.style = "width: 26px;margin-right: 10px;"
  7511. _lchild.appendChild(_limg)
  7512. let _lspan = document.createElement('span')
  7513. _lspan.innerHTML = "上传中..."
  7514. _lchild.appendChild(_lspan)
  7515. _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%);"
  7516. _loading.appendChild(_lchild)
  7517. var _box = $$('div', {
  7518. "style": {
  7519. "position": "relative",
  7520. "width": "100%",
  7521. "height": "100%",
  7522. },
  7523. })
  7524. _box.appendChild(_loading)
  7525. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7526. switch (str) {
  7527. case "whiteboard":
  7528. aTool = 1;
  7529. _iframe = $$("iframe", {
  7530. "frameborder": "no",
  7531. "border": "0",
  7532. "scrolling ": "no",
  7533. "style": {
  7534. "cssText": "border:0;width:100%;height:100%"
  7535. },
  7536. "src": "https://beta.iwb.cocorobo.cn/"
  7537. })
  7538. _box.appendChild(_iframe);
  7539. _box.appendChild(_jie);
  7540. _formdiv = new U.UF.UI.form(
  7541. "电子白板",
  7542. _box, {
  7543. "id": "whiteboard" + cid + stage + task + tool,
  7544. "style": {
  7545. "width": "90%",
  7546. "height": "90%",
  7547. "overflow": 'hidden'
  7548. },
  7549. "onresize": function () { }
  7550. }, {
  7551. closecallback: function () { }
  7552. }, {
  7553. "style": {
  7554. "height": "36px"
  7555. }
  7556. }).form; //创建窗体
  7557. _taskbar = {
  7558. "id": str + _formdiv.id,
  7559. "style": {
  7560. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7561. },
  7562. "name": "电子白板",
  7563. "forms": _formdiv,
  7564. "click": function () {
  7565. U.MD.D.I.openApplication(str, obj, info);
  7566. }
  7567. }
  7568. break;
  7569. case "mind":
  7570. aTool = 3;
  7571. _iframe = $$("iframe", {
  7572. "frameborder": "no",
  7573. "border": "0",
  7574. "scrolling ": "no",
  7575. "style": {
  7576. "cssText": "border:0;width:100%;height:100%"
  7577. },
  7578. "src": "/kityminder-editor/dist/index.html"
  7579. })
  7580. _box.appendChild(_iframe);
  7581. _box.appendChild(_jie);
  7582. _formdiv = new U.UF.UI.form(
  7583. "思维导图",
  7584. _box, { //"/jsmind/example/demo.html"
  7585. "id": "mind" + cid + stage + task + tool,
  7586. "style": {
  7587. "width": "90%",
  7588. "height": "90%",
  7589. "overflow": 'hidden'
  7590. },
  7591. "onresize": function () { }
  7592. }, {
  7593. closecallback: function () { }
  7594. }, {
  7595. "style": {
  7596. "height": "36px"
  7597. }
  7598. }).form; //创建窗体
  7599. _taskbar = {
  7600. "id": str + _formdiv.id,
  7601. "style": {
  7602. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7603. },
  7604. "name": "思维导图",
  7605. "forms": _formdiv,
  7606. "click": function () {
  7607. U.MD.D.I.openApplication(str, obj, info);
  7608. }
  7609. }
  7610. break;
  7611. case "MindMap":
  7612. aTool = 3;
  7613. _iframe = $$("iframe", {
  7614. "frameborder": "no",
  7615. "border": "0",
  7616. "scrolling ": "no",
  7617. "style": {
  7618. "cssText": "border:0;width:100%;height:100%"
  7619. },
  7620. "src": "//cloud.cocorobo.cn/mind/"
  7621. })
  7622. _box.appendChild(_iframe);
  7623. _box.appendChild(_jie);
  7624. _formdiv = new U.UF.UI.form(
  7625. "思维导图",
  7626. _box, { //"/jsmind/example/demo.html"
  7627. "id": "mind" + cid + stage + task + tool,
  7628. "style": {
  7629. "width": "90%",
  7630. "height": "90%",
  7631. "overflow": 'hidden'
  7632. },
  7633. "onresize": function () { }
  7634. }, {
  7635. closecallback: function () { }
  7636. }, {
  7637. "style": {
  7638. "height": "36px"
  7639. }
  7640. }).form; //创建窗体
  7641. _taskbar = {
  7642. "id": str + _formdiv.id,
  7643. "style": {
  7644. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7645. },
  7646. "name": "思维导图",
  7647. "forms": _formdiv,
  7648. "click": function () {
  7649. U.MD.D.I.openApplication(str, obj, info);
  7650. }
  7651. }
  7652. break;
  7653. case "doc":
  7654. aTool = 6;
  7655. _iframe = $$("iframe", {
  7656. "frameborder": "no",
  7657. "border": "0",
  7658. "scrolling ": "no",
  7659. "style": {
  7660. "cssText": "border:0;width:100%;height:100%"
  7661. },
  7662. "src": "/Office/Word/WordEditArea.htm"
  7663. })
  7664. _box.appendChild(_iframe);
  7665. _box.appendChild(_jie);
  7666. _formdiv = new U.UF.UI.form(
  7667. "协同文档",
  7668. _box, {
  7669. "id": "doc" + cid + stage + task + tool,
  7670. "style": {
  7671. "width": "90%",
  7672. "height": "90%",
  7673. "overflow": 'hidden'
  7674. },
  7675. "onresize": function () { }
  7676. }, {
  7677. closecallback: function () { }
  7678. }, {
  7679. "style": {
  7680. "height": "36px"
  7681. }
  7682. }).form; //创建窗体
  7683. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7684. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7685. })
  7686. _taskbar = {
  7687. "id": str + _formdiv.id,
  7688. "style": {
  7689. "backgroundImage": "url(/img/icon/doc.png)"
  7690. },
  7691. "name": "协同文档",
  7692. "forms": _formdiv,
  7693. "click": function () {
  7694. U.MD.D.I.openApplication(str, obj, info);
  7695. }
  7696. }
  7697. break;
  7698. case "mindNetwork": //好友打开
  7699. aTool = 7;
  7700. _iframe = $$("iframe", {
  7701. "webkitallowfullscreen": "",
  7702. "mozallowfullscreen": "",
  7703. "allowfullscreen": "",
  7704. "frameborder": "no",
  7705. "border": "0",
  7706. "scrolling ": "no",
  7707. "style": {
  7708. "cssText": "border:0; width:100%; height:100%;"
  7709. },
  7710. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7711. })
  7712. _box.appendChild(_iframe);
  7713. _box.appendChild(_jie);
  7714. _formdiv = new U.UF.UI.form(
  7715. "思维网格",
  7716. _box, {
  7717. "id": "mindNetwork" + cid + stage + task + tool,
  7718. "style": {
  7719. "width": "90%",
  7720. "height": "90%",
  7721. "overflow": 'hidden'
  7722. },
  7723. "onresize": function () { }
  7724. }, {
  7725. closecallback: function () { }
  7726. }, {
  7727. "style": {
  7728. "height": "36px"
  7729. }
  7730. }).form; //创建窗体
  7731. _taskbar = {
  7732. "id": str + _formdiv.id,
  7733. "style": {
  7734. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7735. },
  7736. "name": "思维网格",
  7737. "forms": _formdiv,
  7738. "click": function () {
  7739. U.MD.D.I.openApplication(str, obj, info);
  7740. }
  7741. }
  7742. break;
  7743. case "courseDesign":
  7744. _iframe = $$("iframe", {
  7745. "webkitallowfullscreen": "",
  7746. "mozallowfullscreen": "",
  7747. "allowfullscreen": "",
  7748. "frameborder": "no",
  7749. "border": "0",
  7750. "scrolling ": "no",
  7751. "style": {
  7752. "cssText": "border:0; width:100%; height:100%;"
  7753. },
  7754. "src": "/course-design-vue"
  7755. })
  7756. _box.appendChild(_iframe);
  7757. _box.appendChild(_jie);
  7758. _formdiv = new U.UF.UI.form(
  7759. "项目设计",
  7760. _box, {
  7761. "id": "courseDesign" + cid + stage + task + tool,
  7762. "style": {
  7763. "width": "90%",
  7764. "height": "90%",
  7765. "overflow": 'hidden'
  7766. },
  7767. "onresize": function () { }
  7768. }, {
  7769. closecallback: function () { }
  7770. }, {
  7771. "style": {
  7772. "height": "36px"
  7773. }
  7774. }).form; //创建窗体
  7775. _taskbar = {
  7776. "id": str + _formdiv.id,
  7777. "style": {
  7778. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7779. },
  7780. "name": "项目设计",
  7781. "forms": _formdiv,
  7782. "click": function () {
  7783. U.MD.D.I.openApplication(str, obj, info);
  7784. }
  7785. }
  7786. break;
  7787. }
  7788. const script1 = document.createElement("script");
  7789. script1.type = "text/javascript";
  7790. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7791. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7792. const script2 = document.createElement("script");
  7793. script2.type = "text/javascript";
  7794. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7795. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7796. const script3 = document.createElement("script");
  7797. script3.type = "text/javascript";
  7798. script3.charset = "UTF-8";
  7799. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7800. const script4 = document.createElement("script");
  7801. script4.type = "text/javascript";
  7802. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7803. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7804. if (_iframe) {
  7805. if (str == 'doc') {
  7806. _iframe = _formdiv.querySelector('iframe')
  7807. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7808. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7809. _iframe.contentWindow.document.body.appendChild(script1);
  7810. _iframe.contentWindow.document.body.appendChild(script2);
  7811. // _iframe.contentWindow.document.body.appendChild(script3);
  7812. _iframe.contentWindow.document.body.appendChild(script4);
  7813. })
  7814. if (onloadListener) {
  7815. _iframe.contentDocument.location.reload()
  7816. } else {
  7817. _iframe.contentDocument.location.reload()
  7818. }
  7819. } else if (str == 'courseDesign') {
  7820. U.UF.DL.iframeLoad(_iframe, function () {
  7821. // _iframe.contentWindow.U.MD.O.W.load();
  7822. // _iframe.contentWindow.document.body.appendChild(script1);
  7823. _iframe.contentWindow.document.body.appendChild(script2);
  7824. _iframe.contentWindow.document.body.appendChild(script4);
  7825. })
  7826. } else if (str == 'mind') {
  7827. _iframe = _formdiv.querySelector('iframe')
  7828. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7829. //
  7830. _iframe.contentWindow.document.body.appendChild(script1);
  7831. _iframe.contentWindow.document.body.appendChild(script2);
  7832. _iframe.contentWindow.document.body.appendChild(script4);
  7833. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7834. })
  7835. if (onloadListener) {
  7836. _iframe.contentDocument.location.reload()
  7837. } else {
  7838. _iframe.contentDocument.location.reload()
  7839. }
  7840. } else if (str == 'whiteboard') {
  7841. _iframe = _formdiv.querySelector('iframe')
  7842. let onloadListener = _iframe.onload = () => {
  7843. _iframe.contentWindow.document.body.appendChild(script1);
  7844. _iframe.contentWindow.document.body.appendChild(script2);
  7845. _iframe.contentWindow.document.body.appendChild(script4);
  7846. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7847. };
  7848. // if (onloadListener) {
  7849. // try {
  7850. // _iframe.src += "?cocorobo="+new Date().getTime()
  7851. // _iframe.contentWindow.document.location.reload()
  7852. // } catch (error) {
  7853. // }
  7854. // } else {
  7855. // _iframe.contentDocument.location.reload()
  7856. // }
  7857. } else {
  7858. _iframe.onload = () => {
  7859. _iframe.contentWindow.document.body.appendChild(script1);
  7860. _iframe.contentWindow.document.body.appendChild(script2);
  7861. // _iframe.contentWindow.document.body.appendChild(script3);
  7862. _iframe.contentWindow.document.body.appendChild(script4);
  7863. };
  7864. }
  7865. _jie.onclick = async () => {
  7866. let text = ''
  7867. if (aTool == 1) {
  7868. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7869. } else if (aTool == 6) {
  7870. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7871. } else if (aTool == 3) {
  7872. text = await U.MD.D.I.getEditorContent(_iframe);
  7873. }
  7874. _loading.style.display = 'flex'
  7875. console.log(_loading);
  7876. var _ajs = _iframe.contentWindow.document.createElement("script");
  7877. _ajs.type = "text/javascript";
  7878. _ajs.innerHTML =
  7879. // 'console.log(' + _loading + ');\n' +
  7880. 'var _js = document.createElement("script");\n' +
  7881. '_js.type="text/javascript";\n' +
  7882. '_js.charset="UTF-8";\n' +
  7883. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7884. "_js.onload = function(){\n" +
  7885. ' var a = document.getElementsByTagName("img")\n' +
  7886. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7887. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7888. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7889. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7890. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7891. "beforeUpload_shishi(file," +
  7892. "'" +
  7893. _userid +
  7894. "'" +
  7895. ", " +
  7896. "'" +
  7897. _cid +
  7898. "'" +
  7899. ", " +
  7900. "'" +
  7901. _stage +
  7902. "'" +
  7903. ", " +
  7904. "'" +
  7905. _task +
  7906. "'" +
  7907. ", " +
  7908. "'" +
  7909. _tool +
  7910. "'" +
  7911. ", " +
  7912. "'" +
  7913. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7914. "'" +
  7915. ", " +
  7916. "'" +
  7917. aTool +
  7918. "'" +
  7919. ", " +
  7920. "`" +
  7921. text +
  7922. "`" +
  7923. ")\n" +
  7924. " });\n" +
  7925. "}\n" +
  7926. "document.head.appendChild(_js);\n";
  7927. _iframe.contentWindow.document.head.appendChild(_ajs);
  7928. }
  7929. }
  7930. //U.MD.D.I.openClick(str);
  7931. //如果有任务栏信息
  7932. // if (_taskbar) {
  7933. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7934. // }
  7935. }
  7936. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7937. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7938. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7939. _userinfo = US.userInfo, //登录用户信息
  7940. _userid = US.userInfo.userid //登录用户id
  7941. let _iframe;
  7942. let _cid = cid,
  7943. _stage = stage,
  7944. _task = task,
  7945. _tool = tool;
  7946. var _jie = $$("div", {
  7947. "style": {
  7948. "position": "absolute",
  7949. "bottom": "50px",
  7950. "right": "50px",
  7951. "zIndex": "9999",
  7952. "backgroundColor": "#2268bc",
  7953. "color": "#fff",
  7954. "padding": "12px 20px",
  7955. "cursor": "pointer",
  7956. "borderRadius": "4px",
  7957. },
  7958. "innerHTML": "提交作业"
  7959. })
  7960. let aTool = ''
  7961. let _loading = document.createElement('div')
  7962. _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;"
  7963. // _loading.id = "";
  7964. let _lchild = document.createElement('div')
  7965. let _limg = document.createElement('img')
  7966. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7967. _limg.style = "width: 26px;margin-right: 10px;"
  7968. _lchild.appendChild(_limg)
  7969. let _lspan = document.createElement('span')
  7970. _lspan.innerHTML = "上传中..."
  7971. _lchild.appendChild(_lspan)
  7972. _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%);"
  7973. _loading.appendChild(_lchild)
  7974. let _box = $$('div', {
  7975. "style": {
  7976. "position": "relative",
  7977. "width": "100%",
  7978. "height": "100%",
  7979. },
  7980. })
  7981. _box.appendChild(_loading)
  7982. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7983. switch (str) {
  7984. case "whiteboard":
  7985. aTool = 1;
  7986. _iframe = $$("iframe", {
  7987. "frameborder": "no",
  7988. "border": "0",
  7989. "scrolling ": "no",
  7990. "style": {
  7991. "cssText": "border:0;width:100%;height:100%"
  7992. },
  7993. "src": "https://beta.iwb.cocorobo.cn/"
  7994. })
  7995. _box.appendChild(_iframe);
  7996. _box.appendChild(_jie);
  7997. _formdiv = new U.UF.UI.form(
  7998. "电子白板",
  7999. _box, {
  8000. "id": "whiteboard" + cid + stage + task + tool,
  8001. "style": {
  8002. "width": "90%",
  8003. "height": "90%",
  8004. "overflow": 'hidden'
  8005. },
  8006. "onresize": function () { }
  8007. }, {
  8008. closecallback: function () { }
  8009. }, {
  8010. "style": {
  8011. "height": "36px"
  8012. }
  8013. }).form; //创建窗体
  8014. _taskbar = {
  8015. "id": str + _formdiv.id,
  8016. "style": {
  8017. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8018. },
  8019. "name": "电子白板",
  8020. "forms": _formdiv,
  8021. "click": function () {
  8022. U.MD.D.I.openApplication(str, obj, info);
  8023. }
  8024. }
  8025. break;
  8026. case "mind":
  8027. aTool = 3;
  8028. _iframe = $$("iframe", {
  8029. "frameborder": "no",
  8030. "border": "0",
  8031. "scrolling ": "no",
  8032. "style": {
  8033. "cssText": "border:0;width:100%;height:100%"
  8034. },
  8035. "src": "/kityminder-editor/dist/index.html"
  8036. })
  8037. _box.appendChild(_iframe);
  8038. _box.appendChild(_jie);
  8039. _formdiv = new U.UF.UI.form(
  8040. "思维导图",
  8041. _box, { //"/jsmind/example/demo.html"
  8042. "id": "mind" + cid + stage + task + tool,
  8043. "style": {
  8044. "width": "90%",
  8045. "height": "90%",
  8046. "overflow": 'hidden'
  8047. },
  8048. "onresize": function () { }
  8049. }, {
  8050. closecallback: function () { }
  8051. }, {
  8052. "style": {
  8053. "height": "36px"
  8054. }
  8055. }).form; //创建窗体
  8056. _taskbar = {
  8057. "id": str + _formdiv.id,
  8058. "style": {
  8059. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8060. },
  8061. "name": "思维导图",
  8062. "forms": _formdiv,
  8063. "click": function () {
  8064. U.MD.D.I.openApplication(str, obj, info);
  8065. }
  8066. }
  8067. break;
  8068. case "MindMap":
  8069. aTool = 3;
  8070. _iframe = $$("iframe", {
  8071. "frameborder": "no",
  8072. "border": "0",
  8073. "scrolling ": "no",
  8074. "style": {
  8075. "cssText": "border:0;width:100%;height:100%"
  8076. },
  8077. "src": "//cloud.cocorobo.cn/mind/"
  8078. })
  8079. _box.appendChild(_iframe);
  8080. _box.appendChild(_jie);
  8081. _formdiv = new U.UF.UI.form(
  8082. "思维导图",
  8083. _box, { //"/jsmind/example/demo.html"
  8084. "id": "mind" + cid + stage + task + tool,
  8085. "style": {
  8086. "width": "90%",
  8087. "height": "90%",
  8088. "overflow": 'hidden'
  8089. },
  8090. "onresize": function () { }
  8091. }, {
  8092. closecallback: function () { }
  8093. }, {
  8094. "style": {
  8095. "height": "36px"
  8096. }
  8097. }).form; //创建窗体
  8098. _taskbar = {
  8099. "id": str + _formdiv.id,
  8100. "style": {
  8101. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8102. },
  8103. "name": "思维导图",
  8104. "forms": _formdiv,
  8105. "click": function () {
  8106. U.MD.D.I.openApplication(str, obj, info);
  8107. }
  8108. }
  8109. break;
  8110. case "doc":
  8111. aTool = 6;
  8112. _iframe = $$("iframe", {
  8113. "frameborder": "no",
  8114. "border": "0",
  8115. "scrolling ": "no",
  8116. "style": {
  8117. "cssText": "border:0;width:100%;height:100%"
  8118. },
  8119. "src": "/Office/Word/WordEditArea.htm"
  8120. })
  8121. _box.appendChild(_iframe);
  8122. _box.appendChild(_jie);
  8123. _formdiv = new U.UF.UI.form(
  8124. "协同文档",
  8125. _box, {
  8126. "id": "doc" + cid + stage + task + tool,
  8127. "style": {
  8128. "width": "90%",
  8129. "height": "90%",
  8130. "overflow": 'hidden'
  8131. },
  8132. "onresize": function () { }
  8133. }, {
  8134. closecallback: function () { }
  8135. }, {
  8136. "style": {
  8137. "height": "36px"
  8138. }
  8139. }).form; //创建窗体
  8140. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8141. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8142. })
  8143. _taskbar = {
  8144. "id": str + _formdiv.id,
  8145. "style": {
  8146. "backgroundImage": "url(/img/icon/doc.png)"
  8147. },
  8148. "name": "协同文档",
  8149. "forms": _formdiv,
  8150. "click": function () {
  8151. U.MD.D.I.openApplication(str, obj, info);
  8152. }
  8153. }
  8154. break;
  8155. case "mindNetwork": //好友打开
  8156. aTool = 7;
  8157. _iframe = $$("iframe", {
  8158. "webkitallowfullscreen": "",
  8159. "mozallowfullscreen": "",
  8160. "allowfullscreen": "",
  8161. "frameborder": "no",
  8162. "border": "0",
  8163. "scrolling ": "no",
  8164. "style": {
  8165. "cssText": "border:0; width:100%; height:100%;"
  8166. },
  8167. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8168. })
  8169. _box.appendChild(_iframe);
  8170. _box.appendChild(_jie);
  8171. _formdiv = new U.UF.UI.form(
  8172. "思维网格",
  8173. _box, {
  8174. "id": "mindNetwork" + cid + stage + task + tool,
  8175. "style": {
  8176. "width": "90%",
  8177. "height": "90%",
  8178. "overflow": 'hidden'
  8179. },
  8180. "onresize": function () { }
  8181. }, {
  8182. closecallback: function () { }
  8183. }, {
  8184. "style": {
  8185. "height": "36px"
  8186. }
  8187. }).form; //创建窗体
  8188. _taskbar = {
  8189. "id": str + _formdiv.id,
  8190. "style": {
  8191. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8192. },
  8193. "name": "思维网格",
  8194. "forms": _formdiv,
  8195. "click": function () {
  8196. U.MD.D.I.openApplication(str, obj, info);
  8197. }
  8198. }
  8199. break;
  8200. case "courseDesign":
  8201. _iframe = $$("iframe", {
  8202. "webkitallowfullscreen": "",
  8203. "mozallowfullscreen": "",
  8204. "allowfullscreen": "",
  8205. "frameborder": "no",
  8206. "border": "0",
  8207. "scrolling ": "no",
  8208. "style": {
  8209. "cssText": "border:0; width:100%; height:100%;"
  8210. },
  8211. "src": "/course-design-vue"
  8212. })
  8213. _box.appendChild(_iframe);
  8214. _box.appendChild(_jie);
  8215. _formdiv = new U.UF.UI.form(
  8216. "项目设计",
  8217. _box, {
  8218. "id": "courseDesign" + cid + stage + task + tool,
  8219. "style": {
  8220. "width": "90%",
  8221. "height": "90%",
  8222. "overflow": 'hidden'
  8223. },
  8224. "onresize": function () { }
  8225. }, {
  8226. closecallback: function () { }
  8227. }, {
  8228. "style": {
  8229. "height": "36px"
  8230. }
  8231. }).form; //创建窗体
  8232. _taskbar = {
  8233. "id": str + _formdiv.id,
  8234. "style": {
  8235. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8236. },
  8237. "name": "项目设计",
  8238. "forms": _formdiv,
  8239. "click": function () {
  8240. U.MD.D.I.openApplication(str, obj, info);
  8241. }
  8242. }
  8243. break;
  8244. }
  8245. const script1 = document.createElement("script");
  8246. script1.type = "text/javascript";
  8247. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8248. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8249. const script2 = document.createElement("script");
  8250. script2.type = "text/javascript";
  8251. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8252. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8253. const script3 = document.createElement("script");
  8254. script3.type = "text/javascript";
  8255. script3.charset = "UTF-8";
  8256. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8257. const script4 = document.createElement("script");
  8258. script4.type = "text/javascript";
  8259. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8260. script4.src = window.origin + "/js/Common/jietu2E.js";
  8261. if (_iframe) {
  8262. if (str == 'doc') {
  8263. _iframe = _formdiv.querySelector('iframe')
  8264. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8265. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8266. _iframe.contentWindow.document.body.appendChild(script1);
  8267. _iframe.contentWindow.document.body.appendChild(script2);
  8268. // _iframe.contentWindow.document.body.appendChild(script3);
  8269. _iframe.contentWindow.document.body.appendChild(script4);
  8270. })
  8271. if (onloadListener) {
  8272. _iframe.contentDocument.location.reload()
  8273. } else {
  8274. _iframe.contentDocument.location.reload()
  8275. }
  8276. } else if (str == 'courseDesign') {
  8277. U.UF.DL.iframeLoad(_iframe, function () {
  8278. // _iframe.contentWindow.U.MD.O.W.load();
  8279. // _iframe.contentWindow.document.body.appendChild(script1);
  8280. _iframe.contentWindow.document.body.appendChild(script2);
  8281. _iframe.contentWindow.document.body.appendChild(script4);
  8282. })
  8283. } else if (str == 'mind') {
  8284. _iframe = _formdiv.querySelector('iframe')
  8285. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8286. //
  8287. _iframe.contentWindow.document.body.appendChild(script1);
  8288. _iframe.contentWindow.document.body.appendChild(script2);
  8289. _iframe.contentWindow.document.body.appendChild(script4);
  8290. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8291. })
  8292. if (onloadListener) {
  8293. _iframe.contentDocument.location.reload()
  8294. } else {
  8295. _iframe.contentDocument.location.reload()
  8296. }
  8297. } else if (str == 'whiteboard') {
  8298. _iframe = _formdiv.querySelector('iframe')
  8299. let onloadListener = _iframe.onload = () => {
  8300. _iframe.contentWindow.document.body.appendChild(script1);
  8301. _iframe.contentWindow.document.body.appendChild(script2);
  8302. _iframe.contentWindow.document.body.appendChild(script4);
  8303. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8304. };
  8305. // if (onloadListener) {
  8306. // try {
  8307. // _iframe.src += "?cocorobo="+new Date().getTime()
  8308. // _iframe.contentWindow.document.location.reload()
  8309. // } catch (error) {
  8310. // }
  8311. // } else {
  8312. // _iframe.contentDocument.location.reload()
  8313. // }
  8314. } else {
  8315. _iframe.onload = () => {
  8316. _iframe.contentWindow.document.body.appendChild(script1);
  8317. _iframe.contentWindow.document.body.appendChild(script2);
  8318. // _iframe.contentWindow.document.body.appendChild(script3);
  8319. _iframe.contentWindow.document.body.appendChild(script4);
  8320. };
  8321. }
  8322. _jie.onclick = async () => {
  8323. let text = ''
  8324. if (aTool == 1) {
  8325. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8326. } else if (aTool == 6) {
  8327. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8328. } else if (aTool == 3) {
  8329. text = await U.MD.D.I.getEditorContent(_iframe);
  8330. }
  8331. _loading.style.display = 'flex'
  8332. console.log(_loading);
  8333. var _ajs = _iframe.contentWindow.document.createElement("script");
  8334. _ajs.type = "text/javascript";
  8335. _ajs.innerHTML =
  8336. // 'console.log(' + _loading + ');\n' +
  8337. 'var _js = document.createElement("script");\n' +
  8338. '_js.type="text/javascript";\n' +
  8339. '_js.charset="UTF-8";\n' +
  8340. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8341. "_js.onload = function(){\n" +
  8342. ' var a = document.getElementsByTagName("img")\n' +
  8343. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8344. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8345. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8346. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8347. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8348. "beforeUpload_shishi(file," +
  8349. "'" +
  8350. _userid +
  8351. "'" +
  8352. ", " +
  8353. "'" +
  8354. _cid +
  8355. "'" +
  8356. ", " +
  8357. "'" +
  8358. _stage +
  8359. "'" +
  8360. ", " +
  8361. "'" +
  8362. _task +
  8363. "'" +
  8364. ", " +
  8365. "'" +
  8366. _tool +
  8367. "'" +
  8368. ", " +
  8369. "'" +
  8370. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8371. "'" +
  8372. ", " +
  8373. "'" +
  8374. aTool +
  8375. "'" +
  8376. ", " +
  8377. "`" +
  8378. text +
  8379. "`" +
  8380. ")\n" +
  8381. " });\n" +
  8382. "}\n" +
  8383. "document.head.appendChild(_js);\n";
  8384. _iframe.contentWindow.document.head.appendChild(_ajs);
  8385. }
  8386. }
  8387. //U.MD.D.I.openClick(str);
  8388. //如果有任务栏信息
  8389. // if (_taskbar) {
  8390. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8391. // }
  8392. }
  8393. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8394. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8395. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8396. _userid = student.userid, //登录用户id
  8397. _username = student.student //用户名字
  8398. let _iframe;
  8399. let _cid = cid,
  8400. _stage = stage,
  8401. _task = task,
  8402. _tool = tool;
  8403. var _jie = $$("div", {
  8404. "style": {
  8405. "position": "absolute",
  8406. "bottom": "50px",
  8407. "right": "50px",
  8408. "zIndex": "9999",
  8409. "backgroundColor": "#2268bc",
  8410. "color": "#fff",
  8411. "padding": "12px 20px",
  8412. "cursor": "pointer",
  8413. "borderRadius": "4px",
  8414. },
  8415. "innerHTML": "提交作业"
  8416. })
  8417. let aTool = ''
  8418. let _loading = document.createElement('div')
  8419. _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;"
  8420. // _loading.id = "";
  8421. let _lchild = document.createElement('div')
  8422. let _limg = document.createElement('img')
  8423. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8424. _limg.style = "width: 26px;margin-right: 10px;"
  8425. _lchild.appendChild(_limg)
  8426. let _lspan = document.createElement('span')
  8427. _lspan.innerHTML = "上传中..."
  8428. _lchild.appendChild(_lspan)
  8429. _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%);"
  8430. _loading.appendChild(_lchild)
  8431. var _box = $$('div', {
  8432. "style": {
  8433. "position": "relative",
  8434. "width": "100%",
  8435. "height": "100%",
  8436. },
  8437. })
  8438. _box.appendChild(_loading)
  8439. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8440. switch (str) {
  8441. case "whiteboard":
  8442. aTool = 1;
  8443. _iframe = $$("iframe", {
  8444. "frameborder": "no",
  8445. "border": "0",
  8446. "scrolling ": "no",
  8447. "style": {
  8448. "cssText": "border:0;width:100%;height:100%"
  8449. },
  8450. "src": "https://beta.iwb.cocorobo.cn/"
  8451. })
  8452. _box.appendChild(_iframe);
  8453. _box.appendChild(_jie);
  8454. _formdiv = new U.UF.UI.form(
  8455. "电子白板-" + _username,
  8456. _box, {
  8457. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8458. "style": {
  8459. "width": "90%",
  8460. "height": "90%",
  8461. "overflow": 'hidden'
  8462. },
  8463. "onresize": function () { }
  8464. }, {
  8465. closecallback: function () { }
  8466. }, {
  8467. "style": {
  8468. "height": "36px"
  8469. }
  8470. }).form; //创建窗体
  8471. _taskbar = {
  8472. "id": str + _formdiv.id,
  8473. "style": {
  8474. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8475. },
  8476. "name": "电子白板",
  8477. "forms": _formdiv,
  8478. "click": function () {
  8479. U.MD.D.I.openApplication(str, obj, info);
  8480. }
  8481. }
  8482. break;
  8483. case "mind":
  8484. aTool = 3;
  8485. _iframe = $$("iframe", {
  8486. "frameborder": "no",
  8487. "border": "0",
  8488. "scrolling ": "no",
  8489. "style": {
  8490. "cssText": "border:0;width:100%;height:100%"
  8491. },
  8492. "src": "/kityminder-editor/dist/index.html"
  8493. })
  8494. _box.appendChild(_iframe);
  8495. _box.appendChild(_jie);
  8496. _formdiv = new U.UF.UI.form(
  8497. "思维导图-" + _username,
  8498. _box, { //"/jsmind/example/demo.html"
  8499. "id": "mind" + cid + stage + task + tool + _userid,
  8500. "style": {
  8501. "width": "90%",
  8502. "height": "90%",
  8503. "overflow": 'hidden'
  8504. },
  8505. "onresize": function () { }
  8506. }, {
  8507. closecallback: function () { }
  8508. }, {
  8509. "style": {
  8510. "height": "36px"
  8511. }
  8512. }).form; //创建窗体
  8513. _taskbar = {
  8514. "id": str + _formdiv.id,
  8515. "style": {
  8516. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8517. },
  8518. "name": "思维导图",
  8519. "forms": _formdiv,
  8520. "click": function () {
  8521. U.MD.D.I.openApplication(str, obj, info);
  8522. }
  8523. }
  8524. break;
  8525. case "MindMap":
  8526. aTool = 3;
  8527. _iframe = $$("iframe", {
  8528. "frameborder": "no",
  8529. "border": "0",
  8530. "scrolling ": "no",
  8531. "style": {
  8532. "cssText": "border:0;width:100%;height:100%"
  8533. },
  8534. "src": "//cloud.cocorobo.cn/mind/"
  8535. })
  8536. _box.appendChild(_iframe);
  8537. _box.appendChild(_jie);
  8538. _formdiv = new U.UF.UI.form(
  8539. "思维导图-" + _username,
  8540. _box, { //"/jsmind/example/demo.html"
  8541. "id": "mind" + cid + stage + task + tool + _userid,
  8542. "style": {
  8543. "width": "90%",
  8544. "height": "90%",
  8545. "overflow": 'hidden'
  8546. },
  8547. "onresize": function () { }
  8548. }, {
  8549. closecallback: function () { }
  8550. }, {
  8551. "style": {
  8552. "height": "36px"
  8553. }
  8554. }).form; //创建窗体
  8555. _taskbar = {
  8556. "id": str + _formdiv.id,
  8557. "style": {
  8558. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8559. },
  8560. "name": "思维导图",
  8561. "forms": _formdiv,
  8562. "click": function () {
  8563. U.MD.D.I.openApplication(str, obj, info);
  8564. }
  8565. }
  8566. break;
  8567. case "doc":
  8568. aTool = 6;
  8569. _iframe = $$("iframe", {
  8570. "frameborder": "no",
  8571. "border": "0",
  8572. "scrolling ": "no",
  8573. "style": {
  8574. "cssText": "border:0;width:100%;height:100%"
  8575. },
  8576. "src": "/Office/Word/WordEditArea.htm"
  8577. })
  8578. _box.appendChild(_iframe);
  8579. _box.appendChild(_jie);
  8580. _formdiv = new U.UF.UI.form(
  8581. "协同文档-" + _username,
  8582. _box, {
  8583. "id": "doc" + cid + stage + task + tool + _userid,
  8584. "style": {
  8585. "width": "90%",
  8586. "height": "90%",
  8587. "overflow": 'hidden'
  8588. },
  8589. "onresize": function () { }
  8590. }, {
  8591. closecallback: function () { }
  8592. }, {
  8593. "style": {
  8594. "height": "36px"
  8595. }
  8596. }).form; //创建窗体
  8597. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8598. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8599. })
  8600. _taskbar = {
  8601. "id": str + _formdiv.id,
  8602. "style": {
  8603. "backgroundImage": "url(/img/icon/doc.png)"
  8604. },
  8605. "name": "协同文档",
  8606. "forms": _formdiv,
  8607. "click": function () {
  8608. U.MD.D.I.openApplication(str, obj, info);
  8609. }
  8610. }
  8611. break;
  8612. case "mindNetwork": //好友打开
  8613. aTool = 7;
  8614. _iframe = $$("iframe", {
  8615. "webkitallowfullscreen": "",
  8616. "mozallowfullscreen": "",
  8617. "allowfullscreen": "",
  8618. "frameborder": "no",
  8619. "border": "0",
  8620. "scrolling ": "no",
  8621. "style": {
  8622. "cssText": "border:0; width:100%; height:100%;"
  8623. },
  8624. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8625. })
  8626. _box.appendChild(_iframe);
  8627. _box.appendChild(_jie);
  8628. _formdiv = new U.UF.UI.form(
  8629. "思维网格-" + _username,
  8630. _box, {
  8631. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8632. "style": {
  8633. "width": "90%",
  8634. "height": "90%",
  8635. "overflow": 'hidden'
  8636. },
  8637. "onresize": function () { }
  8638. }, {
  8639. closecallback: function () { }
  8640. }, {
  8641. "style": {
  8642. "height": "36px"
  8643. }
  8644. }).form; //创建窗体
  8645. _taskbar = {
  8646. "id": str + _formdiv.id,
  8647. "style": {
  8648. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8649. },
  8650. "name": "思维网格",
  8651. "forms": _formdiv,
  8652. "click": function () {
  8653. U.MD.D.I.openApplication(str, obj, info);
  8654. }
  8655. }
  8656. break;
  8657. case "courseDesign":
  8658. _iframe = $$("iframe", {
  8659. "webkitallowfullscreen": "",
  8660. "mozallowfullscreen": "",
  8661. "allowfullscreen": "",
  8662. "frameborder": "no",
  8663. "border": "0",
  8664. "scrolling ": "no",
  8665. "style": {
  8666. "cssText": "border:0; width:100%; height:100%;"
  8667. },
  8668. "src": "/course-design-vue"
  8669. })
  8670. _box.appendChild(_iframe);
  8671. _box.appendChild(_jie);
  8672. _formdiv = new U.UF.UI.form(
  8673. "项目设计-" + _username,
  8674. _box, {
  8675. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8676. "style": {
  8677. "width": "90%",
  8678. "height": "90%",
  8679. "overflow": 'hidden'
  8680. },
  8681. "onresize": function () { }
  8682. }, {
  8683. closecallback: function () { }
  8684. }, {
  8685. "style": {
  8686. "height": "36px"
  8687. }
  8688. }).form; //创建窗体
  8689. _taskbar = {
  8690. "id": str + _formdiv.id,
  8691. "style": {
  8692. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8693. },
  8694. "name": "项目设计",
  8695. "forms": _formdiv,
  8696. "click": function () {
  8697. U.MD.D.I.openApplication(str, obj, info);
  8698. }
  8699. }
  8700. break;
  8701. }
  8702. const script1 = document.createElement("script");
  8703. script1.type = "text/javascript";
  8704. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8705. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8706. const script2 = document.createElement("script");
  8707. script2.type = "text/javascript";
  8708. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8709. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8710. const script3 = document.createElement("script");
  8711. script3.type = "text/javascript";
  8712. script3.charset = "UTF-8";
  8713. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8714. const script4 = document.createElement("script");
  8715. script4.type = "text/javascript";
  8716. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8717. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8718. if (_iframe) {
  8719. if (str == 'doc') {
  8720. _iframe = _formdiv.querySelector('iframe')
  8721. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8722. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8723. _iframe.contentWindow.document.body.appendChild(script1);
  8724. _iframe.contentWindow.document.body.appendChild(script2);
  8725. // _iframe.contentWindow.document.body.appendChild(script3);
  8726. _iframe.contentWindow.document.body.appendChild(script4);
  8727. })
  8728. if (onloadListener) {
  8729. _iframe.contentDocument.location.reload()
  8730. } else {
  8731. _iframe.contentDocument.location.reload()
  8732. }
  8733. } else if (str == 'courseDesign') {
  8734. U.UF.DL.iframeLoad(_iframe, function () {
  8735. // _iframe.contentWindow.U.MD.O.W.load();
  8736. // _iframe.contentWindow.document.body.appendChild(script1);
  8737. _iframe.contentWindow.document.body.appendChild(script2);
  8738. _iframe.contentWindow.document.body.appendChild(script4);
  8739. })
  8740. } else if (str == 'mind') {
  8741. _iframe = _formdiv.querySelector('iframe')
  8742. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8743. //
  8744. _iframe.contentWindow.document.body.appendChild(script1);
  8745. _iframe.contentWindow.document.body.appendChild(script2);
  8746. _iframe.contentWindow.document.body.appendChild(script4);
  8747. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8748. })
  8749. if (onloadListener) {
  8750. _iframe.contentDocument.location.reload()
  8751. } else {
  8752. _iframe.contentDocument.location.reload()
  8753. }
  8754. } else if (str == 'whiteboard') {
  8755. _iframe = _formdiv.querySelector('iframe')
  8756. let onloadListener = _iframe.onload = () => {
  8757. _iframe.contentWindow.document.body.appendChild(script1);
  8758. _iframe.contentWindow.document.body.appendChild(script2);
  8759. _iframe.contentWindow.document.body.appendChild(script4);
  8760. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8761. };
  8762. // if (onloadListener) {
  8763. // try {
  8764. // _iframe.src += "?cocorobo="+new Date().getTime()
  8765. // _iframe.contentWindow.document.location.reload()
  8766. // } catch (error) {
  8767. // }
  8768. // } else {
  8769. // _iframe.contentDocument.location.reload()
  8770. // }
  8771. } else {
  8772. _iframe.onload = () => {
  8773. _iframe.contentWindow.document.body.appendChild(script1);
  8774. _iframe.contentWindow.document.body.appendChild(script2);
  8775. // _iframe.contentWindow.document.body.appendChild(script3);
  8776. _iframe.contentWindow.document.body.appendChild(script4);
  8777. };
  8778. }
  8779. _jie.onclick = async () => {
  8780. let text = ''
  8781. if (aTool == 1) {
  8782. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8783. } else if (aTool == 6) {
  8784. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8785. } else if (aTool == 3) {
  8786. text = await U.MD.D.I.getEditorContent(_iframe);
  8787. }
  8788. _loading.style.display = 'flex'
  8789. console.log(_loading);
  8790. var _ajs = _iframe.contentWindow.document.createElement("script");
  8791. _ajs.type = "text/javascript";
  8792. _ajs.innerHTML =
  8793. // 'console.log(' + _loading + ');\n' +
  8794. 'var _js = document.createElement("script");\n' +
  8795. '_js.type="text/javascript";\n' +
  8796. '_js.charset="UTF-8";\n' +
  8797. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8798. "_js.onload = function(){\n" +
  8799. ' var a = document.getElementsByTagName("img")\n' +
  8800. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8801. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8802. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8803. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8804. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8805. "beforeUpload_shishi(file," +
  8806. "'" +
  8807. _userid +
  8808. "'" +
  8809. ", " +
  8810. "'" +
  8811. _cid +
  8812. "'" +
  8813. ", " +
  8814. "'" +
  8815. _stage +
  8816. "'" +
  8817. ", " +
  8818. "'" +
  8819. _task +
  8820. "'" +
  8821. ", " +
  8822. "'" +
  8823. _tool +
  8824. "'" +
  8825. ", " +
  8826. "'" +
  8827. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8828. "'" +
  8829. ", " +
  8830. "'" +
  8831. aTool +
  8832. "'" +
  8833. ", " +
  8834. "`" +
  8835. text +
  8836. "`" +
  8837. ")\n" +
  8838. " });\n" +
  8839. "}\n" +
  8840. "document.head.appendChild(_js);\n";
  8841. _iframe.contentWindow.document.head.appendChild(_ajs);
  8842. }
  8843. }
  8844. }
  8845. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8846. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8847. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8848. _userid = student.userid, //登录用户id
  8849. _username = student.student //用户名字
  8850. let _iframe;
  8851. let _cid = cid,
  8852. _stage = stage,
  8853. _task = task,
  8854. _tool = tool;
  8855. var _jie = $$("div", {
  8856. "style": {
  8857. "position": "absolute",
  8858. "bottom": "50px",
  8859. "right": "50px",
  8860. "zIndex": "9999",
  8861. "backgroundColor": "#2268bc",
  8862. "color": "#fff",
  8863. "padding": "12px 20px",
  8864. "cursor": "pointer",
  8865. "borderRadius": "4px",
  8866. },
  8867. "innerHTML": "提交作业"
  8868. })
  8869. let aTool = ''
  8870. let _loading = document.createElement('div')
  8871. _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;"
  8872. // _loading.id = "";
  8873. let _lchild = document.createElement('div')
  8874. let _limg = document.createElement('img')
  8875. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8876. _limg.style = "width: 26px;margin-right: 10px;"
  8877. _lchild.appendChild(_limg)
  8878. let _lspan = document.createElement('span')
  8879. _lspan.innerHTML = "上传中..."
  8880. _lchild.appendChild(_lspan)
  8881. _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%);"
  8882. _loading.appendChild(_lchild)
  8883. var _box = $$('div', {
  8884. "style": {
  8885. "position": "relative",
  8886. "width": "100%",
  8887. "height": "100%",
  8888. },
  8889. })
  8890. _box.appendChild(_loading)
  8891. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8892. switch (str) {
  8893. case "whiteboard":
  8894. aTool = 1;
  8895. _iframe = $$("iframe", {
  8896. "frameborder": "no",
  8897. "border": "0",
  8898. "scrolling ": "no",
  8899. "style": {
  8900. "cssText": "border:0;width:100%;height:100%"
  8901. },
  8902. "src": "https://beta.iwb.cocorobo.cn/"
  8903. })
  8904. _box.appendChild(_iframe);
  8905. _box.appendChild(_jie);
  8906. _formdiv = new U.UF.UI.form(
  8907. "电子白板-" + _username,
  8908. _box, {
  8909. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8910. "style": {
  8911. "width": "90%",
  8912. "height": "90%",
  8913. "overflow": 'hidden'
  8914. },
  8915. "onresize": function () { }
  8916. }, {
  8917. closecallback: function () { }
  8918. }, {
  8919. "style": {
  8920. "height": "36px"
  8921. }
  8922. }).form; //创建窗体
  8923. _taskbar = {
  8924. "id": str + _formdiv.id,
  8925. "style": {
  8926. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8927. },
  8928. "name": "电子白板",
  8929. "forms": _formdiv,
  8930. "click": function () {
  8931. U.MD.D.I.openApplication(str, obj, info);
  8932. }
  8933. }
  8934. break;
  8935. case "mind":
  8936. aTool = 3;
  8937. _iframe = $$("iframe", {
  8938. "frameborder": "no",
  8939. "border": "0",
  8940. "scrolling ": "no",
  8941. "style": {
  8942. "cssText": "border:0;width:100%;height:100%"
  8943. },
  8944. "src": "/kityminder-editor/dist/index.html"
  8945. })
  8946. _box.appendChild(_iframe);
  8947. _box.appendChild(_jie);
  8948. _formdiv = new U.UF.UI.form(
  8949. "思维导图-" + _username,
  8950. _box, { //"/jsmind/example/demo.html"
  8951. "id": "mind" + cid + stage + task + tool + _userid,
  8952. "style": {
  8953. "width": "90%",
  8954. "height": "90%",
  8955. "overflow": 'hidden'
  8956. },
  8957. "onresize": function () { }
  8958. }, {
  8959. closecallback: function () { }
  8960. }, {
  8961. "style": {
  8962. "height": "36px"
  8963. }
  8964. }).form; //创建窗体
  8965. _taskbar = {
  8966. "id": str + _formdiv.id,
  8967. "style": {
  8968. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8969. },
  8970. "name": "思维导图",
  8971. "forms": _formdiv,
  8972. "click": function () {
  8973. U.MD.D.I.openApplication(str, obj, info);
  8974. }
  8975. }
  8976. break;
  8977. case "MindMap":
  8978. aTool = 3;
  8979. _iframe = $$("iframe", {
  8980. "frameborder": "no",
  8981. "border": "0",
  8982. "scrolling ": "no",
  8983. "style": {
  8984. "cssText": "border:0;width:100%;height:100%"
  8985. },
  8986. "src": "//cloud.cocorobo.cn/mind/"
  8987. })
  8988. _box.appendChild(_iframe);
  8989. _box.appendChild(_jie);
  8990. _formdiv = new U.UF.UI.form(
  8991. "思维导图-" + _username,
  8992. _box, { //"/jsmind/example/demo.html"
  8993. "id": "mind" + cid + stage + task + tool + _userid,
  8994. "style": {
  8995. "width": "90%",
  8996. "height": "90%",
  8997. "overflow": 'hidden'
  8998. },
  8999. "onresize": function () { }
  9000. }, {
  9001. closecallback: function () { }
  9002. }, {
  9003. "style": {
  9004. "height": "36px"
  9005. }
  9006. }).form; //创建窗体
  9007. _taskbar = {
  9008. "id": str + _formdiv.id,
  9009. "style": {
  9010. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9011. },
  9012. "name": "思维导图",
  9013. "forms": _formdiv,
  9014. "click": function () {
  9015. U.MD.D.I.openApplication(str, obj, info);
  9016. }
  9017. }
  9018. break;
  9019. case "doc":
  9020. aTool = 6;
  9021. _iframe = $$("iframe", {
  9022. "frameborder": "no",
  9023. "border": "0",
  9024. "scrolling ": "no",
  9025. "style": {
  9026. "cssText": "border:0;width:100%;height:100%"
  9027. },
  9028. "src": "/Office/Word/WordEditArea.htm"
  9029. })
  9030. _box.appendChild(_iframe);
  9031. _box.appendChild(_jie);
  9032. _formdiv = new U.UF.UI.form(
  9033. "协同文档-" + _username,
  9034. _box, {
  9035. "id": "doc" + cid + stage + task + tool + _userid,
  9036. "style": {
  9037. "width": "90%",
  9038. "height": "90%",
  9039. "overflow": 'hidden'
  9040. },
  9041. "onresize": function () { }
  9042. }, {
  9043. closecallback: function () { }
  9044. }, {
  9045. "style": {
  9046. "height": "36px"
  9047. }
  9048. }).form; //创建窗体
  9049. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9050. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9051. })
  9052. _taskbar = {
  9053. "id": str + _formdiv.id,
  9054. "style": {
  9055. "backgroundImage": "url(/img/icon/doc.png)"
  9056. },
  9057. "name": "协同文档",
  9058. "forms": _formdiv,
  9059. "click": function () {
  9060. U.MD.D.I.openApplication(str, obj, info);
  9061. }
  9062. }
  9063. break;
  9064. case "mindNetwork": //好友打开
  9065. aTool = 7;
  9066. _iframe = $$("iframe", {
  9067. "webkitallowfullscreen": "",
  9068. "mozallowfullscreen": "",
  9069. "allowfullscreen": "",
  9070. "frameborder": "no",
  9071. "border": "0",
  9072. "scrolling ": "no",
  9073. "style": {
  9074. "cssText": "border:0; width:100%; height:100%;"
  9075. },
  9076. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9077. })
  9078. _box.appendChild(_iframe);
  9079. _box.appendChild(_jie);
  9080. _formdiv = new U.UF.UI.form(
  9081. "思维网格-" + _username,
  9082. _box, {
  9083. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9084. "style": {
  9085. "width": "90%",
  9086. "height": "90%",
  9087. "overflow": 'hidden'
  9088. },
  9089. "onresize": function () { }
  9090. }, {
  9091. closecallback: function () { }
  9092. }, {
  9093. "style": {
  9094. "height": "36px"
  9095. }
  9096. }).form; //创建窗体
  9097. _taskbar = {
  9098. "id": str + _formdiv.id,
  9099. "style": {
  9100. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9101. },
  9102. "name": "思维网格",
  9103. "forms": _formdiv,
  9104. "click": function () {
  9105. U.MD.D.I.openApplication(str, obj, info);
  9106. }
  9107. }
  9108. break;
  9109. case "courseDesign":
  9110. _iframe = $$("iframe", {
  9111. "webkitallowfullscreen": "",
  9112. "mozallowfullscreen": "",
  9113. "allowfullscreen": "",
  9114. "frameborder": "no",
  9115. "border": "0",
  9116. "scrolling ": "no",
  9117. "style": {
  9118. "cssText": "border:0; width:100%; height:100%;"
  9119. },
  9120. "src": "/course-design-vue"
  9121. })
  9122. _box.appendChild(_iframe);
  9123. _box.appendChild(_jie);
  9124. _formdiv = new U.UF.UI.form(
  9125. "项目设计-" + _username,
  9126. _box, {
  9127. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9128. "style": {
  9129. "width": "90%",
  9130. "height": "90%",
  9131. "overflow": 'hidden'
  9132. },
  9133. "onresize": function () { }
  9134. }, {
  9135. closecallback: function () { }
  9136. }, {
  9137. "style": {
  9138. "height": "36px"
  9139. }
  9140. }).form; //创建窗体
  9141. _taskbar = {
  9142. "id": str + _formdiv.id,
  9143. "style": {
  9144. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9145. },
  9146. "name": "项目设计",
  9147. "forms": _formdiv,
  9148. "click": function () {
  9149. U.MD.D.I.openApplication(str, obj, info);
  9150. }
  9151. }
  9152. break;
  9153. }
  9154. const script1 = document.createElement("script");
  9155. script1.type = "text/javascript";
  9156. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9157. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9158. const script2 = document.createElement("script");
  9159. script2.type = "text/javascript";
  9160. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9161. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9162. const script3 = document.createElement("script");
  9163. script3.type = "text/javascript";
  9164. script3.charset = "UTF-8";
  9165. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9166. const script4 = document.createElement("script");
  9167. script4.type = "text/javascript";
  9168. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9169. script4.src = window.origin + "/js/Common/jietu2E.js";
  9170. if (_iframe) {
  9171. if (str == 'doc') {
  9172. _iframe = _formdiv.querySelector('iframe')
  9173. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9174. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9175. _iframe.contentWindow.document.body.appendChild(script1);
  9176. _iframe.contentWindow.document.body.appendChild(script2);
  9177. // _iframe.contentWindow.document.body.appendChild(script3);
  9178. _iframe.contentWindow.document.body.appendChild(script4);
  9179. })
  9180. if (onloadListener) {
  9181. _iframe.contentDocument.location.reload()
  9182. } else {
  9183. _iframe.contentDocument.location.reload()
  9184. }
  9185. } else if (str == 'courseDesign') {
  9186. U.UF.DL.iframeLoad(_iframe, function () {
  9187. // _iframe.contentWindow.U.MD.O.W.load();
  9188. // _iframe.contentWindow.document.body.appendChild(script1);
  9189. _iframe.contentWindow.document.body.appendChild(script2);
  9190. _iframe.contentWindow.document.body.appendChild(script4);
  9191. })
  9192. } else if (str == 'mind') {
  9193. _iframe = _formdiv.querySelector('iframe')
  9194. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9195. //
  9196. _iframe.contentWindow.document.body.appendChild(script1);
  9197. _iframe.contentWindow.document.body.appendChild(script2);
  9198. _iframe.contentWindow.document.body.appendChild(script4);
  9199. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9200. })
  9201. if (onloadListener) {
  9202. _iframe.contentDocument.location.reload()
  9203. } else {
  9204. _iframe.contentDocument.location.reload()
  9205. }
  9206. } else if (str == 'whiteboard') {
  9207. _iframe = _formdiv.querySelector('iframe')
  9208. let onloadListener = _iframe.onload = () => {
  9209. _iframe.contentWindow.document.body.appendChild(script1);
  9210. _iframe.contentWindow.document.body.appendChild(script2);
  9211. _iframe.contentWindow.document.body.appendChild(script4);
  9212. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9213. };
  9214. // if (onloadListener) {
  9215. // try {
  9216. // _iframe.src += "?cocorobo="+new Date().getTime()
  9217. // _iframe.contentWindow.document.location.reload()
  9218. // } catch (error) {
  9219. // }
  9220. // } else {
  9221. // _iframe.contentDocument.location.reload()
  9222. // }
  9223. } else {
  9224. _iframe.onload = () => {
  9225. _iframe.contentWindow.document.body.appendChild(script1);
  9226. _iframe.contentWindow.document.body.appendChild(script2);
  9227. // _iframe.contentWindow.document.body.appendChild(script3);
  9228. _iframe.contentWindow.document.body.appendChild(script4);
  9229. };
  9230. }
  9231. _jie.onclick = async () => {
  9232. let text = ''
  9233. if (aTool == 1) {
  9234. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9235. } else if (aTool == 6) {
  9236. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9237. } else if (aTool == 3) {
  9238. text = await U.MD.D.I.getEditorContent(_iframe);
  9239. }
  9240. _loading.style.display = 'flex'
  9241. console.log(_loading);
  9242. var _ajs = _iframe.contentWindow.document.createElement("script");
  9243. _ajs.type = "text/javascript";
  9244. _ajs.innerHTML =
  9245. // 'console.log(' + _loading + ');\n' +
  9246. 'var _js = document.createElement("script");\n' +
  9247. '_js.type="text/javascript";\n' +
  9248. '_js.charset="UTF-8";\n' +
  9249. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9250. "_js.onload = function(){\n" +
  9251. ' var a = document.getElementsByTagName("img")\n' +
  9252. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9253. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9254. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9255. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9256. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9257. "beforeUpload_shishi(file," +
  9258. "'" +
  9259. _userid +
  9260. "'" +
  9261. ", " +
  9262. "'" +
  9263. _cid +
  9264. "'" +
  9265. ", " +
  9266. "'" +
  9267. _stage +
  9268. "'" +
  9269. ", " +
  9270. "'" +
  9271. _task +
  9272. "'" +
  9273. ", " +
  9274. "'" +
  9275. _tool +
  9276. "'" +
  9277. ", " +
  9278. "'" +
  9279. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9280. "'" +
  9281. ", " +
  9282. "'" +
  9283. aTool +
  9284. "'" +
  9285. ", " +
  9286. "`" +
  9287. text +
  9288. "`" +
  9289. ")\n" +
  9290. " });\n" +
  9291. "}\n" +
  9292. "document.head.appendChild(_js);\n";
  9293. _iframe.contentWindow.document.head.appendChild(_ajs);
  9294. }
  9295. }
  9296. }
  9297. U.MD.D.I.getEditorContent = function (iframe) {
  9298. return new Promise((resolve, reject) => {
  9299. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9300. console.log(content);
  9301. resolve(content)
  9302. });
  9303. });
  9304. }
  9305. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9306. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9307. // if (res.value[0].length > 0) {
  9308. // // resolve(res.value[0][0].text);
  9309. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9310. // $(fileInput).val('');
  9311. // });
  9312. // }
  9313. // }, [], { "type": "GET", "withCredentials": true });
  9314. var xmlhttp;
  9315. var Mac, Sn, DeviceId
  9316. if (window.XMLHttpRequest) {
  9317. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9318. xmlhttp = new XMLHttpRequest();
  9319. } else {
  9320. // IE6, IE5 浏览器执行代码
  9321. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9322. }
  9323. xmlhttp.onreadystatechange = function () {
  9324. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9325. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9326. // resolve(res.value[0][0].text);
  9327. if (type == '2') {
  9328. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9329. } else if (type == '3') {
  9330. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9331. }
  9332. } else {
  9333. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9334. }
  9335. }
  9336. }
  9337. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9338. xmlhttp.send();
  9339. }
  9340. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9341. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9342. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9343. _userinfo = US.userInfo, //登录用户信息
  9344. _userid = US.userInfo.userid //登录用户id
  9345. let _iframe;
  9346. let _cid = cid,
  9347. _stage = stage,
  9348. _task = task,
  9349. _tool = tool;
  9350. var _jie = $$("div", {
  9351. "style": {
  9352. "position": "absolute",
  9353. "bottom": "50px",
  9354. "right": "50px",
  9355. "zIndex": "9999",
  9356. "backgroundColor": "#2268bc",
  9357. "color": "#fff",
  9358. "padding": "12px 20px",
  9359. "cursor": "pointer",
  9360. "borderRadius": "4px",
  9361. },
  9362. "innerHTML": "确认并提交"
  9363. })
  9364. let aTool = ''
  9365. let _loading = document.createElement('div')
  9366. _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;"
  9367. // _loading.id = "";
  9368. let _lchild = document.createElement('div')
  9369. let _limg = document.createElement('img')
  9370. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9371. _limg.style = "width: 26px;margin-right: 10px;"
  9372. _lchild.appendChild(_limg)
  9373. let _lspan = document.createElement('span')
  9374. _lspan.innerHTML = "上传中..."
  9375. _lchild.appendChild(_lspan)
  9376. _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%);"
  9377. _loading.appendChild(_lchild)
  9378. var _box = $$('div', {
  9379. "style": {
  9380. "position": "relative",
  9381. "width": "100%",
  9382. "height": "100%",
  9383. },
  9384. })
  9385. _box.appendChild(_loading)
  9386. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9387. switch (str) {
  9388. case "whiteboard":
  9389. aTool = 1;
  9390. _iframe = $$("iframe", {
  9391. "frameborder": "no",
  9392. "border": "0",
  9393. "scrolling ": "no",
  9394. "style": {
  9395. "cssText": "border:0;width:100%;height:100%"
  9396. },
  9397. "src": "https://beta.iwb.cocorobo.cn/"
  9398. })
  9399. _box.appendChild(_iframe);
  9400. _box.appendChild(_jie);
  9401. _formdiv = new U.UF.UI.form(
  9402. "电子白板",
  9403. _box, {
  9404. "id": "whiteboards" + cid + stage + task + tool,
  9405. "style": {
  9406. "width": "90%",
  9407. "height": "90%",
  9408. "overflow": 'hidden'
  9409. },
  9410. "onresize": function () { }
  9411. }, {
  9412. closecallback: function () { }
  9413. }, {
  9414. "style": {
  9415. "height": "36px"
  9416. }
  9417. }).form; //创建窗体
  9418. _taskbar = {
  9419. "id": str + _formdiv.id,
  9420. "style": {
  9421. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9422. },
  9423. "name": "电子白板",
  9424. "forms": _formdiv,
  9425. "click": function () {
  9426. U.MD.D.I.openApplication(str, obj, info);
  9427. }
  9428. }
  9429. break;
  9430. case "mind":
  9431. aTool = 3;
  9432. _iframe = $$("iframe", {
  9433. "frameborder": "no",
  9434. "border": "0",
  9435. "scrolling ": "no",
  9436. "style": {
  9437. "cssText": "border:0;width:100%;height:100%"
  9438. },
  9439. "src": "/kityminder-editor/dist/index.html"
  9440. });
  9441. _box.appendChild(_iframe);
  9442. _box.appendChild(_jie);
  9443. _formdiv = new U.UF.UI.form(
  9444. "思维导图",
  9445. _box, { //"/jsmind/example/demo.html"
  9446. "id": "minds" + cid + stage + task + tool,
  9447. "style": {
  9448. "width": "90%",
  9449. "height": "90%",
  9450. "overflow": 'hidden'
  9451. },
  9452. "onresize": function () { }
  9453. }, {
  9454. closecallback: function () { }
  9455. }, {
  9456. "style": {
  9457. "height": "36px"
  9458. }
  9459. }).form; //创建窗体
  9460. _taskbar = {
  9461. "id": str + _formdiv.id,
  9462. "style": {
  9463. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9464. },
  9465. "name": "思维导图",
  9466. "forms": _formdiv,
  9467. "click": function () {
  9468. U.MD.D.I.openApplication(str, obj, info);
  9469. }
  9470. }
  9471. break;
  9472. case "doc":
  9473. aTool = 6;
  9474. _iframe = $$("iframe", {
  9475. "frameborder": "no",
  9476. "border": "0",
  9477. "scrolling ": "no",
  9478. "style": {
  9479. "cssText": "border:0;width:100%;height:100%"
  9480. },
  9481. "src": "/Office/Word/WordEditArea.htm"
  9482. })
  9483. _box.appendChild(_iframe);
  9484. _box.appendChild(_jie);
  9485. _formdiv = new U.UF.UI.form(
  9486. "协同文档",
  9487. _box, {
  9488. "id": "docs" + cid + stage + task + tool,
  9489. "style": {
  9490. "width": "90%",
  9491. "height": "90%",
  9492. "overflow": 'hidden'
  9493. },
  9494. "onresize": function () { }
  9495. }, {
  9496. closecallback: function () { }
  9497. }, {
  9498. "style": {
  9499. "height": "36px"
  9500. }
  9501. }).form; //创建窗体
  9502. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9503. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9504. })
  9505. _taskbar = {
  9506. "id": str + _formdiv.id,
  9507. "style": {
  9508. "backgroundImage": "url(/img/icon/doc.png)"
  9509. },
  9510. "name": "协同文档",
  9511. "forms": _formdiv,
  9512. "click": function () {
  9513. U.MD.D.I.openApplication(str, obj, info);
  9514. }
  9515. }
  9516. break;
  9517. }
  9518. const script1 = document.createElement("script");
  9519. script1.type = "text/javascript";
  9520. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9521. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9522. const script2 = document.createElement("script");
  9523. script2.type = "text/javascript";
  9524. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9525. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9526. const script3 = document.createElement("script");
  9527. script3.type = "text/javascript";
  9528. script3.charset = "UTF-8";
  9529. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9530. const script4 = document.createElement("script");
  9531. script4.type = "text/javascript";
  9532. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9533. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9534. if (_iframe) {
  9535. if (str == 'doc') {
  9536. _iframe = _formdiv.querySelector('iframe')
  9537. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9538. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9539. _iframe.contentWindow.document.body.appendChild(script1);
  9540. _iframe.contentWindow.document.body.appendChild(script2);
  9541. // _iframe.contentWindow.document.body.appendChild(script3);
  9542. _iframe.contentWindow.document.body.appendChild(script4);
  9543. })
  9544. if (onloadListener) {
  9545. _iframe.contentDocument.location.reload()
  9546. } else {
  9547. _iframe.contentDocument.location.reload()
  9548. }
  9549. } else if (str == 'mind') {
  9550. _iframe = _formdiv.querySelector('iframe')
  9551. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9552. _iframe.contentWindow.document.body.appendChild(script1);
  9553. _iframe.contentWindow.document.body.appendChild(script2);
  9554. _iframe.contentWindow.document.body.appendChild(script4);
  9555. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9556. })
  9557. if (onloadListener) {
  9558. _iframe.contentDocument.location.reload()
  9559. } else {
  9560. _iframe.contentDocument.location.reload()
  9561. }
  9562. } else {
  9563. _iframe.onload = () => {
  9564. _iframe.contentWindow.document.body.appendChild(script1);
  9565. _iframe.contentWindow.document.body.appendChild(script2);
  9566. // _iframe.contentWindow.document.body.appendChild(script3);
  9567. _iframe.contentWindow.document.body.appendChild(script4);
  9568. };
  9569. }
  9570. _jie.onclick = async () => {
  9571. let text = ''
  9572. if (aTool == 6) {
  9573. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9574. } else if (aTool == 3) {
  9575. text = await U.MD.D.I.getEditorContent(_iframe);
  9576. }
  9577. _loading.style.display = 'flex'
  9578. console.log(_loading);
  9579. var _ajs = _iframe.contentWindow.document.createElement("script");
  9580. _ajs.type = "text/javascript";
  9581. _ajs.innerHTML =
  9582. // 'console.log(' + _loading + ');\n' +
  9583. 'var _js = document.createElement("script");\n' +
  9584. '_js.type="text/javascript";\n' +
  9585. '_js.charset="UTF-8";\n' +
  9586. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9587. "_js.onload = function(){\n" +
  9588. ' var a = document.getElementsByTagName("img")\n' +
  9589. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9590. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9591. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9592. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9593. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9594. "beforeUpload_shishi(file," +
  9595. "'" +
  9596. _userid +
  9597. "'" +
  9598. ", " +
  9599. "'" +
  9600. _cid +
  9601. "'" +
  9602. ", " +
  9603. "'" +
  9604. _stage +
  9605. "'" +
  9606. ", " +
  9607. "'" +
  9608. _task +
  9609. "'" +
  9610. ", " +
  9611. "'" +
  9612. _tool +
  9613. "'" +
  9614. ", " +
  9615. "'" +
  9616. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9617. "'" +
  9618. ", " +
  9619. "'" +
  9620. aTool +
  9621. "'" +
  9622. ", " +
  9623. "`" +
  9624. text +
  9625. "`" +
  9626. ")\n" +
  9627. " });\n" +
  9628. "}\n" +
  9629. "document.head.appendChild(_js);\n";
  9630. _iframe.contentWindow.document.head.appendChild(_ajs);
  9631. }
  9632. }
  9633. //U.MD.D.I.openClick(str);
  9634. //如果有任务栏信息
  9635. // if (_taskbar) {
  9636. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9637. // }
  9638. }
  9639. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9640. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9641. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9642. _userinfo = US.userInfo, //登录用户信息
  9643. _userid = US.userInfo.userid //登录用户id
  9644. let _iframe;
  9645. let _cid = cid,
  9646. _stage = stage,
  9647. _task = task,
  9648. _tool = tool;
  9649. var _jie = $$("div", {
  9650. "style": {
  9651. "position": "absolute",
  9652. "bottom": "50px",
  9653. "right": "50px",
  9654. "zIndex": "9999",
  9655. "backgroundColor": "#2268bc",
  9656. "color": "#fff",
  9657. "padding": "12px 20px",
  9658. "cursor": "pointer",
  9659. "borderRadius": "4px",
  9660. },
  9661. "innerHTML": "确认并提交"
  9662. })
  9663. let aTool = ''
  9664. let _loading = document.createElement('div')
  9665. _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;"
  9666. // _loading.id = "";
  9667. let _lchild = document.createElement('div')
  9668. let _limg = document.createElement('img')
  9669. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9670. _limg.style = "width: 26px;margin-right: 10px;"
  9671. _lchild.appendChild(_limg)
  9672. let _lspan = document.createElement('span')
  9673. _lspan.innerHTML = "上传中..."
  9674. _lchild.appendChild(_lspan)
  9675. _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%);"
  9676. _loading.appendChild(_lchild)
  9677. var _box = $$('div', {
  9678. "style": {
  9679. "position": "relative",
  9680. "width": "100%",
  9681. "height": "100%",
  9682. },
  9683. })
  9684. _box.appendChild(_loading)
  9685. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9686. switch (str) {
  9687. case "whiteboard":
  9688. aTool = 1;
  9689. _iframe = $$("iframe", {
  9690. "frameborder": "no",
  9691. "border": "0",
  9692. "scrolling ": "no",
  9693. "style": {
  9694. "cssText": "border:0;width:100%;height:100%"
  9695. },
  9696. "src": "https://beta.iwb.cocorobo.cn/"
  9697. })
  9698. _box.appendChild(_iframe);
  9699. _box.appendChild(_jie);
  9700. _formdiv = new U.UF.UI.form(
  9701. "电子白板",
  9702. _box, {
  9703. "id": "whiteboards" + cid + stage + task + tool,
  9704. "style": {
  9705. "width": "90%",
  9706. "height": "90%",
  9707. "overflow": 'hidden'
  9708. },
  9709. "onresize": function () { }
  9710. }, {
  9711. closecallback: function () { }
  9712. }, {
  9713. "style": {
  9714. "height": "36px"
  9715. }
  9716. }).form; //创建窗体
  9717. _taskbar = {
  9718. "id": str + _formdiv.id,
  9719. "style": {
  9720. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9721. },
  9722. "name": "电子白板",
  9723. "forms": _formdiv,
  9724. "click": function () {
  9725. U.MD.D.I.openApplication(str, obj, info);
  9726. }
  9727. }
  9728. break;
  9729. case "mind":
  9730. aTool = 3;
  9731. _iframe = $$("iframe", {
  9732. "frameborder": "no",
  9733. "border": "0",
  9734. "scrolling ": "no",
  9735. "style": {
  9736. "cssText": "border:0;width:100%;height:100%"
  9737. },
  9738. "src": "/kityminder-editor/dist/index.html"
  9739. });
  9740. _box.appendChild(_iframe);
  9741. _box.appendChild(_jie);
  9742. _formdiv = new U.UF.UI.form(
  9743. "思维导图",
  9744. _box, { //"/jsmind/example/demo.html"
  9745. "id": "minds" + cid + stage + task + tool,
  9746. "style": {
  9747. "width": "90%",
  9748. "height": "90%",
  9749. "overflow": 'hidden'
  9750. },
  9751. "onresize": function () { }
  9752. }, {
  9753. closecallback: function () { }
  9754. }, {
  9755. "style": {
  9756. "height": "36px"
  9757. }
  9758. }).form; //创建窗体
  9759. _taskbar = {
  9760. "id": str + _formdiv.id,
  9761. "style": {
  9762. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9763. },
  9764. "name": "思维导图",
  9765. "forms": _formdiv,
  9766. "click": function () {
  9767. U.MD.D.I.openApplication(str, obj, info);
  9768. }
  9769. }
  9770. break;
  9771. case "doc":
  9772. aTool = 6;
  9773. _iframe = $$("iframe", {
  9774. "frameborder": "no",
  9775. "border": "0",
  9776. "scrolling ": "no",
  9777. "style": {
  9778. "cssText": "border:0;width:100%;height:100%"
  9779. },
  9780. "src": "/Office/Word/WordEditArea.htm"
  9781. })
  9782. _box.appendChild(_iframe);
  9783. _box.appendChild(_jie);
  9784. _formdiv = new U.UF.UI.form(
  9785. "协同文档",
  9786. _box, {
  9787. "id": "docs" + cid + stage + task + tool,
  9788. "style": {
  9789. "width": "90%",
  9790. "height": "90%",
  9791. "overflow": 'hidden'
  9792. },
  9793. "onresize": function () { }
  9794. }, {
  9795. closecallback: function () { }
  9796. }, {
  9797. "style": {
  9798. "height": "36px"
  9799. }
  9800. }).form; //创建窗体
  9801. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9802. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9803. })
  9804. _taskbar = {
  9805. "id": str + _formdiv.id,
  9806. "style": {
  9807. "backgroundImage": "url(/img/icon/doc.png)"
  9808. },
  9809. "name": "协同文档",
  9810. "forms": _formdiv,
  9811. "click": function () {
  9812. U.MD.D.I.openApplication(str, obj, info);
  9813. }
  9814. }
  9815. break;
  9816. }
  9817. const script1 = document.createElement("script");
  9818. script1.type = "text/javascript";
  9819. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9820. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9821. const script2 = document.createElement("script");
  9822. script2.type = "text/javascript";
  9823. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9824. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9825. const script3 = document.createElement("script");
  9826. script3.type = "text/javascript";
  9827. script3.charset = "UTF-8";
  9828. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9829. const script4 = document.createElement("script");
  9830. script4.type = "text/javascript";
  9831. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9832. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9833. if (_iframe) {
  9834. if (str == 'doc') {
  9835. _iframe = _formdiv.querySelector('iframe')
  9836. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9837. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9838. _iframe.contentWindow.document.body.appendChild(script1);
  9839. _iframe.contentWindow.document.body.appendChild(script2);
  9840. // _iframe.contentWindow.document.body.appendChild(script3);
  9841. _iframe.contentWindow.document.body.appendChild(script4);
  9842. })
  9843. if (onloadListener) {
  9844. _iframe.contentDocument.location.reload()
  9845. } else {
  9846. _iframe.contentDocument.location.reload()
  9847. }
  9848. } else if (str == 'mind') {
  9849. _iframe = _formdiv.querySelector('iframe')
  9850. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9851. _iframe.contentWindow.document.body.appendChild(script1);
  9852. _iframe.contentWindow.document.body.appendChild(script2);
  9853. _iframe.contentWindow.document.body.appendChild(script4);
  9854. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9855. })
  9856. if (onloadListener) {
  9857. _iframe.contentDocument.location.reload()
  9858. } else {
  9859. _iframe.contentDocument.location.reload()
  9860. }
  9861. } else {
  9862. _iframe.onload = () => {
  9863. _iframe.contentWindow.document.body.appendChild(script1);
  9864. _iframe.contentWindow.document.body.appendChild(script2);
  9865. // _iframe.contentWindow.document.body.appendChild(script3);
  9866. _iframe.contentWindow.document.body.appendChild(script4);
  9867. };
  9868. }
  9869. _jie.onclick = async () => {
  9870. let text = ''
  9871. if (aTool == 6) {
  9872. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9873. } else if (aTool == 3) {
  9874. text = await U.MD.D.I.getEditorContent(_iframe);
  9875. }
  9876. _loading.style.display = 'flex'
  9877. console.log(_loading);
  9878. var _ajs = _iframe.contentWindow.document.createElement("script");
  9879. _ajs.type = "text/javascript";
  9880. _ajs.innerHTML =
  9881. // 'console.log(' + _loading + ');\n' +
  9882. 'var _js = document.createElement("script");\n' +
  9883. '_js.type="text/javascript";\n' +
  9884. '_js.charset="UTF-8";\n' +
  9885. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9886. "_js.onload = function(){\n" +
  9887. ' var a = document.getElementsByTagName("img")\n' +
  9888. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9889. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9890. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9891. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9892. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9893. "beforeUpload_shishi(file," +
  9894. "'" +
  9895. _userid +
  9896. "'" +
  9897. ", " +
  9898. "'" +
  9899. _cid +
  9900. "'" +
  9901. ", " +
  9902. "'" +
  9903. _stage +
  9904. "'" +
  9905. ", " +
  9906. "'" +
  9907. _task +
  9908. "'" +
  9909. ", " +
  9910. "'" +
  9911. _tool +
  9912. "'" +
  9913. ", " +
  9914. "'" +
  9915. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9916. "'" +
  9917. ", " +
  9918. "'" +
  9919. aTool +
  9920. "'" +
  9921. ", " +
  9922. "`" +
  9923. text +
  9924. "`" +
  9925. ")\n" +
  9926. " });\n" +
  9927. "}\n" +
  9928. "document.head.appendChild(_js);\n";
  9929. _iframe.contentWindow.document.head.appendChild(_ajs);
  9930. }
  9931. }
  9932. //U.MD.D.I.openClick(str);
  9933. //如果有任务栏信息
  9934. // if (_taskbar) {
  9935. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9936. // }
  9937. }
  9938. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9939. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9940. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9941. _userinfo = US.userInfo, //登录用户信息
  9942. _userid = US.userInfo.userid //登录用户id
  9943. let _iframe;
  9944. let _cid = cid,
  9945. _stage = stage,
  9946. _task = task,
  9947. _tool = tool;
  9948. var _jie = $$("div", {
  9949. "style": {
  9950. "position": "absolute",
  9951. "bottom": "50px",
  9952. "right": "50px",
  9953. "zIndex": "9999",
  9954. "backgroundColor": "#2268bc",
  9955. "color": "#fff",
  9956. "padding": "12px 20px",
  9957. "cursor": "pointer",
  9958. "borderRadius": "4px",
  9959. },
  9960. "innerHTML": "上传模板"
  9961. })
  9962. let aTool = ''
  9963. let _loading = document.createElement('div')
  9964. _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;"
  9965. // _loading.id = "";
  9966. let _lchild = document.createElement('div')
  9967. let _limg = document.createElement('img')
  9968. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9969. _limg.style = "width: 26px;margin-right: 10px;"
  9970. _lchild.appendChild(_limg)
  9971. let _lspan = document.createElement('span')
  9972. _lspan.innerHTML = "上传中..."
  9973. _lchild.appendChild(_lspan)
  9974. _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%);"
  9975. _loading.appendChild(_lchild)
  9976. var _box = $$('div', {
  9977. "style": {
  9978. "position": "relative",
  9979. "width": "100%",
  9980. "height": "100%",
  9981. },
  9982. })
  9983. _box.appendChild(_loading)
  9984. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9985. switch (str) {
  9986. case "whiteboard":
  9987. aTool = 1;
  9988. _iframe = $$("iframe", {
  9989. "frameborder": "no",
  9990. "border": "0",
  9991. "scrolling ": "no",
  9992. "style": {
  9993. "cssText": "border:0;width:100%;height:100%"
  9994. },
  9995. "src": "https://beta.iwb.cocorobo.cn/"
  9996. })
  9997. _box.appendChild(_iframe);
  9998. _box.appendChild(_jie);
  9999. _formdiv = new U.UF.UI.form(
  10000. "电子白板",
  10001. _box, {
  10002. "id": "whiteboards_Yu" + cid + stage + task + tool,
  10003. "style": {
  10004. "width": "90%",
  10005. "height": "90%",
  10006. "overflow": 'hidden'
  10007. },
  10008. "onresize": function () { }
  10009. }, {
  10010. closecallback: function () { }
  10011. }, {
  10012. "style": {
  10013. "height": "36px"
  10014. }
  10015. }).form; //创建窗体
  10016. _taskbar = {
  10017. "id": str + _formdiv.id,
  10018. "style": {
  10019. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10020. },
  10021. "name": "电子白板",
  10022. "forms": _formdiv,
  10023. "click": function () {
  10024. U.MD.D.I.openApplication(str, obj, info);
  10025. }
  10026. }
  10027. break;
  10028. case "mind":
  10029. aTool = 3;
  10030. _iframe = $$("iframe", {
  10031. "frameborder": "no",
  10032. "border": "0",
  10033. "scrolling ": "no",
  10034. "style": {
  10035. "cssText": "border:0;width:100%;height:100%"
  10036. },
  10037. "src": "/kityminder-editor/dist/index.html"
  10038. });
  10039. _box.appendChild(_iframe);
  10040. _box.appendChild(_jie);
  10041. _formdiv = new U.UF.UI.form(
  10042. "思维导图",
  10043. _box, { //"/jsmind/example/demo.html"
  10044. "id": "minds_Yu" + cid + stage + task + tool,
  10045. "style": {
  10046. "width": "90%",
  10047. "height": "90%",
  10048. "overflow": 'hidden'
  10049. },
  10050. "onresize": function () { }
  10051. }, {
  10052. closecallback: function () { }
  10053. }, {
  10054. "style": {
  10055. "height": "36px"
  10056. }
  10057. }).form; //创建窗体
  10058. _taskbar = {
  10059. "id": str + _formdiv.id,
  10060. "style": {
  10061. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10062. },
  10063. "name": "思维导图",
  10064. "forms": _formdiv,
  10065. "click": function () {
  10066. U.MD.D.I.openApplication(str, obj, info);
  10067. }
  10068. }
  10069. break;
  10070. case "doc":
  10071. aTool = 6;
  10072. _iframe = $$("iframe", {
  10073. "frameborder": "no",
  10074. "border": "0",
  10075. "scrolling ": "no",
  10076. "style": {
  10077. "cssText": "border:0;width:100%;height:100%"
  10078. },
  10079. "src": "/Office/Word/WordEditArea.htm"
  10080. })
  10081. _box.appendChild(_iframe);
  10082. _box.appendChild(_jie);
  10083. _formdiv = new U.UF.UI.form(
  10084. "协同文档",
  10085. _box, {
  10086. "id": "docs_Yu" + cid + stage + task + tool,
  10087. "style": {
  10088. "width": "90%",
  10089. "height": "90%",
  10090. "overflow": 'hidden'
  10091. },
  10092. "onresize": function () { }
  10093. }, {
  10094. closecallback: function () { }
  10095. }, {
  10096. "style": {
  10097. "height": "36px"
  10098. }
  10099. }).form; //创建窗体
  10100. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10101. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10102. })
  10103. _taskbar = {
  10104. "id": str + _formdiv.id,
  10105. "style": {
  10106. "backgroundImage": "url(/img/icon/doc.png)"
  10107. },
  10108. "name": "协同文档",
  10109. "forms": _formdiv,
  10110. "click": function () {
  10111. U.MD.D.I.openApplication(str, obj, info);
  10112. }
  10113. }
  10114. break;
  10115. case "CocoPi":
  10116. aTool = 57;
  10117. _iframe = $$("iframe", {
  10118. "allowpaymentrequest": "allowpaymentrequest",
  10119. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10120. "webkitallowfullscreen": "",
  10121. "mozallowfullscreen": "",
  10122. "frameborder": "no",
  10123. "border": "0",
  10124. "scrolling ": "no",
  10125. "style": {
  10126. "cssText": "border:0;width:100%;height:100%"
  10127. },
  10128. "src": "https://pi.cocorobo.cn/"
  10129. })
  10130. _box.appendChild(_iframe);
  10131. _box.appendChild(_jie);
  10132. _formdiv = new U.UF.UI.form(
  10133. "CocoPi",
  10134. _box, {
  10135. "id": "CocoPi_Yu" + cid + stage + task + tool,
  10136. "style": {
  10137. "width": "90%",
  10138. "height": "90%",
  10139. "overflow": 'hidden'
  10140. },
  10141. "onresize": function () { }
  10142. }, {
  10143. closecallback: function () { }
  10144. }, {
  10145. "style": {
  10146. "height": "36px"
  10147. }
  10148. }).form; //创建窗体
  10149. _taskbar = {
  10150. "id": str + _formdiv.id,
  10151. "style": {
  10152. "backgroundImage": "url(/img/icon/cocopi.png)"
  10153. },
  10154. "name": "CocoPi",
  10155. "forms": _formdiv,
  10156. "click": function () {
  10157. U.MD.D.I.openApplication(str, obj, info);
  10158. }
  10159. }
  10160. break;
  10161. }
  10162. if (_iframe) {
  10163. if (str == 'doc') {
  10164. _iframe = _formdiv.querySelector('iframe')
  10165. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10166. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10167. })
  10168. if (onloadListener) {
  10169. _iframe.contentDocument.location.reload()
  10170. } else {
  10171. _iframe.contentDocument.location.reload()
  10172. }
  10173. } else if (str == 'mind') {
  10174. _iframe = _formdiv.querySelector('iframe')
  10175. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10176. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10177. })
  10178. if (onloadListener) {
  10179. _iframe.contentDocument.location.reload()
  10180. } else {
  10181. _iframe.contentDocument.location.reload()
  10182. }
  10183. } else if (str == 'whiteboard') {
  10184. _iframe = _formdiv.querySelector('iframe')
  10185. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10186. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10187. })
  10188. // if (onloadListener) {
  10189. // try {
  10190. // _iframe.src += "?cocorobo="+new Date().getTime()
  10191. // _iframe.contentWindow.document.location.reload()
  10192. // } catch (error) {
  10193. // }
  10194. // } else {
  10195. // _iframe.contentDocument.location.reload()
  10196. // }
  10197. } else if (str == 'CocoPi') {
  10198. _iframe = _formdiv.querySelector('iframe')
  10199. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10200. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10201. })
  10202. if (onloadListener) {
  10203. _iframe.contentDocument.location.reload()
  10204. } else {
  10205. _iframe.contentDocument.location.reload()
  10206. }
  10207. } else {
  10208. _iframe.onload = () => { };
  10209. }
  10210. _jie.onclick = async () => {
  10211. let text = ''
  10212. let type = '2'
  10213. if (aTool == 1) {
  10214. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10215. type = '3'
  10216. } else if (aTool == 6) {
  10217. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10218. type = '1'
  10219. } else if (aTool == 3) {
  10220. text = await U.MD.D.I.getEditorContent(_iframe);
  10221. type = '2'
  10222. } else if (aTool == 57) {
  10223. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10224. type = '4'
  10225. }
  10226. _loading.style.display = 'flex'
  10227. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10228. }
  10229. }
  10230. //U.MD.D.I.openClick(str);
  10231. //如果有任务栏信息
  10232. // if (_taskbar) {
  10233. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10234. // }
  10235. }
  10236. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10237. var xmlhttp;
  10238. var Mac, Sn, DeviceId
  10239. if (window.XMLHttpRequest) {
  10240. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10241. xmlhttp = new XMLHttpRequest();
  10242. } else {
  10243. // IE6, IE5 浏览器执行代码
  10244. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10245. }
  10246. xmlhttp.onreadystatechange = function () {
  10247. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10248. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10249. // resolve(res.value[0][0].text);
  10250. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10251. }
  10252. }
  10253. }
  10254. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10255. xmlhttp.send();
  10256. }
  10257. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10258. var xmlhttp;
  10259. var Mac, Sn, DeviceId
  10260. if (window.XMLHttpRequest) {
  10261. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10262. xmlhttp = new XMLHttpRequest();
  10263. } else {
  10264. // IE6, IE5 浏览器执行代码
  10265. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10266. }
  10267. xmlhttp.onreadystatechange = function () {
  10268. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10269. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10270. // resolve(res.value[0][0].text);
  10271. if (type == '2') {
  10272. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10273. } else if (type == '3') {
  10274. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10275. } else if (type == '4') {
  10276. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10277. }
  10278. } else {
  10279. if (type == '2') {
  10280. iframe.contentWindow.editor.minder.importData('json', '')
  10281. } else if (type == '3') {
  10282. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10283. } else if (type == '4') {
  10284. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10285. }
  10286. }
  10287. }
  10288. }
  10289. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10290. xmlhttp.send();
  10291. }
  10292. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10293. var xmlhttp;
  10294. var Mac, Sn, DeviceId
  10295. if (window.XMLHttpRequest) {
  10296. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10297. xmlhttp = new XMLHttpRequest();
  10298. } else {
  10299. // IE6, IE5 浏览器执行代码
  10300. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10301. }
  10302. xmlhttp.onreadystatechange = function () {
  10303. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10304. if (xmlhttp.response) {
  10305. // resolve(res.value[0][0].text);
  10306. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10307. // $(fileInput).val('');
  10308. // });
  10309. span.innerHTML = '上传成功'
  10310. setTimeout(() => {
  10311. loading.style.display = 'none'
  10312. }, 1000);
  10313. }
  10314. }
  10315. }
  10316. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10317. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10318. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10319. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10320. // 设置请求头,表示请求体的编码格式
  10321. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10322. // 设置请求体,使用url-encoded格式的数据
  10323. }
  10324. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10325. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10326. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10327. _userinfo = US.userInfo, //登录用户信息
  10328. _userid = US.userInfo.userid //登录用户id
  10329. let _iframe;
  10330. let _cid = cid,
  10331. _stage = stage,
  10332. _task = task,
  10333. _tool = tool;
  10334. var _jie = $$("div", {
  10335. "style": {
  10336. "position": "absolute",
  10337. "bottom": "50px",
  10338. "right": "50px",
  10339. "zIndex": "9999",
  10340. "backgroundColor": "#2268bc",
  10341. "color": "#fff",
  10342. "padding": "12px 20px",
  10343. "cursor": "pointer",
  10344. "borderRadius": "4px",
  10345. },
  10346. "innerHTML": "提交作业"
  10347. })
  10348. let aTool = ''
  10349. let _loading = document.createElement('div')
  10350. _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;"
  10351. // _loading.id = "";
  10352. let _lchild = document.createElement('div')
  10353. let _limg = document.createElement('img')
  10354. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10355. _limg.style = "width: 26px;margin-right: 10px;"
  10356. _lchild.appendChild(_limg)
  10357. let _lspan = document.createElement('span')
  10358. _lspan.innerHTML = "上传中..."
  10359. _lchild.appendChild(_lspan)
  10360. _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%);"
  10361. _loading.appendChild(_lchild)
  10362. var _box = $$('div', {
  10363. "style": {
  10364. "position": "relative",
  10365. "width": "100%",
  10366. "height": "100%",
  10367. },
  10368. })
  10369. _box.appendChild(_loading)
  10370. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10371. switch (str) {
  10372. case "CocoPi":
  10373. aTool = 57;
  10374. _iframe = $$("iframe", {
  10375. "allowpaymentrequest": "allowpaymentrequest",
  10376. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10377. "webkitallowfullscreen": "",
  10378. "mozallowfullscreen": "",
  10379. "frameborder": "no",
  10380. "border": "0",
  10381. "scrolling ": "no",
  10382. "style": {
  10383. "cssText": "border:0;width:100%;height:100%"
  10384. },
  10385. "src": "https://pi.cocorobo.cn/"
  10386. })
  10387. _box.appendChild(_iframe);
  10388. _box.appendChild(_jie);
  10389. _formdiv = new U.UF.UI.form(
  10390. "CocoPi",
  10391. _box, {
  10392. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10393. "style": {
  10394. "width": "90%",
  10395. "height": "90%",
  10396. "overflow": 'hidden'
  10397. },
  10398. "onresize": function () { }
  10399. }, {
  10400. closecallback: function () { }
  10401. }, {
  10402. "style": {
  10403. "height": "36px"
  10404. }
  10405. }).form; //创建窗体
  10406. _taskbar = {
  10407. "id": str + _formdiv.id,
  10408. "style": {
  10409. "backgroundImage": "url(/img/icon/cocopi.png)"
  10410. },
  10411. "name": "CocoPi",
  10412. "forms": _formdiv,
  10413. "click": function () {
  10414. U.MD.D.I.openApplication(str, obj, info);
  10415. }
  10416. }
  10417. break;
  10418. }
  10419. if (_iframe) {
  10420. if (str == 'CocoPi') {
  10421. _iframe = _formdiv.querySelector('iframe')
  10422. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10423. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10424. })
  10425. if (onloadListener) {
  10426. _iframe.contentDocument.location.reload()
  10427. } else {
  10428. _iframe.contentDocument.location.reload()
  10429. }
  10430. }
  10431. _jie.onclick = async () => {
  10432. let text = ''
  10433. if (aTool == 57) {
  10434. text = _iframe.contentWindow.getLoadXmlStr()
  10435. }
  10436. _loading.style.display = 'flex'
  10437. console.log(_loading);
  10438. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10439. _loading.style.display = 'none'
  10440. let _div = document.createElement('div')
  10441. _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;"
  10442. let _inner = document.createElement('div')
  10443. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10444. _inner.innerHTML = "上传成功"
  10445. _div.appendChild(_inner)
  10446. _iframe.contentWindow.window.document.body.appendChild(_div)
  10447. _div.onclick = () => {
  10448. _iframe.contentWindow.window.document.body.removeChild(_div)
  10449. }
  10450. setTimeout(() => {
  10451. _iframe.contentWindow.window.document.body.removeChild(_div)
  10452. }, 1000);
  10453. }, [], { "type": "POST", "withCredentials": true });
  10454. }
  10455. }
  10456. }
  10457. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10458. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10459. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10460. _userid = student.userid, //登录用户id
  10461. _username = student.student //用户名字
  10462. let _iframe;
  10463. let _cid = cid,
  10464. _stage = stage,
  10465. _task = task,
  10466. _tool = tool;
  10467. var _jie = $$("div", {
  10468. "style": {
  10469. "position": "absolute",
  10470. "bottom": "50px",
  10471. "right": "50px",
  10472. "zIndex": "9999",
  10473. "backgroundColor": "#2268bc",
  10474. "color": "#fff",
  10475. "padding": "12px 20px",
  10476. "cursor": "pointer",
  10477. "borderRadius": "4px",
  10478. },
  10479. "innerHTML": "提交作业"
  10480. })
  10481. let aTool = ''
  10482. let _loading = document.createElement('div')
  10483. _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;"
  10484. // _loading.id = "";
  10485. let _lchild = document.createElement('div')
  10486. let _limg = document.createElement('img')
  10487. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10488. _limg.style = "width: 26px;margin-right: 10px;"
  10489. _lchild.appendChild(_limg)
  10490. let _lspan = document.createElement('span')
  10491. _lspan.innerHTML = "上传中..."
  10492. _lchild.appendChild(_lspan)
  10493. _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%);"
  10494. _loading.appendChild(_lchild)
  10495. var _box = $$('div', {
  10496. "style": {
  10497. "position": "relative",
  10498. "width": "100%",
  10499. "height": "100%",
  10500. },
  10501. })
  10502. _box.appendChild(_loading)
  10503. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10504. switch (str) {
  10505. case "CocoPi":
  10506. aTool = 57;
  10507. _iframe = $$("iframe", {
  10508. "allowpaymentrequest": "allowpaymentrequest",
  10509. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10510. "webkitallowfullscreen": "",
  10511. "mozallowfullscreen": "",
  10512. "frameborder": "no",
  10513. "border": "0",
  10514. "scrolling ": "no",
  10515. "style": {
  10516. "cssText": "border:0;width:100%;height:100%"
  10517. },
  10518. "src": "https://pi.cocorobo.cn/"
  10519. })
  10520. _box.appendChild(_iframe);
  10521. _box.appendChild(_jie);
  10522. _formdiv = new U.UF.UI.form(
  10523. "CocoPi-" + _username,
  10524. _box, {
  10525. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10526. "style": {
  10527. "width": "90%",
  10528. "height": "90%",
  10529. "overflow": 'hidden'
  10530. },
  10531. "onresize": function () { }
  10532. }, {
  10533. closecallback: function () { }
  10534. }, {
  10535. "style": {
  10536. "height": "36px"
  10537. }
  10538. }).form; //创建窗体
  10539. _taskbar = {
  10540. "id": str + _formdiv.id,
  10541. "style": {
  10542. "backgroundImage": "url(/img/icon/cocopi.png)"
  10543. },
  10544. "name": "CocoPi",
  10545. "forms": _formdiv,
  10546. "click": function () {
  10547. U.MD.D.I.openApplication(str, obj, info);
  10548. }
  10549. }
  10550. break;
  10551. }
  10552. if (_iframe) {
  10553. if (str == 'CocoPi') {
  10554. _iframe = _formdiv.querySelector('iframe')
  10555. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10556. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10557. })
  10558. if (onloadListener) {
  10559. _iframe.contentDocument.location.reload()
  10560. } else {
  10561. _iframe.contentDocument.location.reload()
  10562. }
  10563. }
  10564. _jie.onclick = async () => {
  10565. let text = ''
  10566. if (aTool == 57) {
  10567. text = _iframe.contentWindow.getLoadXmlStr()
  10568. }
  10569. _loading.style.display = 'flex'
  10570. console.log(_loading);
  10571. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10572. _loading.style.display = 'none'
  10573. let _div = document.createElement('div')
  10574. _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;"
  10575. let _inner = document.createElement('div')
  10576. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10577. _inner.innerHTML = "上传成功"
  10578. _div.appendChild(_inner)
  10579. _iframe.contentWindow.window.document.body.appendChild(_div)
  10580. _div.onclick = () => {
  10581. _iframe.contentWindow.window.document.body.removeChild(_div)
  10582. }
  10583. setTimeout(() => {
  10584. _iframe.contentWindow.window.document.body.removeChild(_div)
  10585. }, 1000);
  10586. }, [], { "type": "POST", "withCredentials": true });
  10587. }
  10588. }
  10589. }
  10590. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10591. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10592. if (res.value[0].length > 0) {
  10593. if (atool == 57) {
  10594. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10595. }
  10596. } else {
  10597. if (atool == 57) {
  10598. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10599. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10600. }
  10601. }
  10602. }, [], { "type": "POST", "withCredentials": true });
  10603. }