DeskTop.js 728 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  106. ];
  107. U.MD.D.I.studentDeskIcon = [
  108. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  109. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  110. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  111. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  112. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  113. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  114. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  115. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  116. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  117. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  118. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  119. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  120. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  121. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  122. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  123. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  124. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  125. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  126. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  127. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  128. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  129. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  130. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  131. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  132. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  133. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  134. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  135. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  136. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  137. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  138. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  139. ];
  140. U.MD.D.I.studentDeskIcon2 = [
  141. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  142. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  143. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  144. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  145. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  146. ]
  147. U.MD.D.I.studentDeskIcon3 = [
  148. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  149. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  150. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  151. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  152. ]
  153. U.MD.D.I.schoolDeskIcon = [
  154. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  155. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  156. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  157. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  158. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  159. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  160. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  161. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  162. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  163. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  164. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  165. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  166. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  167. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  168. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  169. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  170. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  171. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  172. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  173. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  174. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  175. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  176. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  177. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  178. ];
  179. U.MD.D.I.orgDeskIcon = [
  180. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  181. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  182. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  183. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  184. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  185. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  187. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  188. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  189. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  190. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  191. ];
  192. U.MD.D.I.orgStemDeskIcon = [
  193. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  194. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  195. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  196. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  197. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  198. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  199. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  200. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  201. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  202. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  203. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  204. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  205. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  206. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  207. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  209. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  210. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  211. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  212. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  213. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  214. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  215. ];
  216. U.MD.D.I.szulsDeskIcon = [
  217. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  218. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  219. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  220. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  221. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  222. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  223. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  224. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  225. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  226. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  227. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  228. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  229. ];
  230. U.MD.D.I.hanDeskIcon = [
  231. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  232. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  233. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  234. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  235. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  236. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  237. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  238. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  239. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  240. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  241. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  242. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  243. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  244. ];
  245. U.MD.D.I.GMteacherDeskIcon = [
  246. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  247. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  248. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  249. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  250. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  251. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  252. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  253. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  254. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  255. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  256. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  257. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  258. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  259. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  260. ];
  261. U.MD.D.I.GMstudentDeskIcon = [
  262. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  263. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  264. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  265. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  266. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  267. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  268. ];
  269. //松山湖
  270. U.MD.D.I.SONGteacherDeskIcon = [
  271. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  272. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  273. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  274. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  275. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  276. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  277. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  278. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  279. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  280. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  281. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  282. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  283. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  284. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  285. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  286. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  287. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  288. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  289. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  290. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  291. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  292. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  293. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  294. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  295. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  296. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  297. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  298. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  299. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  300. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  301. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  302. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  303. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  304. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  305. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  306. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  307. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  308. ];
  309. U.MD.D.I.tcStudentDeskIcon = [
  310. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  311. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  312. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  313. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  314. ];
  315. U.MD.D.I.tcTeacherDeskIcon = [
  316. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  317. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  318. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  319. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  320. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  321. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  322. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  323. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  324. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  325. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  326. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  327. ];
  328. U.MD.D.I.tcOrganizerDeskIcon = [
  329. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  330. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  331. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  332. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  333. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  334. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  335. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  336. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  337. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  338. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  339. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  340. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  341. ];
  342. U.MD.D.I.szscStudentDeskIcon = [
  343. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  344. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  345. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  346. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  347. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  348. ];
  349. U.MD.D.I.szscTeacherDeskIcon = [
  350. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  351. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  352. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  353. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  354. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  355. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  356. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  357. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  358. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  359. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  360. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  361. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  362. ];
  363. U.MD.D.I.szscOrganizerDeskIcon = [
  364. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  365. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  366. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  367. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  368. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  369. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  370. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  371. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  372. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  373. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  374. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  375. ];
  376. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  377. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  378. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  379. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  380. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  381. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  382. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  383. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  384. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  385. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  386. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  387. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  388. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  389. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  390. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  391. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  392. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  393. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  394. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  395. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  396. ];
  397. U.MD.D.I.wankeAdminDeskIcon = [
  398. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  399. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  400. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  401. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  402. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  403. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  404. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  405. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  406. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  407. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  408. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  409. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  410. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  411. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  412. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  413. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  414. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  415. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  416. ];
  417. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  418. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  419. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  420. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  421. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  422. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  423. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  424. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  425. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  426. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  427. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  428. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  429. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  430. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  431. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  432. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  433. ];
  434. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  435. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  436. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  437. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  438. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  439. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  440. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  441. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  442. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  443. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  444. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  445. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  446. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  447. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  448. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  449. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  450. ];
  451. //明德教师桌面图标的全局变量
  452. U.MD.D.I.MingdeTeacherDeskIcon = [
  453. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  454. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  455. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  456. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  457. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  458. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  459. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  460. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  461. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  462. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  463. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  464. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  465. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  466. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  467. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  468. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  469. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  470. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  471. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  472. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  473. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  474. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  475. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  476. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  477. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  478. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  479. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  480. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  481. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  482. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  483. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  484. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  485. ];
  486. //97c4ee8b-d010-4042-986d-e9d3c217264f
  487. //教师桌面图标的全局变量
  488. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  489. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  490. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  491. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  492. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  493. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  494. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  495. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  496. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  497. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  498. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  499. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  500. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  501. ];
  502. //福田
  503. U.MD.D.I.futianTeacherDeskIcon = [
  504. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  505. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  506. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  507. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  508. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  509. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  510. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  511. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  512. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  513. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  514. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  515. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  516. ];
  517. //福田
  518. U.MD.D.I.futianAdminDeskIcon = [
  519. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  520. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  521. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  522. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  523. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  524. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  525. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  526. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  527. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  528. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  529. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  530. ];
  531. //lotech
  532. U.MD.D.I.lotechTeacherDeskIcon = [
  533. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  534. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  535. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  536. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  537. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  538. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  539. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  540. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  541. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  542. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  543. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  544. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  545. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  546. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  547. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  548. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  549. ];
  550. //龙华中心小学教师桌面图标的全局变量
  551. U.MD.D.I.longhuateacherDeskIcon = [
  552. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  553. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  554. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  555. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  556. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  557. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  558. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  559. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  560. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  561. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  562. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  563. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  564. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  565. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  566. ];
  567. //教科院实小教师桌面图标的全局变量
  568. U.MD.D.I.siesteacherDeskIcon = [
  569. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  570. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  571. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  572. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  573. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  574. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  575. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  576. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  577. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  578. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  579. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  580. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  581. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  582. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  583. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  584. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  585. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  587. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  588. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  589. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  590. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  591. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  592. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  593. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  594. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  595. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  596. ];
  597. //教科院实小教师桌面图标的全局变量
  598. U.MD.D.I.siesStudentDeskIcon = [
  599. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  600. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  601. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  602. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  603. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  604. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  605. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  606. ];
  607. //中山小学教师桌面图标的全局变量
  608. U.MD.D.I.guzmsteacherDeskIcon = [
  609. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  610. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  611. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  612. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  613. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  614. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  615. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  616. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  617. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  618. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  619. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  620. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  621. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  622. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  623. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  624. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  625. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  626. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  627. ];
  628. //中山小学学生桌面图标的全局变量
  629. U.MD.D.I.guzmsStudentDeskIcon = [
  630. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  631. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  632. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  633. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  634. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  635. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  636. ];
  637. //福田
  638. U.MD.D.I.gdjgTeacherDeskIcon = [
  639. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  640. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  641. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  642. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  643. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  644. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  645. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  646. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  647. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  648. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  649. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  650. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  651. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  652. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  653. ];
  654. //gdjg
  655. U.MD.D.I.gdjgAdminDeskIcon = [
  656. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  657. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  658. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  659. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  660. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  661. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  662. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  663. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  664. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  665. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  666. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  667. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  668. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  669. ];
  670. //hk
  671. U.MD.D.I.hkteacherDeskIcon = [
  672. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  673. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  674. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  675. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  676. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  677. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  678. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  679. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  680. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  681. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  682. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  683. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  684. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  685. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  686. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  687. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  688. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  689. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  690. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  691. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  692. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  693. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  694. ];
  695. //ricoh
  696. U.MD.D.I.ricohteacherDeskIcon = [
  697. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  698. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  699. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  700. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  701. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  702. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  703. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  704. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  705. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  706. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  707. ];
  708. //hk
  709. U.MD.D.I.hkStudentDeskIcon = [
  710. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  711. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  712. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  713. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  714. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  715. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  716. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  717. ];
  718. //hk
  719. U.MD.D.I.tycyteacherDeskIcon = [
  720. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  721. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  722. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  723. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  724. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  725. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  726. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  727. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  728. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  729. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  730. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  731. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  732. ];
  733. //hk
  734. U.MD.D.I.tycyStudentDeskIcon = [
  735. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  736. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  737. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  738. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  739. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  740. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  741. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  742. ];
  743. //hk
  744. U.MD.D.I.ckcpsteacherDeskIcon = [
  745. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  746. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  747. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  748. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  749. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  750. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  751. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  752. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  753. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  754. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  755. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  756. ];
  757. //hk
  758. U.MD.D.I.ckcpsStudentDeskIcon = [
  759. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  760. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  761. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  762. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  763. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  764. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  765. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  766. ];
  767. //hk
  768. U.MD.D.I.hkaceteacherDeskIcon = [
  769. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  770. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  771. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  772. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  773. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  774. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  775. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  776. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  777. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  778. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  779. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  780. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  781. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  782. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  783. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  784. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  785. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  786. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  787. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  788. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  789. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  790. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  791. ];
  792. //hk
  793. U.MD.D.I.hkaceStudentDeskIcon = [
  794. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  795. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  796. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  797. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  798. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  799. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  800. ];
  801. //香海正覺蓮社佛教正覺中學
  802. U.MD.D.I.hkZJLSteacherDeskIcon = [
  803. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  804. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  805. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  806. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  807. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  808. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  809. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  810. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  811. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  812. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  813. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  814. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  815. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  816. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  817. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  818. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  819. ];
  820. //香海正覺蓮社佛教正覺中學
  821. U.MD.D.I.hkZJLSStudentDeskIcon = [
  822. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  823. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  824. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  825. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  826. ];
  827. //云海
  828. U.MD.D.I.yunhaiTeacherDeskIcon = [
  829. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  830. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  831. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  832. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  833. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  834. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  835. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  836. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  837. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  838. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  839. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  840. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  841. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  842. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  843. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  844. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  845. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  846. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  847. ];
  848. //福田
  849. U.MD.D.I.heyuanTeacherDeskIcon = [
  850. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  851. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  852. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  853. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  854. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  855. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  856. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  857. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  858. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  859. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  860. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  861. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  862. ];
  863. //福田
  864. U.MD.D.I.heyuanAdminDeskIcon = [
  865. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  866. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  867. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  868. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  869. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  870. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  871. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  872. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  873. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  874. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  875. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  876. ];
  877. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  878. U.MD.D.I.szherTeacherDeskIcon = [
  879. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  880. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  881. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  882. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  883. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  884. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  885. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  886. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  887. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  888. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  889. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  890. ];
  891. //dsei
  892. U.MD.D.I.dseiTeacherDeskIcon = [
  893. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  894. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  895. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  896. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  897. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  898. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  899. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  900. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  901. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  902. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  903. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  904. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  905. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  906. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  907. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  908. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  909. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  910. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  911. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  912. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  913. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  914. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  915. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  916. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  917. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  918. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  919. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  920. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  921. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  922. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  923. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  924. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  925. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  926. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  927. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  928. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  929. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  930. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  931. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  932. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  933. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  934. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  935. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  936. ];
  937. //dsei
  938. U.MD.D.I.dseiAdminDeskIcon = [
  939. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  940. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  941. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  942. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  948. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  949. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  950. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  951. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  952. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  953. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  954. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  955. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  956. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  957. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  958. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  959. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  960. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  961. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  962. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  963. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  964. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  965. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  966. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  967. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  968. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  969. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  970. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  971. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  972. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  973. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  974. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  975. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  976. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  977. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  978. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  979. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  980. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  981. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  982. ];
  983. //dsei
  984. U.MD.D.I.dseiStudentDeskIcon = [
  985. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  986. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  987. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  988. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  989. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  990. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  991. ];
  992. //未来教育基地
  993. U.MD.D.I.szjkyTeacherDeskIcon = [
  994. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  995. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  996. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  997. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  998. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  999. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1000. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1001. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1002. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1003. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1004. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1005. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1006. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1007. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1008. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1009. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1010. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1011. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1012. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1013. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1014. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1015. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1016. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1017. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1018. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1019. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1020. ];
  1021. //未来教育基地
  1022. U.MD.D.I.szjkyAdminDeskIcon = [
  1023. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1024. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1025. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1026. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1027. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1028. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1029. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1030. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1031. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1032. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1033. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1034. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1035. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1036. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1037. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1038. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1039. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1040. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1041. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1042. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1043. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1044. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1045. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1046. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1047. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1048. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1049. ];
  1050. //未来教育基地
  1051. U.MD.D.I.szjkyStudentDeskIcon = [
  1052. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1053. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1054. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1055. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1056. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1057. ];
  1058. //成华教育局
  1059. U.MD.D.I.chjyjTeacherDeskIcon = [
  1060. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1061. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1062. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1063. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1064. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1065. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1066. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1067. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1068. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1069. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1070. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1071. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1072. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1073. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1074. ];
  1075. //成华教育局chjyj
  1076. U.MD.D.I.chjyjAdminDeskIcon = [
  1077. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1078. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1079. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1080. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1081. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1082. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1083. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1084. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1085. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1086. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1087. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1088. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1089. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1090. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1091. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1092. ];
  1093. //成华教育局chjyj
  1094. U.MD.D.I.chjyjStudentDeskIcon = [
  1095. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1096. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1097. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1098. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1099. ];
  1100. //tpc
  1101. U.MD.D.I.tpcStudentDeskIcon = [
  1102. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1103. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1104. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1105. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1106. ];
  1107. //tpc
  1108. U.MD.D.I.tpcTeacherDeskIcon = [
  1109. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1110. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1111. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1112. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1113. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1114. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1115. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1116. ];
  1117. //tpc
  1118. U.MD.D.I.tpcAdminDeskIcon = [
  1119. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1120. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1121. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1122. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1123. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1124. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1125. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1126. ];
  1127. //THU-IOE
  1128. U.MD.D.I.thuioeTeacherDeskIcon = [
  1129. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1130. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1131. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1132. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1133. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1134. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1135. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1136. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1137. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1138. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1139. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1140. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1141. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1142. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1143. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1144. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1145. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1146. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1147. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1148. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1149. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1150. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1151. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1152. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1153. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1154. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1155. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1156. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1157. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1158. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1159. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1160. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1161. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1162. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1163. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1164. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1165. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1166. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1167. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1168. ];
  1169. //THU-IOE
  1170. U.MD.D.I.thuioeStudentDeskIcon = [
  1171. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1172. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1173. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1174. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1175. ];
  1176. //jccssyl
  1177. U.MD.D.I.jccssylTeacherDeskIcon = [
  1178. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1179. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1180. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1182. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1183. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1184. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1185. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1186. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1187. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1188. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1189. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1190. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1191. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1192. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1193. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1194. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1195. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1196. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1197. ];
  1198. //jccssyl
  1199. U.MD.D.I.jccssylStudentDeskIcon = [
  1200. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1201. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1202. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1203. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1204. ];
  1205. //cale
  1206. U.MD.D.I.caleTeacherDeskIcon = [
  1207. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1208. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1209. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1210. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1211. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1212. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1213. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1214. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1215. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1216. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1217. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1218. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1219. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1220. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1221. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1222. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1223. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1224. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1225. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1226. ];
  1227. //cale
  1228. U.MD.D.I.caleStudentDeskIcon = [
  1229. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1230. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1231. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1232. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1233. ];
  1234. //lqwmsgzs
  1235. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1236. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1237. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1238. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1239. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1240. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1241. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1242. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1243. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1244. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1245. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1246. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1247. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1248. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1249. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1250. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1251. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1252. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1253. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1254. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1255. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1256. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1257. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1258. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1259. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1260. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1261. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1262. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1263. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1264. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1265. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1266. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1267. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1268. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1269. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1270. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1271. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1272. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1273. ];
  1274. //lqwmsgzs
  1275. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1276. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1277. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1278. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1279. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1280. ];
  1281. //盐田区幼儿园
  1282. U.MD.D.I.ytyTeacherDeskIcon = [
  1283. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1284. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1285. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1286. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1287. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1288. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1289. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1290. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1291. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1292. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1293. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1294. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1295. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1296. ];
  1297. //盐田区幼儿园
  1298. U.MD.D.I.ytyStudentDeskIcon = [
  1299. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1300. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1301. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1302. ];
  1303. //scnuai
  1304. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1305. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1306. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1307. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1308. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1309. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1310. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1311. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1312. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1313. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1314. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1315. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1316. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1317. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1318. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1319. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1320. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1321. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1322. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1323. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1324. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1325. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1326. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1327. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1328. ];
  1329. //scnuai
  1330. U.MD.D.I.scnuaiAdminDeskIcon = [
  1331. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1332. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1333. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1334. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1335. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1336. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1337. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1338. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1339. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1340. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1341. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1342. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1343. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1344. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1345. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1346. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1347. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1348. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1349. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1350. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1351. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1352. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1353. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1354. ];
  1355. //scnuai
  1356. U.MD.D.I.scnuaiStudentDeskIcon = [
  1357. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1358. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1359. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1360. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1361. ];
  1362. //cocobiz
  1363. U.MD.D.I.cocobizteacherDeskIcon = [
  1364. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1365. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1366. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1367. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1368. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1369. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1370. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1371. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1372. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1373. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1374. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1375. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1376. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1377. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1378. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1379. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1380. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1381. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1382. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1383. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1384. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1385. ];
  1386. //cocobiz
  1387. U.MD.D.I.cocobizStudentDeskIcon = [
  1388. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1389. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1390. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1391. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1392. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1393. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1394. ];
  1395. //xxzjky
  1396. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1397. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1398. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1399. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1400. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1401. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1402. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1403. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1404. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1405. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1406. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1407. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1408. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1409. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1410. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1411. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1412. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1413. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1414. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1415. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1416. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1417. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1418. ];
  1419. //xxzjky
  1420. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1421. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1422. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1423. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1424. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1425. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1426. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1427. ];
  1428. //nsfx
  1429. U.MD.D.I.nsfxTeacherDeskIcon = [
  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. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1433. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1434. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1435. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1436. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1437. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1438. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1439. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1440. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1441. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1442. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1443. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1444. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1445. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1446. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1447. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1448. ];
  1449. //nsfx
  1450. U.MD.D.I.nsfxStudentDeskIcon = [
  1451. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1452. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1453. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1454. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1455. ];
  1456. //stia
  1457. U.MD.D.I.stiaTeacherDeskIcon = [
  1458. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1459. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1460. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1461. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1462. // { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1463. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1464. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1465. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1466. // { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1467. // { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1468. // { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1469. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1470. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1471. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1472. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1473. ];
  1474. //stia
  1475. U.MD.D.I.stiaStudentDeskIcon = [
  1476. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1477. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1478. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1479. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1480. ];
  1481. //szdjg
  1482. U.MD.D.I.szdjgTeacherDeskIcon = [
  1483. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1484. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1485. ];
  1486. //szdjg
  1487. U.MD.D.I.szdjgStudentDeskIcon = [
  1488. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1489. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1490. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1491. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1492. ];
  1493. //010607
  1494. U.MD.D.I.x010607TeacherDeskIcon = [
  1495. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1496. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1497. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1498. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1499. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1500. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1501. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1502. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1503. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1504. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1505. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1506. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1507. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1508. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1509. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1510. ];
  1511. //010607
  1512. U.MD.D.I.x010607StudentDeskIcon = [
  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. //010608
  1519. U.MD.D.I.x010608TeacherDeskIcon = [
  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. ];
  1535. //010608
  1536. U.MD.D.I.x010608StudentDeskIcon = [
  1537. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1538. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1539. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1540. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1541. ];
  1542. //xhly
  1543. U.MD.D.I.xhlyTeacherDeskIcon = [
  1544. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1545. ];
  1546. //010608
  1547. U.MD.D.I.xhlyStudentDeskIcon = [
  1548. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1549. ];
  1550. //北师大
  1551. U.MD.D.I.BSDNSteacherDeskIcon = [
  1552. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1553. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1554. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1555. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1556. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1557. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1558. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1559. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1560. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1561. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1562. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1563. ];
  1564. //北师大
  1565. U.MD.D.I.BSDNSstudentDeskIcon = [
  1566. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1567. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1568. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1569. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1570. ];
  1571. //CUHK_EDU
  1572. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1573. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1574. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1575. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1576. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1577. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1578. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1579. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1580. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1581. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1582. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1583. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1584. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1585. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1586. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1587. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1588. ];
  1589. //CUHK_EDU
  1590. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1591. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1592. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1593. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1594. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1595. ];
  1596. //010503
  1597. U.MD.D.I.x010503TeacherDeskIcon = [
  1598. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1599. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1600. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1601. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1602. { "Name": "项目管理", "Url": "studentCourseS", "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": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1605. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1606. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1607. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1608. ];
  1609. //010503
  1610. U.MD.D.I.x010503StudentDeskIcon = [
  1611. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1612. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1613. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1614. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1615. ];
  1616. //SPROUT Lab
  1617. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1618. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1619. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1620. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1621. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1622. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1623. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1624. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1625. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1626. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1627. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1628. ];
  1629. //SPROUT Lab
  1630. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1631. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1632. { "Name": "项目管理", "Url": "studentCourse", "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": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1635. ];
  1636. //010204
  1637. U.MD.D.I.x010204TeacherDeskIcon = [
  1638. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1639. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1640. ];
  1641. //010204
  1642. U.MD.D.I.x010204StudentDeskIcon = [
  1643. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1644. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1645. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1646. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1647. ];
  1648. //trail
  1649. U.MD.D.I.trailTeacherDeskIcon = [
  1650. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1651. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1652. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1653. ];
  1654. //trail
  1655. U.MD.D.I.trailStudentDeskIcon = [
  1656. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1657. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1658. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1659. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1660. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1661. ];
  1662. //trial
  1663. U.MD.D.I.trialTeacherDeskIcon = [
  1664. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1665. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.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": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1669. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1670. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  1671. ];
  1672. //trial
  1673. U.MD.D.I.trialStudentDeskIcon = [
  1674. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1675. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1676. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1677. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1678. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1679. ];
  1680. //010504
  1681. U.MD.D.I.x010504TeacherDeskIcon = [
  1682. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1683. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1684. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1685. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1686. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1687. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1688. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1689. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1690. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1691. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1692. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1693. ];
  1694. //010504
  1695. U.MD.D.I.x010504StudentDeskIcon = [
  1696. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1697. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1698. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1699. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1700. ];
  1701. //010505
  1702. U.MD.D.I.x010505TeacherDeskIcon = [
  1703. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1704. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1705. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1706. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1707. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1708. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1709. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1710. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1711. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1712. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1713. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1714. ];
  1715. //010505
  1716. U.MD.D.I.x010505StudentDeskIcon = [
  1717. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1718. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1719. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1720. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1721. ];
  1722. //SCNUET
  1723. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1724. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1725. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1726. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1727. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1728. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1729. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1730. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1731. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1732. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1733. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1734. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1735. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1736. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1737. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1738. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1739. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1740. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1741. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1742. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1743. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1744. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1745. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1746. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1747. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1748. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1749. ];
  1750. //SCNUET
  1751. U.MD.D.I.SCNUETAdminDeskIcon = [
  1752. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1753. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1754. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1755. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1756. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1757. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1758. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1759. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.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": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1763. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1764. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1765. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1766. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1767. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1768. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1769. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1770. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1771. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1772. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1773. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1774. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1775. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1776. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1777. ];
  1778. //SCNUET
  1779. U.MD.D.I.SCNUETStudentDeskIcon = [
  1780. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1781. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1782. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1783. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1784. ];
  1785. //x020201
  1786. U.MD.D.I.x020201TeacherDeskIcon = [
  1787. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1788. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1789. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1790. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1791. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1792. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1793. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1794. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1795. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1796. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1797. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1798. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1799. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1800. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1801. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1802. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1803. ];
  1804. //x020201
  1805. U.MD.D.I.x020201AdminDeskIcon = [
  1806. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1807. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1808. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1809. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1810. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1811. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1812. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1813. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1814. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1815. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1816. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1817. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1818. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1819. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1820. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1821. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1822. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1823. ];
  1824. //020201
  1825. U.MD.D.I.x020201StudentDeskIcon = [
  1826. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1827. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1828. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1829. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1830. ];
  1831. //010611
  1832. U.MD.D.I.x010611TeacherDeskIcon = [
  1833. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1834. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1835. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1836. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1837. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1838. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1839. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1840. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1841. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1842. ];
  1843. //010611
  1844. U.MD.D.I.x010611StudentDeskIcon = [
  1845. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1846. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1847. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1848. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1849. ];
  1850. //010612
  1851. U.MD.D.I.x010612TeacherDeskIcon = [
  1852. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1853. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1854. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1855. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1856. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1857. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1858. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1859. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1860. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1861. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1862. ];
  1863. //010612
  1864. U.MD.D.I.x010612StudentDeskIcon = [
  1865. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1866. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1867. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1868. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1869. ];
  1870. //tianyuan
  1871. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1872. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1873. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1874. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1875. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1876. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1877. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1878. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1879. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1880. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1881. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1882. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1883. ];
  1884. //010611
  1885. U.MD.D.I.tianyuanStudentDeskIcon = [
  1886. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1887. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1888. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1889. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1890. ];
  1891. //320101
  1892. U.MD.D.I.x320101TeacherDeskIcon = [
  1893. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1894. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1895. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1896. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1897. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1898. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1899. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1900. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1901. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1902. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1903. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1904. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1905. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1906. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1907. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1908. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1909. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1910. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1911. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1912. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1913. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1914. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1915. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1916. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1917. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1918. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1919. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1920. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1921. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1922. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1923. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1924. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1925. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1926. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1927. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1928. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1929. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1930. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1931. ];
  1932. //320101
  1933. U.MD.D.I.x320101StudentDeskIcon = [
  1934. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1935. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1936. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1937. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1938. ];
  1939. //szsy
  1940. U.MD.D.I.szsyTeacherDeskIcon = [
  1941. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1942. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1943. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1944. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1945. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1946. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1947. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1948. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1949. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1950. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1951. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1952. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1953. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1954. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1955. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1956. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1957. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1958. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1959. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1960. ];
  1961. //szsy
  1962. U.MD.D.I.szsyStudentDeskIcon = [
  1963. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1964. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1965. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1966. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1967. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1968. ];
  1969. //010404
  1970. U.MD.D.I.x010404TeacherDeskIcon = [
  1971. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1972. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1973. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1974. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1975. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1976. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1977. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1978. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1979. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1980. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1981. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1982. ];
  1983. //010404
  1984. U.MD.D.I.x010404StudentDeskIcon = [
  1985. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1986. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1987. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1988. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1989. ];
  1990. //cocorobo demo
  1991. U.MD.D.I.demoCocoTeacherDeskIcon = [
  1992. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1993. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1994. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1995. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1996. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1997. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1998. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1999. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2000. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2001. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2002. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2003. ];
  2004. //cocorobo demo
  2005. U.MD.D.I.demoCocoStudentDeskIcon = [
  2006. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2007. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2008. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2009. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2010. ];
  2011. //MOAI
  2012. U.MD.D.I.MOAITeacherDeskIcon = [
  2013. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  2014. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2015. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2016. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2017. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2018. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  2019. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2020. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2021. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2022. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2023. ];
  2024. //MOAI 学生端
  2025. U.MD.D.I.MOAIStudentDeskIcon = [
  2026. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2027. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2028. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2029. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2030. ];
  2031. //#region 桌面初始化a
  2032. /**
  2033. * 初始化桌面的起始函数
  2034. *
  2035. */
  2036. U.MD.D.I.init = function () {
  2037. if ($("#U_MD_D_K")[0]) {
  2038. //初始化桌面图标
  2039. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  2040. // var clickUrl = ':12588/requestIp.php';
  2041. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  2042. // U.MD.D.I.Ip = data;
  2043. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  2044. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  2045. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  2046. // })
  2047. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  2048. // })
  2049. }
  2050. }
  2051. /**
  2052. * 模式切换
  2053. *
  2054. */
  2055. U.MD.D.I.ModeCheck = function (type) {
  2056. if (US.Config.type == type) {
  2057. return
  2058. }
  2059. US.Config.type = type
  2060. $('.U_PBL_Check .active')[0].className = ''
  2061. if (type == 1) {
  2062. $('.U_PBL_Check div')[0].className = 'active'
  2063. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  2064. } else {
  2065. $('.U_PBL_Check div')[1].className = 'active'
  2066. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  2067. }
  2068. //初始化桌面图标
  2069. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  2070. if (type == 2) {
  2071. U.MD.D.I.openApplication("project")
  2072. }
  2073. }
  2074. /**
  2075. * 隐藏任务栏
  2076. *
  2077. * @param {element} 桌面元素
  2078. */
  2079. U.MD.D.I.hiddenTaskbar = function (el) {
  2080. //任务栏位置变小
  2081. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  2082. //桌面的位置变大
  2083. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2084. }
  2085. /**
  2086. * 隐藏任务栏
  2087. *
  2088. * @param {element} 桌面元素
  2089. */
  2090. U.MD.D.I.hiddenTaskbarout = function (el) {
  2091. //任务栏位置变小
  2092. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  2093. //任务栏位置变化
  2094. U.selectEl(el).css({ "bottom": "-60px" });
  2095. //桌面的位置变大
  2096. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2097. }
  2098. }
  2099. /**
  2100. * 初始化打印桌面图标
  2101. *
  2102. * @param {element} 桌面元素
  2103. */
  2104. U.MD.D.I.initDesktopIcons = function (el, type) {
  2105. var i, //用于循环
  2106. _content, //桌面图标元素
  2107. _iconcontent, //桌面图标元素
  2108. _frag = $$("frag"), //定义一个碎片元素
  2109. _type = US.userInfo.type,
  2110. _org = US.userInfo.org,
  2111. _oid = US.userInfo.organizeid,
  2112. _role = US.userInfo.role,
  2113. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  2114. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  2115. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  2116. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  2117. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  2118. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  2119. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  2120. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  2121. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  2122. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  2123. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  2124. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  2125. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  2126. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  2127. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  2128. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  2129. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  2130. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  2131. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  2132. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  2133. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  2134. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  2135. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  2136. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  2137. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  2138. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  2139. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  2140. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  2141. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  2142. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  2143. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  2144. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  2145. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  2146. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  2147. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  2148. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  2149. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  2150. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  2151. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  2152. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  2153. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  2154. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  2155. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  2156. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  2157. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  2158. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  2159. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  2160. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  2161. _ricohTeacherDeskIconInfo = U.MD.D.I.ricohteacherDeskIcon, //hk
  2162. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  2163. _tycyTeacherDeskIconInfo = U.MD.D.I.tycyteacherDeskIcon, //hk
  2164. _tycyStudentDeskIconInfo = U.MD.D.I.tycyStudentDeskIcon, //hk
  2165. _ckcpsTeacherDeskIconInfo = U.MD.D.I.ckcpsteacherDeskIcon, //hk
  2166. _ckcpsStudentDeskIconInfo = U.MD.D.I.ckcpsStudentDeskIcon, //hk
  2167. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  2168. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  2169. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  2170. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  2171. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  2172. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  2173. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  2174. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  2175. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  2176. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  2177. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  2178. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  2179. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  2180. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  2181. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  2182. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  2183. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  2184. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  2185. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  2186. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  2187. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  2188. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  2189. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  2190. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  2191. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  2192. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  2193. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  2194. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2195. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2196. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2197. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2198. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2199. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2200. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2201. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2202. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2203. _x010612StudentDeskIconInfo = U.MD.D.I.x010612StudentDeskIcon, //010611
  2204. _x010612TeacherDeskIconInfo = U.MD.D.I.x010612TeacherDeskIcon, //010611
  2205. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2206. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2207. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2208. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2209. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2210. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2211. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2212. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2213. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2214. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2215. _x010505StudentDeskIconInfo = U.MD.D.I.x010505StudentDeskIcon, //010505
  2216. _x010505TeacherDeskIconInfo = U.MD.D.I.x010505TeacherDeskIcon, //010505
  2217. _x010404StudentDeskIconInfo = U.MD.D.I.x010404StudentDeskIcon, //010404
  2218. _x010404TeacherDeskIconInfo = U.MD.D.I.x010404TeacherDeskIcon, //010404
  2219. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2220. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2221. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2222. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2223. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2224. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2225. _trialStudentDeskIconInfo = U.MD.D.I.trialStudentDeskIcon, //trial
  2226. _trialTeacherDeskIconInfo = U.MD.D.I.trialTeacherDeskIcon, //trial
  2227. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2228. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2229. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2230. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2231. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2232. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2233. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2234. _demoCocoTeacherDeskIconInfo = U.MD.D.I.demoCocoTeacherDeskIcon, //demoCoco
  2235. _demoCocoStudentDeskIconInfo = U.MD.D.I.demoCocoStudentDeskIcon, //demoCoco
  2236. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2237. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2238. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2239. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2240. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2241. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2242. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon, //szsc
  2243. _MOAITeacherDeskIcon = U.MD.D.I.MOAITeacherDeskIcon, //moai
  2244. _MOAIStudentDeskIcon = U.MD.D.I.MOAIStudentDeskIcon; //moai
  2245. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263','9b46a3c9-7657-11ef-9b30-005056b86db5','857af1c7-c8ee-4b04-85b5-fd182903adb7','876030db-7a49-11ef-9b30-005056b86db5','b97fc213-86a9-11ef-9b30-005056b86db5', 'c636f63e-86f4-11ef-9b30-005056b86db5','6c16df93-8849-11ef-9b30-005056b86db5','72c16ee0-89fe-11ef-9b30-005056b86db5','369222a8-cddd-11ed-9546-005056b86db5','3fc7840d-a1c4-11ef-9b30-005056b86db5','2c5d4971-ed9e-11ef-b508-005056924926','bc239322-ffb2-11ef-b508-005056924926','91796dfb-8791-11ef-9b30-005056b86db5','86fa8cd7-00c2-11f0-b508-005056924926','8406b214-085f-11f0-b508-005056924926','65ad80f0-16bb-11f0-a66a-005056924926','9a8076a2-469a-11f0-b60f-005056924926'];
  2246. 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','62c166af-2f22-11f0-b60f-005056924926', 'eaee75a4-ff2e-11ef-b508-005056924926',"fa20a652-5f2a-11f0-bf32-005056924926"];
  2247. var liyuanOrg = ["3823a6a5-1b6e-11f0-a66a-005056924926", "3823a6a5-1b6e-11f0-a66a-005056924926", "292e34dc-1b6e-11f0-a66a-005056924926", "21d6b367-1b6e-11f0-a66a-005056924926", "1a1a172d-1b6e-11f0-a66a-005056924926", "1197f86b-1b6e-11f0-a66a-005056924926", "f235659b-1b6d-11f0-a66a-005056924926", "d87b62d3-1b6d-11f0-a66a-005056924926", "c25ea59b-1b6d-11f0-a66a-005056924926",]
  2248. //清楚桌面图标
  2249. el.innerHTML = "";
  2250. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2251. _teacherDesktopIconInfo.push(
  2252. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2253. { "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)" } },
  2254. )
  2255. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2256. }
  2257. 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 == 'e775a5d7-039a-11f0-b508-005056924926' || _org == '4d3812ef-fa66-11ef-b508-005056924926') {
  2258. _teacherDesktopIconInfo.push(
  2259. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2260. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2261. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2262. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2263. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2264. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2265. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2266. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2267. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2268. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2269. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2270. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2271. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2272. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2273. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2274. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2275. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2276. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2277. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2278. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2279. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2280. )
  2281. }
  2282. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2283. _teacherDesktopIconInfo.push(
  2284. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2285. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2286. )
  2287. }
  2288. if (_oid == 'b650d914-f039-11ef-b508-005056924926') {//松坪学校
  2289. _nsfxTeacherDeskIconInfo.push(
  2290. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2291. )
  2292. }
  2293. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2294. // _teacherDesktopIconInfo.push(
  2295. // )
  2296. // }
  2297. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2298. _teacherDesktopIconInfo.push(
  2299. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2300. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2301. )
  2302. }
  2303. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2304. _teacherDesktopIconInfo.push(
  2305. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2306. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2307. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2308. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2309. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2310. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2311. )
  2312. _studentDesktopIconInfo.push(
  2313. )
  2314. }
  2315. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2316. _teacherDesktopIconInfo.push(
  2317. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2318. )
  2319. _studentDesktopIconInfo.push(
  2320. )
  2321. }
  2322. //010606 组织
  2323. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2324. _teacherDesktopIconInfo.push(
  2325. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2326. )
  2327. _studentDesktopIconInfo.push(
  2328. )
  2329. }
  2330. //麒麟二中 和 民新小学
  2331. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2332. _teacherDesktopIconInfo.push(
  2333. )
  2334. }
  2335. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2336. _teacherDesktopIconInfo.push(
  2337. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2338. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2339. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2340. )
  2341. }
  2342. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _org == '62c166af-2f22-11f0-b60f-005056924926' && _role == '1'){
  2343. _hkTeacherDeskIconInfo.push(
  2344. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2345. )
  2346. }
  2347. //北师大附中(010601)
  2348. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2349. // _teacherDesktopIconInfo.push(
  2350. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2351. // )
  2352. // _studentDesktopIconInfo.push(
  2353. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2354. // )
  2355. // }
  2356. //樂善堂余近卿中學
  2357. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2358. _teacherDesktopIconInfo.push(
  2359. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2360. )
  2361. }
  2362. // Education Artificial Intelligence
  2363. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2364. _teacherDesktopIconInfo.push(
  2365. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2366. )
  2367. }
  2368. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2369. _teacherDesktopIconInfo.push(
  2370. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2371. )
  2372. }
  2373. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2374. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2375. _teacherDesktopIconInfo.push(
  2376. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2377. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2378. )
  2379. }
  2380. //麒麟二中
  2381. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2382. _studentDesktopIconInfo.push(
  2383. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2384. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2385. )
  2386. }
  2387. //万科双语
  2388. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2389. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2390. if (el.Name == '项目管理') {
  2391. el.Name = 'PBL项目'
  2392. }
  2393. return el
  2394. })
  2395. _studentDesktopIconInfo3.push(
  2396. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2397. )
  2398. }
  2399. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2400. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2401. return el.Name != '魔盒识字' && el.Name != '24点'
  2402. })
  2403. }
  2404. 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) {
  2405. _studentDesktopIconInfo.push(
  2406. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2407. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2408. )
  2409. }
  2410. //循环创建桌面图标
  2411. if (type == 1) {
  2412. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && liyuanOrg.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2413. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2414. _content = $$("div", {
  2415. className: "U_MD_D_KO",
  2416. "onmousedown": U.UF.C.closure(function (obj) {
  2417. //防止拖动图标即打开了桌面应用
  2418. U.MD.D.click(this, obj);
  2419. }, [_studentDesktopIconInfo[i]]),
  2420. "onclick": U.UF.C.closure(function (obj) {
  2421. //防止拖动图标即打开了桌面应用
  2422. U.MD.D.click(this, obj);
  2423. }, [_studentDesktopIconInfo[i]])
  2424. }, _frag); //
  2425. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2426. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2427. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2428. }
  2429. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2430. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2431. _content = $$("div", {
  2432. className: "U_MD_D_KO",
  2433. "onmousedown": U.UF.C.closure(function (obj) {
  2434. //防止拖动图标即打开了桌面应用
  2435. U.MD.D.click(this, obj);
  2436. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2437. "onclick": U.UF.C.closure(function (obj) {
  2438. //防止拖动图标即打开了桌面应用
  2439. U.MD.D.click(this, obj);
  2440. }, [_hkZJLSStudentDeskIconInfo[i]])
  2441. }, _frag); //
  2442. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2443. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2444. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2445. } //
  2446. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2447. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2448. _content = $$("div", {
  2449. className: "U_MD_D_KO",
  2450. "onmousedown": U.UF.C.closure(function (obj) {
  2451. //防止拖动图标即打开了桌面应用
  2452. U.MD.D.click(this, obj);
  2453. }, [_ytyStudentDeskIconInfo[i]]),
  2454. "onclick": U.UF.C.closure(function (obj) {
  2455. //防止拖动图标即打开了桌面应用
  2456. U.MD.D.click(this, obj);
  2457. }, [_ytyStudentDeskIconInfo[i]])
  2458. }, _frag); //
  2459. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2460. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2461. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2462. } //
  2463. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2464. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2465. _content = $$("div", {
  2466. className: "U_MD_D_KO",
  2467. "onmousedown": U.UF.C.closure(function (obj) {
  2468. //防止拖动图标即打开了桌面应用
  2469. U.MD.D.click(this, obj);
  2470. }, [_jccssylStudentDeskIconInfo[i]]),
  2471. "onclick": U.UF.C.closure(function (obj) {
  2472. //防止拖动图标即打开了桌面应用
  2473. U.MD.D.click(this, obj);
  2474. }, [_jccssylStudentDeskIconInfo[i]])
  2475. }, _frag); //
  2476. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2477. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2478. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2479. }
  2480. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2481. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2482. _content = $$("div", {
  2483. className: "U_MD_D_KO",
  2484. "onmousedown": U.UF.C.closure(function (obj) {
  2485. //防止拖动图标即打开了桌面应用
  2486. U.MD.D.click(this, obj);
  2487. }, [_scnuaiStudentDeskIconInfo[i]]),
  2488. "onclick": U.UF.C.closure(function (obj) {
  2489. //防止拖动图标即打开了桌面应用
  2490. U.MD.D.click(this, obj);
  2491. }, [_scnuaiStudentDeskIconInfo[i]])
  2492. }, _frag); //
  2493. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2494. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2495. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2496. }
  2497. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2498. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2499. _content = $$("div", {
  2500. className: "U_MD_D_KO",
  2501. "onmousedown": U.UF.C.closure(function (obj) {
  2502. //防止拖动图标即打开了桌面应用
  2503. U.MD.D.click(this, obj);
  2504. }, [_caleStudentDeskIconInfo[i]]),
  2505. "onclick": U.UF.C.closure(function (obj) {
  2506. //防止拖动图标即打开了桌面应用
  2507. U.MD.D.click(this, obj);
  2508. }, [_caleStudentDeskIconInfo[i]])
  2509. }, _frag); //
  2510. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2511. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2512. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2513. }
  2514. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2515. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2516. _content = $$("div", {
  2517. className: "U_MD_D_KO",
  2518. "onmousedown": U.UF.C.closure(function (obj) {
  2519. //防止拖动图标即打开了桌面应用
  2520. U.MD.D.click(this, obj);
  2521. }, [_thuioeStudentDeskIconInfo[i]]),
  2522. "onclick": U.UF.C.closure(function (obj) {
  2523. //防止拖动图标即打开了桌面应用
  2524. U.MD.D.click(this, obj);
  2525. }, [_thuioeStudentDeskIconInfo[i]])
  2526. }, _frag); //
  2527. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2528. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2529. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2530. }
  2531. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2532. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2533. _content = $$("div", {
  2534. className: "U_MD_D_KO",
  2535. "onmousedown": U.UF.C.closure(function (obj) {
  2536. //防止拖动图标即打开了桌面应用
  2537. U.MD.D.click(this, obj);
  2538. }, [_tpcStudentDeskIconInfo[i]]),
  2539. "onclick": U.UF.C.closure(function (obj) {
  2540. //防止拖动图标即打开了桌面应用
  2541. U.MD.D.click(this, obj);
  2542. }, [_tpcStudentDeskIconInfo[i]])
  2543. }, _frag); //
  2544. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2545. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2546. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2547. } //
  2548. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2549. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2550. _content = $$("div", {
  2551. className: "U_MD_D_KO",
  2552. "onmousedown": U.UF.C.closure(function (obj) {
  2553. //防止拖动图标即打开了桌面应用
  2554. U.MD.D.click(this, obj);
  2555. }, [_chjyjStudentDeskIconInfo[i]]),
  2556. "onclick": U.UF.C.closure(function (obj) {
  2557. //防止拖动图标即打开了桌面应用
  2558. U.MD.D.click(this, obj);
  2559. }, [_chjyjStudentDeskIconInfo[i]])
  2560. }, _frag); //
  2561. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2562. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2563. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2564. }
  2565. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2566. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2567. _content = $$("div", {
  2568. className: "U_MD_D_KO",
  2569. "onmousedown": U.UF.C.closure(function (obj) {
  2570. //防止拖动图标即打开了桌面应用
  2571. U.MD.D.click(this, obj);
  2572. }, [_szjkyStudentDeskIconInfo[i]]),
  2573. "onclick": U.UF.C.closure(function (obj) {
  2574. //防止拖动图标即打开了桌面应用
  2575. U.MD.D.click(this, obj);
  2576. }, [_szjkyStudentDeskIconInfo[i]])
  2577. }, _frag); //
  2578. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2579. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2580. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2581. }
  2582. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2583. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2584. _content = $$("div", {
  2585. className: "U_MD_D_KO",
  2586. "onmousedown": U.UF.C.closure(function (obj) {
  2587. //防止拖动图标即打开了桌面应用
  2588. U.MD.D.click(this, obj);
  2589. }, [_x020201StudentDeskIconInfo[i]]),
  2590. "onclick": U.UF.C.closure(function (obj) {
  2591. //防止拖动图标即打开了桌面应用
  2592. U.MD.D.click(this, obj);
  2593. }, [_x020201StudentDeskIconInfo[i]])
  2594. }, _frag); //
  2595. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2596. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2597. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2598. }
  2599. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2600. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2601. _content = $$("div", {
  2602. className: "U_MD_D_KO",
  2603. "onmousedown": U.UF.C.closure(function (obj) {
  2604. //防止拖动图标即打开了桌面应用
  2605. U.MD.D.click(this, obj);
  2606. }, [_SCNUETStudentDeskIconInfo[i]]),
  2607. "onclick": U.UF.C.closure(function (obj) {
  2608. //防止拖动图标即打开了桌面应用
  2609. U.MD.D.click(this, obj);
  2610. }, [_SCNUETStudentDeskIconInfo[i]])
  2611. }, _frag); //
  2612. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2613. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2614. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2615. }
  2616. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2617. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2618. _content = $$("div", {
  2619. className: "U_MD_D_KO",
  2620. "onmousedown": U.UF.C.closure(function (obj) {
  2621. //防止拖动图标即打开了桌面应用
  2622. U.MD.D.click(this, obj);
  2623. }, [_dseiStudentDeskIconInfo[i]]),
  2624. "onclick": U.UF.C.closure(function (obj) {
  2625. //防止拖动图标即打开了桌面应用
  2626. U.MD.D.click(this, obj);
  2627. }, [_dseiStudentDeskIconInfo[i]])
  2628. }, _frag); //
  2629. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2630. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2631. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2632. }
  2633. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2634. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2635. _content = $$("div", {
  2636. className: "U_MD_D_KO",
  2637. "onmousedown": U.UF.C.closure(function (obj) {
  2638. //防止拖动图标即打开了桌面应用
  2639. U.MD.D.click(this, obj);
  2640. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2641. "onclick": U.UF.C.closure(function (obj) {
  2642. //防止拖动图标即打开了桌面应用
  2643. U.MD.D.click(this, obj);
  2644. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2645. }, _frag); //
  2646. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2647. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2648. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2649. }
  2650. } else if (_type == 2 && (_org == "7cc601a0-fafc-4116-a805-0adbacf7a38d")) {
  2651. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2652. _content = $$("div", {
  2653. className: "U_MD_D_KO",
  2654. "onmousedown": U.UF.C.closure(function (obj) {
  2655. //防止拖动图标即打开了桌面应用
  2656. U.MD.D.click(this, obj);
  2657. }, [_nsfxStudentDeskIconInfo[i]]),
  2658. "onclick": U.UF.C.closure(function (obj) {
  2659. //防止拖动图标即打开了桌面应用
  2660. U.MD.D.click(this, obj);
  2661. }, [_nsfxStudentDeskIconInfo[i]])
  2662. }, _frag); //
  2663. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2664. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2665. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2666. }
  2667. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2668. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2669. _content = $$("div", {
  2670. className: "U_MD_D_KO",
  2671. "onmousedown": U.UF.C.closure(function (obj) {
  2672. //防止拖动图标即打开了桌面应用
  2673. U.MD.D.click(this, obj);
  2674. }, [_stiaStudentDeskIconInfo[i]]),
  2675. "onclick": U.UF.C.closure(function (obj) {
  2676. //防止拖动图标即打开了桌面应用
  2677. U.MD.D.click(this, obj);
  2678. }, [_stiaStudentDeskIconInfo[i]])
  2679. }, _frag); //
  2680. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2681. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2682. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2683. }
  2684. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2685. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2686. _content = $$("div", {
  2687. className: "U_MD_D_KO",
  2688. "onmousedown": U.UF.C.closure(function (obj) {
  2689. //防止拖动图标即打开了桌面应用
  2690. U.MD.D.click(this, obj);
  2691. }, [_szdjgStudentDeskIconInfo[i]]),
  2692. "onclick": U.UF.C.closure(function (obj) {
  2693. //防止拖动图标即打开了桌面应用
  2694. U.MD.D.click(this, obj);
  2695. }, [_szdjgStudentDeskIconInfo[i]])
  2696. }, _frag); //
  2697. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2698. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2699. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2700. }
  2701. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2702. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2703. _content = $$("div", {
  2704. className: "U_MD_D_KO",
  2705. "onmousedown": U.UF.C.closure(function (obj) {
  2706. //防止拖动图标即打开了桌面应用
  2707. U.MD.D.click(this, obj);
  2708. }, [_x010607StudentDeskIconInfo[i]]),
  2709. "onclick": U.UF.C.closure(function (obj) {
  2710. //防止拖动图标即打开了桌面应用
  2711. U.MD.D.click(this, obj);
  2712. }, [_x010607StudentDeskIconInfo[i]])
  2713. }, _frag); //
  2714. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2715. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2716. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2717. }
  2718. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2719. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2720. _content = $$("div", {
  2721. className: "U_MD_D_KO",
  2722. "onmousedown": U.UF.C.closure(function (obj) {
  2723. //防止拖动图标即打开了桌面应用
  2724. U.MD.D.click(this, obj);
  2725. }, [_xhlyStudentDeskIconInfo[i]]),
  2726. "onclick": U.UF.C.closure(function (obj) {
  2727. //防止拖动图标即打开了桌面应用
  2728. U.MD.D.click(this, obj);
  2729. }, [_xhlyStudentDeskIconInfo[i]])
  2730. }, _frag); //
  2731. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2732. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2733. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2734. }
  2735. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2736. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2737. _content = $$("div", {
  2738. className: "U_MD_D_KO",
  2739. "onmousedown": U.UF.C.closure(function (obj) {
  2740. //防止拖动图标即打开了桌面应用
  2741. U.MD.D.click(this, obj);
  2742. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2743. "onclick": U.UF.C.closure(function (obj) {
  2744. //防止拖动图标即打开了桌面应用
  2745. U.MD.D.click(this, obj);
  2746. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2747. }, _frag); //
  2748. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2749. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2750. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2751. }
  2752. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2753. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2754. _content = $$("div", {
  2755. className: "U_MD_D_KO",
  2756. "onmousedown": U.UF.C.closure(function (obj) {
  2757. //防止拖动图标即打开了桌面应用
  2758. U.MD.D.click(this, obj);
  2759. }, [_x010503StudentDeskIconInfo[i]]),
  2760. "onclick": U.UF.C.closure(function (obj) {
  2761. //防止拖动图标即打开了桌面应用
  2762. U.MD.D.click(this, obj);
  2763. }, [_x010503StudentDeskIconInfo[i]])
  2764. }, _frag); //
  2765. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2766. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2767. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2768. }
  2769. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  2770. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2771. _content = $$("div", {
  2772. className: "U_MD_D_KO",
  2773. "onmousedown": U.UF.C.closure(function (obj) {
  2774. //防止拖动图标即打开了桌面应用
  2775. U.MD.D.click(this, obj);
  2776. }, [_x010504StudentDeskIconInfo[i]]),
  2777. "onclick": U.UF.C.closure(function (obj) {
  2778. //防止拖动图标即打开了桌面应用
  2779. U.MD.D.click(this, obj);
  2780. }, [_x010504StudentDeskIconInfo[i]])
  2781. }, _frag); //
  2782. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2783. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2784. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2785. }
  2786. } else if (_type == 2 && (_oid == "8406b214-085f-11f0-b508-005056924926")) {
  2787. for (i = 0; i < _x010505StudentDeskIconInfo.length; i++) {
  2788. _content = $$("div", {
  2789. className: "U_MD_D_KO",
  2790. "onmousedown": U.UF.C.closure(function (obj) {
  2791. //防止拖动图标即打开了桌面应用
  2792. U.MD.D.click(this, obj);
  2793. }, [_x010505StudentDeskIconInfo[i]]),
  2794. "onclick": U.UF.C.closure(function (obj) {
  2795. //防止拖动图标即打开了桌面应用
  2796. U.MD.D.click(this, obj);
  2797. }, [_x010505StudentDeskIconInfo[i]])
  2798. }, _frag); //
  2799. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2800. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505StudentDeskIconInfo[i].style }, _iconcontent);
  2801. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505StudentDeskIconInfo[i].Name }, _iconcontent);
  2802. }
  2803. } else if (_type == 2 && (_oid == "bc239322-ffb2-11ef-b508-005056924926")) {
  2804. for (i = 0; i < _x010404StudentDeskIconInfo.length; i++) {
  2805. _content = $$("div", {
  2806. className: "U_MD_D_KO",
  2807. "onmousedown": U.UF.C.closure(function (obj) {
  2808. //防止拖动图标即打开了桌面应用
  2809. U.MD.D.click(this, obj);
  2810. }, [_x010404StudentDeskIconInfo[i]]),
  2811. "onclick": U.UF.C.closure(function (obj) {
  2812. //防止拖动图标即打开了桌面应用
  2813. U.MD.D.click(this, obj);
  2814. }, [_x010404StudentDeskIconInfo[i]])
  2815. }, _frag); //
  2816. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2817. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404StudentDeskIconInfo[i].style }, _iconcontent);
  2818. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404StudentDeskIconInfo[i].Name }, _iconcontent);
  2819. }
  2820. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2821. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2822. _content = $$("div", {
  2823. className: "U_MD_D_KO",
  2824. "onmousedown": U.UF.C.closure(function (obj) {
  2825. //防止拖动图标即打开了桌面应用
  2826. U.MD.D.click(this, obj);
  2827. }, [_x010204StudentDeskIconInfo[i]]),
  2828. "onclick": U.UF.C.closure(function (obj) {
  2829. //防止拖动图标即打开了桌面应用
  2830. U.MD.D.click(this, obj);
  2831. }, [_x010204StudentDeskIconInfo[i]])
  2832. }, _frag); //
  2833. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2834. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2835. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2836. }
  2837. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2838. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2839. _content = $$("div", {
  2840. className: "U_MD_D_KO",
  2841. "onmousedown": U.UF.C.closure(function (obj) {
  2842. //防止拖动图标即打开了桌面应用
  2843. U.MD.D.click(this, obj);
  2844. }, [_x320101StudentDeskIconInfo[i]]),
  2845. "onclick": U.UF.C.closure(function (obj) {
  2846. //防止拖动图标即打开了桌面应用
  2847. U.MD.D.click(this, obj);
  2848. }, [_x320101StudentDeskIconInfo[i]])
  2849. }, _frag); //
  2850. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2851. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2852. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2853. }
  2854. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2855. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2856. _content = $$("div", {
  2857. className: "U_MD_D_KO",
  2858. "onmousedown": U.UF.C.closure(function (obj) {
  2859. //防止拖动图标即打开了桌面应用
  2860. U.MD.D.click(this, obj);
  2861. }, [_trailStudentDeskIconInfo[i]]),
  2862. "onclick": U.UF.C.closure(function (obj) {
  2863. //防止拖动图标即打开了桌面应用
  2864. U.MD.D.click(this, obj);
  2865. }, [_trailStudentDeskIconInfo[i]])
  2866. }, _frag); //
  2867. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2868. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2869. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2870. }
  2871. } else if (_type == 2 && (_oid == "65ad80f0-16bb-11f0-a66a-005056924926")) {
  2872. for (i = 0; i < _trialStudentDeskIconInfo.length; i++) {
  2873. _content = $$("div", {
  2874. className: "U_MD_D_KO",
  2875. "onmousedown": U.UF.C.closure(function (obj) {
  2876. //防止拖动图标即打开了桌面应用
  2877. U.MD.D.click(this, obj);
  2878. }, [_trialStudentDeskIconInfo[i]]),
  2879. "onclick": U.UF.C.closure(function (obj) {
  2880. //防止拖动图标即打开了桌面应用
  2881. U.MD.D.click(this, obj);
  2882. }, [_trialStudentDeskIconInfo[i]])
  2883. }, _frag); //
  2884. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2885. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialStudentDeskIconInfo[i].style }, _iconcontent);
  2886. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialStudentDeskIconInfo[i].Name }, _iconcontent);
  2887. }
  2888. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2889. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2890. _content = $$("div", {
  2891. className: "U_MD_D_KO",
  2892. "onmousedown": U.UF.C.closure(function (obj) {
  2893. //防止拖动图标即打开了桌面应用
  2894. U.MD.D.click(this, obj);
  2895. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2896. "onclick": U.UF.C.closure(function (obj) {
  2897. //防止拖动图标即打开了桌面应用
  2898. U.MD.D.click(this, obj);
  2899. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2900. }, _frag); //
  2901. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2902. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2903. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2904. }
  2905. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2906. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2907. _content = $$("div", {
  2908. className: "U_MD_D_KO",
  2909. "onmousedown": U.UF.C.closure(function (obj) {
  2910. //防止拖动图标即打开了桌面应用
  2911. U.MD.D.click(this, obj);
  2912. }, [_szsyStudentDeskIconInfo[i]]),
  2913. "onclick": U.UF.C.closure(function (obj) {
  2914. //防止拖动图标即打开了桌面应用
  2915. U.MD.D.click(this, obj);
  2916. }, [_szsyStudentDeskIconInfo[i]])
  2917. }, _frag); //
  2918. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2919. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2920. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2921. }
  2922. } else if (_type == 2 && (_org == "eaee75a4-ff2e-11ef-b508-005056924926")) {
  2923. for (i = 0; i < _demoCocoStudentDeskIconInfo.length; i++) {
  2924. _content = $$("div", {
  2925. className: "U_MD_D_KO",
  2926. "onmousedown": U.UF.C.closure(function (obj) {
  2927. //防止拖动图标即打开了桌面应用
  2928. U.MD.D.click(this, obj);
  2929. }, [_demoCocoStudentDeskIconInfo[i]]),
  2930. "onclick": U.UF.C.closure(function (obj) {
  2931. //防止拖动图标即打开了桌面应用
  2932. U.MD.D.click(this, obj);
  2933. }, [_demoCocoStudentDeskIconInfo[i]])
  2934. }, _frag); //
  2935. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2936. $$("div", { className: "U_MD_D_KOS U_Img", "style": _demoCocoStudentDeskIconInfo[i].style }, _iconcontent);
  2937. $$("div", { className: "U_MD_D_KOX", "innerHTML": _demoCocoStudentDeskIconInfo[i].Name }, _iconcontent);
  2938. }
  2939. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2940. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2941. _content = $$("div", {
  2942. className: "U_MD_D_KO",
  2943. "onmousedown": U.UF.C.closure(function (obj) {
  2944. //防止拖动图标即打开了桌面应用
  2945. U.MD.D.click(this, obj);
  2946. }, [_x010608StudentDeskIconInfo[i]]),
  2947. "onclick": U.UF.C.closure(function (obj) {
  2948. //防止拖动图标即打开了桌面应用
  2949. U.MD.D.click(this, obj);
  2950. }, [_x010608StudentDeskIconInfo[i]])
  2951. }, _frag); //
  2952. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2953. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2954. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2955. }
  2956. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2957. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2958. _content = $$("div", {
  2959. className: "U_MD_D_KO",
  2960. "onmousedown": U.UF.C.closure(function (obj) {
  2961. //防止拖动图标即打开了桌面应用
  2962. U.MD.D.click(this, obj);
  2963. }, [_x010611StudentDeskIconInfo[i]]),
  2964. "onclick": U.UF.C.closure(function (obj) {
  2965. //防止拖动图标即打开了桌面应用
  2966. U.MD.D.click(this, obj);
  2967. }, [_x010611StudentDeskIconInfo[i]])
  2968. }, _frag); //
  2969. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2970. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2971. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2972. }
  2973. } else if (_type == 2 && (_oid == "86fa8cd7-00c2-11f0-b508-005056924926")) {
  2974. for (i = 0; i < _x010612StudentDeskIconInfo.length; i++) {
  2975. _content = $$("div", {
  2976. className: "U_MD_D_KO",
  2977. "onmousedown": U.UF.C.closure(function (obj) {
  2978. //防止拖动图标即打开了桌面应用
  2979. U.MD.D.click(this, obj);
  2980. }, [_x010612StudentDeskIconInfo[i]]),
  2981. "onclick": U.UF.C.closure(function (obj) {
  2982. //防止拖动图标即打开了桌面应用
  2983. U.MD.D.click(this, obj);
  2984. }, [_x010612StudentDeskIconInfo[i]])
  2985. }, _frag); //
  2986. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2987. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612StudentDeskIconInfo[i].style }, _iconcontent);
  2988. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612StudentDeskIconInfo[i].Name }, _iconcontent);
  2989. }
  2990. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2991. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2992. _content = $$("div", {
  2993. className: "U_MD_D_KO",
  2994. "onmousedown": U.UF.C.closure(function (obj) {
  2995. //防止拖动图标即打开了桌面应用
  2996. U.MD.D.click(this, obj);
  2997. }, [_tianyuantudentDeskIconInfo[i]]),
  2998. "onclick": U.UF.C.closure(function (obj) {
  2999. //防止拖动图标即打开了桌面应用
  3000. U.MD.D.click(this, obj);
  3001. }, [_tianyuantudentDeskIconInfo[i]])
  3002. }, _frag); //
  3003. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3004. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  3005. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  3006. }
  3007. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3008. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  3009. _content = $$("div", {
  3010. className: "U_MD_D_KO",
  3011. "onmousedown": U.UF.C.closure(function (obj) {
  3012. //防止拖动图标即打开了桌面应用
  3013. U.MD.D.click(this, obj);
  3014. }, [_siesStudentDeskIconInfo[i]]),
  3015. "onclick": U.UF.C.closure(function (obj) {
  3016. //防止拖动图标即打开了桌面应用
  3017. U.MD.D.click(this, obj);
  3018. }, [_siesStudentDeskIconInfo[i]])
  3019. }, _frag); //
  3020. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3021. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  3022. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  3023. }
  3024. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3025. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  3026. _content = $$("div", {
  3027. className: "U_MD_D_KO",
  3028. "onmousedown": U.UF.C.closure(function (obj) {
  3029. //防止拖动图标即打开了桌面应用
  3030. U.MD.D.click(this, obj);
  3031. }, [_guzmsStudentDeskIconInfo[i]]),
  3032. "onclick": U.UF.C.closure(function (obj) {
  3033. //防止拖动图标即打开了桌面应用
  3034. U.MD.D.click(this, obj);
  3035. }, [_guzmsStudentDeskIconInfo[i]])
  3036. }, _frag); //
  3037. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3038. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  3039. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  3040. }
  3041. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3042. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  3043. _content = $$("div", {
  3044. className: "U_MD_D_KO",
  3045. "onmousedown": U.UF.C.closure(function (obj) {
  3046. //防止拖动图标即打开了桌面应用
  3047. U.MD.D.click(this, obj);
  3048. }, [_hkStudentDeskIconInfo[i]]),
  3049. "onclick": U.UF.C.closure(function (obj) {
  3050. //防止拖动图标即打开了桌面应用
  3051. U.MD.D.click(this, obj);
  3052. }, [_hkStudentDeskIconInfo[i]])
  3053. }, _frag); //
  3054. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3055. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  3056. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  3057. }
  3058. } else if (_type == 2 && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  3059. for (i = 0; i < _tycyStudentDeskIconInfo.length; i++) {
  3060. _content = $$("div", {
  3061. className: "U_MD_D_KO",
  3062. "onmousedown": U.UF.C.closure(function (obj) {
  3063. //防止拖动图标即打开了桌面应用
  3064. U.MD.D.click(this, obj);
  3065. }, [_tycyStudentDeskIconInfo[i]]),
  3066. "onclick": U.UF.C.closure(function (obj) {
  3067. //防止拖动图标即打开了桌面应用
  3068. U.MD.D.click(this, obj);
  3069. }, [_tycyStudentDeskIconInfo[i]])
  3070. }, _frag); //
  3071. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3072. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyStudentDeskIconInfo[i].style }, _iconcontent);
  3073. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyStudentDeskIconInfo[i].Name }, _iconcontent);
  3074. }
  3075. } else if (_type == 2 && (_oid == "9a8076a2-469a-11f0-b60f-005056924926")) {
  3076. for (i = 0; i < _ckcpsStudentDeskIconInfo.length; i++) {
  3077. _content = $$("div", {
  3078. className: "U_MD_D_KO",
  3079. "onmousedown": U.UF.C.closure(function (obj) {
  3080. //防止拖动图标即打开了桌面应用
  3081. U.MD.D.click(this, obj);
  3082. }, [_ckcpsStudentDeskIconInfo[i]]),
  3083. "onclick": U.UF.C.closure(function (obj) {
  3084. //防止拖动图标即打开了桌面应用
  3085. U.MD.D.click(this, obj);
  3086. }, [_ckcpsStudentDeskIconInfo[i]])
  3087. }, _frag); //
  3088. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3089. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ckcpsStudentDeskIconInfo[i].style }, _iconcontent);
  3090. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ckcpsStudentDeskIconInfo[i].Name }, _iconcontent);
  3091. }
  3092. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3093. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  3094. _content = $$("div", {
  3095. className: "U_MD_D_KO",
  3096. "onmousedown": U.UF.C.closure(function (obj) {
  3097. //防止拖动图标即打开了桌面应用
  3098. U.MD.D.click(this, obj);
  3099. }, [_hkaceStudentDeskIconInfo[i]]),
  3100. "onclick": U.UF.C.closure(function (obj) {
  3101. //防止拖动图标即打开了桌面应用
  3102. U.MD.D.click(this, obj);
  3103. }, [_hkaceStudentDeskIconInfo[i]])
  3104. }, _frag); //
  3105. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3106. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  3107. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  3108. }
  3109. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  3110. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  3111. _content = $$("div", {
  3112. className: "U_MD_D_KO",
  3113. "onmousedown": U.UF.C.closure(function (obj) {
  3114. //防止拖动图标即打开了桌面应用
  3115. U.MD.D.click(this, obj);
  3116. }, [_BSDNSstudentDesktopIconInfo[i]]),
  3117. "onclick": U.UF.C.closure(function (obj) {
  3118. //防止拖动图标即打开了桌面应用
  3119. U.MD.D.click(this, obj);
  3120. }, [_BSDNSstudentDesktopIconInfo[i]])
  3121. }, _frag); //
  3122. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3123. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  3124. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  3125. }
  3126. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3127. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  3128. _content = $$("div", {
  3129. className: "U_MD_D_KO",
  3130. "onmousedown": U.UF.C.closure(function (obj) {
  3131. //防止拖动图标即打开了桌面应用
  3132. U.MD.D.click(this, obj);
  3133. }, [_cocobizStudentDeskIconInfo[i]]),
  3134. "onclick": U.UF.C.closure(function (obj) {
  3135. //防止拖动图标即打开了桌面应用
  3136. U.MD.D.click(this, obj);
  3137. }, [_cocobizStudentDeskIconInfo[i]])
  3138. }, _frag); //
  3139. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3140. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  3141. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  3142. }
  3143. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3144. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  3145. _content = $$("div", {
  3146. className: "U_MD_D_KO",
  3147. "onmousedown": U.UF.C.closure(function (obj) {
  3148. //防止拖动图标即打开了桌面应用
  3149. U.MD.D.click(this, obj);
  3150. }, [_xxzjkyStudentDeskIconInfo[i]]),
  3151. "onclick": U.UF.C.closure(function (obj) {
  3152. //防止拖动图标即打开了桌面应用
  3153. U.MD.D.click(this, obj);
  3154. }, [_xxzjkyStudentDeskIconInfo[i]])
  3155. }, _frag); //
  3156. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3157. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  3158. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  3159. }
  3160. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  3161. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  3162. _content = $$("div", {
  3163. className: "U_MD_D_KO",
  3164. "onmousedown": U.UF.C.closure(function (obj) {
  3165. //防止拖动图标即打开了桌面应用
  3166. U.MD.D.click(this, obj);
  3167. }, [_studentDesktopIconInfo[i]]),
  3168. "onclick": U.UF.C.closure(function (obj) {
  3169. //防止拖动图标即打开了桌面应用
  3170. U.MD.D.click(this, obj);
  3171. }, [_studentDesktopIconInfo[i]])
  3172. }, _frag); //
  3173. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3174. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  3175. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  3176. }
  3177. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  3178. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  3179. _content = $$("div", {
  3180. className: "U_MD_D_KO",
  3181. "onmousedown": U.UF.C.closure(function (obj) {
  3182. //防止拖动图标即打开了桌面应用
  3183. U.MD.D.click(this, obj);
  3184. }, [_tcStudentDeskIconInfo[i]]),
  3185. "onclick": U.UF.C.closure(function (obj) {
  3186. //防止拖动图标即打开了桌面应用
  3187. U.MD.D.click(this, obj);
  3188. }, [_tcStudentDeskIconInfo[i]])
  3189. }, _frag); //
  3190. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3191. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  3192. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  3193. }
  3194. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  3195. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  3196. _content = $$("div", {
  3197. className: "U_MD_D_KO",
  3198. "onmousedown": U.UF.C.closure(function (obj) {
  3199. //防止拖动图标即打开了桌面应用
  3200. U.MD.D.click(this, obj);
  3201. }, [_szscStudentDeskIconInfo[i]]),
  3202. "onclick": U.UF.C.closure(function (obj) {
  3203. //防止拖动图标即打开了桌面应用
  3204. U.MD.D.click(this, obj);
  3205. }, [_szscStudentDeskIconInfo[i]])
  3206. }, _frag); //
  3207. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3208. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  3209. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  3210. }
  3211. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  3212. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  3213. _content = $$("div", {
  3214. className: "U_MD_D_KO",
  3215. "onmousedown": U.UF.C.closure(function (obj) {
  3216. //防止拖动图标即打开了桌面应用
  3217. U.MD.D.click(this, obj);
  3218. }, [_studentDesktopIconInfo3[i]]),
  3219. "onclick": U.UF.C.closure(function (obj) {
  3220. //防止拖动图标即打开了桌面应用
  3221. U.MD.D.click(this, obj);
  3222. }, [_studentDesktopIconInfo3[i]])
  3223. }, _frag); //
  3224. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3225. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  3226. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  3227. }
  3228. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1 || liyuanOrg.indexOf(_org) != -1)) {
  3229. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  3230. _content = $$("div", {
  3231. className: "U_MD_D_KO",
  3232. "onmousedown": U.UF.C.closure(function (obj) {
  3233. //防止拖动图标即打开了桌面应用
  3234. U.MD.D.click(this, obj);
  3235. }, [_studentDesktopIconInfo2[i]]),
  3236. "onclick": U.UF.C.closure(function (obj) {
  3237. //防止拖动图标即打开了桌面应用
  3238. U.MD.D.click(this, obj);
  3239. }, [_studentDesktopIconInfo2[i]])
  3240. }, _frag); //
  3241. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3242. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  3243. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  3244. }
  3245. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  3246. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  3247. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  3248. continue
  3249. }
  3250. _content = $$("div", {
  3251. className: "U_MD_D_KO",
  3252. "onmousedown": U.UF.C.closure(function (obj) {
  3253. //防止拖动图标即打开了桌面应用
  3254. U.MD.D.click(this, obj);
  3255. }, [_wanketeacherDesktopIconInfo[i]]),
  3256. "onclick": U.UF.C.closure(function (obj) {
  3257. //防止拖动图标即打开了桌面应用
  3258. U.MD.D.click(this, obj);
  3259. }, [_wanketeacherDesktopIconInfo[i]])
  3260. }, _frag); //
  3261. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3262. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  3263. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  3264. }
  3265. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  3266. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  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. }, [_wankeAdminDesktopIconInfo[i]]),
  3273. "onclick": U.UF.C.closure(function (obj) {
  3274. //防止拖动图标即打开了桌面应用
  3275. U.MD.D.click(this, obj);
  3276. }, [_wankeAdminDesktopIconInfo[i]])
  3277. }, _frag); //
  3278. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3279. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  3280. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  3281. }
  3282. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  3283. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  3284. if(_role === 0 && _scnuaiTeacherDeskIconInfo[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. }, [_scnuaiTeacherDeskIconInfo[i]]),
  3293. "onclick": U.UF.C.closure(function (obj) {
  3294. //防止拖动图标即打开了桌面应用
  3295. U.MD.D.click(this, obj);
  3296. }, [_scnuaiTeacherDeskIconInfo[i]])
  3297. }, _frag); //
  3298. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3299. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3300. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3301. }
  3302. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  3303. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  3304. if(_role === 0 && _BSDNSteacherDesktopIconInfo[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. }, [_BSDNSteacherDesktopIconInfo[i]]),
  3313. "onclick": U.UF.C.closure(function (obj) {
  3314. //防止拖动图标即打开了桌面应用
  3315. U.MD.D.click(this, obj);
  3316. }, [_BSDNSteacherDesktopIconInfo[i]])
  3317. }, _frag); //
  3318. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3319. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  3320. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  3321. }
  3322. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  3323. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  3324. _content = $$("div", {
  3325. className: "U_MD_D_KO",
  3326. "onmousedown": U.UF.C.closure(function (obj) {
  3327. //防止拖动图标即打开了桌面应用
  3328. U.MD.D.click(this, obj);
  3329. }, [_scnuaiAdminDeskIconInfo[i]]),
  3330. "onclick": U.UF.C.closure(function (obj) {
  3331. //防止拖动图标即打开了桌面应用
  3332. U.MD.D.click(this, obj);
  3333. }, [_scnuaiAdminDeskIconInfo[i]])
  3334. }, _frag); //
  3335. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3336. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3337. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3338. }
  3339. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3340. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3341. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3342. continue
  3343. }
  3344. _content = $$("div", {
  3345. className: "U_MD_D_KO",
  3346. "onmousedown": U.UF.C.closure(function (obj) {
  3347. //防止拖动图标即打开了桌面应用
  3348. U.MD.D.click(this, obj);
  3349. }, [_jccssylTeacherDeskIconInfo[i]]),
  3350. "onclick": U.UF.C.closure(function (obj) {
  3351. //防止拖动图标即打开了桌面应用
  3352. U.MD.D.click(this, obj);
  3353. }, [_jccssylTeacherDeskIconInfo[i]])
  3354. }, _frag); //
  3355. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3356. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3357. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3358. }
  3359. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3360. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3361. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3362. continue
  3363. }
  3364. _content = $$("div", {
  3365. className: "U_MD_D_KO",
  3366. "onmousedown": U.UF.C.closure(function (obj) {
  3367. //防止拖动图标即打开了桌面应用
  3368. U.MD.D.click(this, obj);
  3369. }, [_caleTeacherDeskIconInfo[i]]),
  3370. "onclick": U.UF.C.closure(function (obj) {
  3371. //防止拖动图标即打开了桌面应用
  3372. U.MD.D.click(this, obj);
  3373. }, [_caleTeacherDeskIconInfo[i]])
  3374. }, _frag); //
  3375. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3376. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3377. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3378. }
  3379. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3380. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3381. _content = $$("div", {
  3382. className: "U_MD_D_KO",
  3383. "onmousedown": U.UF.C.closure(function (obj) {
  3384. //防止拖动图标即打开了桌面应用
  3385. U.MD.D.click(this, obj);
  3386. }, [_tpcOrganizerDeskIconInfo[i]]),
  3387. "onclick": U.UF.C.closure(function (obj) {
  3388. //防止拖动图标即打开了桌面应用
  3389. U.MD.D.click(this, obj);
  3390. }, [_tpcOrganizerDeskIconInfo[i]])
  3391. }, _frag); //
  3392. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3393. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3394. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3395. }
  3396. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3397. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3398. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3399. continue
  3400. }
  3401. _content = $$("div", {
  3402. className: "U_MD_D_KO",
  3403. "onmousedown": U.UF.C.closure(function (obj) {
  3404. //防止拖动图标即打开了桌面应用
  3405. U.MD.D.click(this, obj);
  3406. }, [_tpcTeacherDeskIconInfo[i]]),
  3407. "onclick": U.UF.C.closure(function (obj) {
  3408. //防止拖动图标即打开了桌面应用
  3409. U.MD.D.click(this, obj);
  3410. }, [_tpcTeacherDeskIconInfo[i]])
  3411. }, _frag); //
  3412. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3413. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3414. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3415. }
  3416. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3417. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3418. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3419. continue
  3420. }
  3421. _content = $$("div", {
  3422. className: "U_MD_D_KO",
  3423. "onmousedown": U.UF.C.closure(function (obj) {
  3424. //防止拖动图标即打开了桌面应用
  3425. U.MD.D.click(this, obj);
  3426. }, [_teacherDesktopIconInfo2[i]]),
  3427. "onclick": U.UF.C.closure(function (obj) {
  3428. //防止拖动图标即打开了桌面应用
  3429. U.MD.D.click(this, obj);
  3430. }, [_teacherDesktopIconInfo2[i]])
  3431. }, _frag); //
  3432. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3433. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3434. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3435. }
  3436. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3437. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3438. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3439. continue
  3440. }
  3441. _content = $$("div", {
  3442. className: "U_MD_D_KO",
  3443. "onmousedown": U.UF.C.closure(function (obj) {
  3444. //防止拖动图标即打开了桌面应用
  3445. U.MD.D.click(this, obj);
  3446. }, [_thuioeTeacherDeskIconInfo[i]]),
  3447. "onclick": U.UF.C.closure(function (obj) {
  3448. //防止拖动图标即打开了桌面应用
  3449. U.MD.D.click(this, obj);
  3450. }, [_thuioeTeacherDeskIconInfo[i]])
  3451. }, _frag); //
  3452. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3453. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3454. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3455. }
  3456. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3457. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3458. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3459. continue
  3460. }
  3461. _content = $$("div", {
  3462. className: "U_MD_D_KO",
  3463. "onmousedown": U.UF.C.closure(function (obj) {
  3464. //防止拖动图标即打开了桌面应用
  3465. U.MD.D.click(this, obj);
  3466. }, [_lotechTeacherDeskIconInfo[i]]),
  3467. "onclick": U.UF.C.closure(function (obj) {
  3468. //防止拖动图标即打开了桌面应用
  3469. U.MD.D.click(this, obj);
  3470. }, [_lotechTeacherDeskIconInfo[i]])
  3471. }, _frag); //
  3472. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3473. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3474. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3475. }//
  3476. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3477. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3478. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3479. continue
  3480. }
  3481. _content = $$("div", {
  3482. className: "U_MD_D_KO",
  3483. "onmousedown": U.UF.C.closure(function (obj) {
  3484. //防止拖动图标即打开了桌面应用
  3485. U.MD.D.click(this, obj);
  3486. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3487. "onclick": U.UF.C.closure(function (obj) {
  3488. //防止拖动图标即打开了桌面应用
  3489. U.MD.D.click(this, obj);
  3490. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3491. }, _frag); //
  3492. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3493. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3494. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3495. }
  3496. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3497. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3498. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3499. continue
  3500. }
  3501. _content = $$("div", {
  3502. className: "U_MD_D_KO",
  3503. "onmousedown": U.UF.C.closure(function (obj) {
  3504. //防止拖动图标即打开了桌面应用
  3505. U.MD.D.click(this, obj);
  3506. }, [_siesTeacherDeskIconInfo[i]]),
  3507. "onclick": U.UF.C.closure(function (obj) {
  3508. //防止拖动图标即打开了桌面应用
  3509. U.MD.D.click(this, obj);
  3510. }, [_siesTeacherDeskIconInfo[i]])
  3511. }, _frag); //
  3512. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3513. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3514. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3515. }
  3516. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3517. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3518. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3519. continue
  3520. }
  3521. _content = $$("div", {
  3522. className: "U_MD_D_KO",
  3523. "onmousedown": U.UF.C.closure(function (obj) {
  3524. //防止拖动图标即打开了桌面应用
  3525. U.MD.D.click(this, obj);
  3526. }, [_guzmsTeacherDeskIconInfo[i]]),
  3527. "onclick": U.UF.C.closure(function (obj) {
  3528. //防止拖动图标即打开了桌面应用
  3529. U.MD.D.click(this, obj);
  3530. }, [_guzmsTeacherDeskIconInfo[i]])
  3531. }, _frag); //
  3532. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3533. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3534. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3535. }
  3536. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3537. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3538. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3539. continue
  3540. }
  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. }, [_longhuaTeacherDeskIconInfo[i]]),
  3547. "onclick": U.UF.C.closure(function (obj) {
  3548. //防止拖动图标即打开了桌面应用
  3549. U.MD.D.click(this, obj);
  3550. }, [_longhuaTeacherDeskIconInfo[i]])
  3551. }, _frag); //
  3552. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3553. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3554. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3555. }
  3556. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3557. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3558. if(_role === 0 && _ytyTeacherDeskIconInfo[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. }, [_ytyTeacherDeskIconInfo[i]]),
  3567. "onclick": U.UF.C.closure(function (obj) {
  3568. //防止拖动图标即打开了桌面应用
  3569. U.MD.D.click(this, obj);
  3570. }, [_ytyTeacherDeskIconInfo[i]])
  3571. }, _frag); //
  3572. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3573. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3574. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3575. }
  3576. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3577. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3578. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3579. continue
  3580. }
  3581. _content = $$("div", {
  3582. className: "U_MD_D_KO",
  3583. "onmousedown": U.UF.C.closure(function (obj) {
  3584. //防止拖动图标即打开了桌面应用
  3585. U.MD.D.click(this, obj);
  3586. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3587. "onclick": U.UF.C.closure(function (obj) {
  3588. //防止拖动图标即打开了桌面应用
  3589. U.MD.D.click(this, obj);
  3590. }, [_yunhaiTeacherDeskIconInfo[i]])
  3591. }, _frag); //
  3592. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3593. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3594. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3595. } //_hkStudentDeskIconInfo
  3596. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3597. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3598. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3599. continue
  3600. }
  3601. _content = $$("div", {
  3602. className: "U_MD_D_KO",
  3603. "onmousedown": U.UF.C.closure(function (obj) {
  3604. //防止拖动图标即打开了桌面应用
  3605. U.MD.D.click(this, obj);
  3606. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3607. "onclick": U.UF.C.closure(function (obj) {
  3608. //防止拖动图标即打开了桌面应用
  3609. U.MD.D.click(this, obj);
  3610. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3611. }, _frag); //
  3612. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3613. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3614. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3615. }
  3616. } else if ((_type == 1 || _type == 4) && (_oid == "91796dfb-8791-11ef-9b30-005056b86db5")) {
  3617. for (i = 0; i < _ricohTeacherDeskIconInfo.length; i++) {
  3618. if(_role === 0 && _ricohTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3619. continue
  3620. }
  3621. _content = $$("div", {
  3622. className: "U_MD_D_KO",
  3623. "onmousedown": U.UF.C.closure(function (obj) {
  3624. //防止拖动图标即打开了桌面应用
  3625. U.MD.D.click(this, obj);
  3626. }, [_ricohTeacherDeskIconInfo[i]]),
  3627. "onclick": U.UF.C.closure(function (obj) {
  3628. //防止拖动图标即打开了桌面应用
  3629. U.MD.D.click(this, obj);
  3630. }, [_ricohTeacherDeskIconInfo[i]])
  3631. }, _frag); //
  3632. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3633. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ricohTeacherDeskIconInfo[i].style }, _iconcontent);
  3634. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ricohTeacherDeskIconInfo[i].Name }, _iconcontent);
  3635. }
  3636. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3637. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3638. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3639. continue
  3640. }
  3641. _content = $$("div", {
  3642. className: "U_MD_D_KO",
  3643. "onmousedown": U.UF.C.closure(function (obj) {
  3644. //防止拖动图标即打开了桌面应用
  3645. U.MD.D.click(this, obj);
  3646. }, [_hkTeacherDeskIconInfo[i]]),
  3647. "onclick": U.UF.C.closure(function (obj) {
  3648. //防止拖动图标即打开了桌面应用
  3649. U.MD.D.click(this, obj);
  3650. }, [_hkTeacherDeskIconInfo[i]])
  3651. }, _frag); //
  3652. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3653. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3654. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3655. }
  3656. } else if ((_type == 1 || _type == 4) && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  3657. for (i = 0; i < _tycyTeacherDeskIconInfo.length; i++) {
  3658. if(_role === 0 && _tycyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3659. continue
  3660. }
  3661. _content = $$("div", {
  3662. className: "U_MD_D_KO",
  3663. "onmousedown": U.UF.C.closure(function (obj) {
  3664. //防止拖动图标即打开了桌面应用
  3665. U.MD.D.click(this, obj);
  3666. }, [_tycyTeacherDeskIconInfo[i]]),
  3667. "onclick": U.UF.C.closure(function (obj) {
  3668. //防止拖动图标即打开了桌面应用
  3669. U.MD.D.click(this, obj);
  3670. }, [_tycyTeacherDeskIconInfo[i]])
  3671. }, _frag); //
  3672. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3673. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyTeacherDeskIconInfo[i].style }, _iconcontent);
  3674. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3675. }
  3676. } else if ((_type == 1 || _type == 4) && (_oid == "9a8076a2-469a-11f0-b60f-005056924926")) {
  3677. for (i = 0; i < _ckcpsTeacherDeskIconInfo.length; i++) {
  3678. if(_role === 0 && _ckcpsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3679. continue
  3680. }
  3681. _content = $$("div", {
  3682. className: "U_MD_D_KO",
  3683. "onmousedown": U.UF.C.closure(function (obj) {
  3684. //防止拖动图标即打开了桌面应用
  3685. U.MD.D.click(this, obj);
  3686. }, [_ckcpsTeacherDeskIconInfo[i]]),
  3687. "onclick": U.UF.C.closure(function (obj) {
  3688. //防止拖动图标即打开了桌面应用
  3689. U.MD.D.click(this, obj);
  3690. }, [_ckcpsTeacherDeskIconInfo[i]])
  3691. }, _frag); //
  3692. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3693. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ckcpsTeacherDeskIconInfo[i].style }, _iconcontent);
  3694. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ckcpsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3695. }
  3696. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3697. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3698. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3699. continue
  3700. }
  3701. _content = $$("div", {
  3702. className: "U_MD_D_KO",
  3703. "onmousedown": U.UF.C.closure(function (obj) {
  3704. //防止拖动图标即打开了桌面应用
  3705. U.MD.D.click(this, obj);
  3706. }, [_hkaceTeacherDeskIconInfo[i]]),
  3707. "onclick": U.UF.C.closure(function (obj) {
  3708. //防止拖动图标即打开了桌面应用
  3709. U.MD.D.click(this, obj);
  3710. }, [_hkaceTeacherDeskIconInfo[i]])
  3711. }, _frag); //
  3712. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3713. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3714. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3715. }
  3716. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3717. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3718. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3719. continue
  3720. }
  3721. _content = $$("div", {
  3722. className: "U_MD_D_KO",
  3723. "onmousedown": U.UF.C.closure(function (obj) {
  3724. //防止拖动图标即打开了桌面应用
  3725. U.MD.D.click(this, obj);
  3726. }, [_cocobizTeacherDeskIconInfo[i]]),
  3727. "onclick": U.UF.C.closure(function (obj) {
  3728. //防止拖动图标即打开了桌面应用
  3729. U.MD.D.click(this, obj);
  3730. }, [_cocobizTeacherDeskIconInfo[i]])
  3731. }, _frag); //
  3732. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3733. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3734. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3735. }
  3736. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3737. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3738. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3739. continue
  3740. }
  3741. _content = $$("div", {
  3742. className: "U_MD_D_KO",
  3743. "onmousedown": U.UF.C.closure(function (obj) {
  3744. //防止拖动图标即打开了桌面应用
  3745. U.MD.D.click(this, obj);
  3746. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3747. "onclick": U.UF.C.closure(function (obj) {
  3748. //防止拖动图标即打开了桌面应用
  3749. U.MD.D.click(this, obj);
  3750. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3751. }, _frag); //
  3752. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3753. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3754. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3755. }
  3756. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3757. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3758. _content = $$("div", {
  3759. className: "U_MD_D_KO",
  3760. "onmousedown": U.UF.C.closure(function (obj) {
  3761. //防止拖动图标即打开了桌面应用
  3762. U.MD.D.click(this, obj);
  3763. }, [_gdjgAdminDeskIconInfo[i]]),
  3764. "onclick": U.UF.C.closure(function (obj) {
  3765. //防止拖动图标即打开了桌面应用
  3766. U.MD.D.click(this, obj);
  3767. }, [_gdjgAdminDeskIconInfo[i]])
  3768. }, _frag); //
  3769. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3770. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3771. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3772. }
  3773. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3774. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3775. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3776. continue
  3777. }
  3778. _content = $$("div", {
  3779. className: "U_MD_D_KO",
  3780. "onmousedown": U.UF.C.closure(function (obj) {
  3781. //防止拖动图标即打开了桌面应用
  3782. U.MD.D.click(this, obj);
  3783. }, [_gdjgTeacherDeskIconInfo[i]]),
  3784. "onclick": U.UF.C.closure(function (obj) {
  3785. //防止拖动图标即打开了桌面应用
  3786. U.MD.D.click(this, obj);
  3787. }, [_gdjgTeacherDeskIconInfo[i]])
  3788. }, _frag); //
  3789. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3790. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3791. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3792. }
  3793. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3794. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3795. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3796. continue
  3797. }
  3798. _content = $$("div", {
  3799. className: "U_MD_D_KO",
  3800. "onmousedown": U.UF.C.closure(function (obj) {
  3801. //防止拖动图标即打开了桌面应用
  3802. U.MD.D.click(this, obj);
  3803. }, [_szherTeacherDeskIconInfo[i]]),
  3804. "onclick": U.UF.C.closure(function (obj) {
  3805. //防止拖动图标即打开了桌面应用
  3806. U.MD.D.click(this, obj);
  3807. }, [_szherTeacherDeskIconInfo[i]])
  3808. }, _frag); //
  3809. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3810. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3811. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3812. }
  3813. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3814. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3815. _content = $$("div", {
  3816. className: "U_MD_D_KO",
  3817. "onmousedown": U.UF.C.closure(function (obj) {
  3818. //防止拖动图标即打开了桌面应用
  3819. U.MD.D.click(this, obj);
  3820. }, [_heyuannAdminDeskIconInfo[i]]),
  3821. "onclick": U.UF.C.closure(function (obj) {
  3822. //防止拖动图标即打开了桌面应用
  3823. U.MD.D.click(this, obj);
  3824. }, [_heyuannAdminDeskIconInfo[i]])
  3825. }, _frag); //
  3826. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3827. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3828. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3829. }
  3830. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3831. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3832. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3833. continue
  3834. }
  3835. _content = $$("div", {
  3836. className: "U_MD_D_KO",
  3837. "onmousedown": U.UF.C.closure(function (obj) {
  3838. //防止拖动图标即打开了桌面应用
  3839. U.MD.D.click(this, obj);
  3840. }, [_heyuanTeacherDeskIconInfo[i]]),
  3841. "onclick": U.UF.C.closure(function (obj) {
  3842. //防止拖动图标即打开了桌面应用
  3843. U.MD.D.click(this, obj);
  3844. }, [_heyuanTeacherDeskIconInfo[i]])
  3845. }, _frag); //
  3846. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3847. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3848. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3849. } //
  3850. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3851. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3852. _content = $$("div", {
  3853. className: "U_MD_D_KO",
  3854. "onmousedown": U.UF.C.closure(function (obj) {
  3855. //防止拖动图标即打开了桌面应用
  3856. U.MD.D.click(this, obj);
  3857. }, [_dseiAdminDeskIconInfo[i]]),
  3858. "onclick": U.UF.C.closure(function (obj) {
  3859. //防止拖动图标即打开了桌面应用
  3860. U.MD.D.click(this, obj);
  3861. }, [_dseiAdminDeskIconInfo[i]])
  3862. }, _frag); //
  3863. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3864. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3865. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3866. }
  3867. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3868. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3869. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3870. continue
  3871. }
  3872. _content = $$("div", {
  3873. className: "U_MD_D_KO",
  3874. "onmousedown": U.UF.C.closure(function (obj) {
  3875. //防止拖动图标即打开了桌面应用
  3876. U.MD.D.click(this, obj);
  3877. }, [_dseiTeacherDeskIconInfo[i]]),
  3878. "onclick": U.UF.C.closure(function (obj) {
  3879. //防止拖动图标即打开了桌面应用
  3880. U.MD.D.click(this, obj);
  3881. }, [_dseiTeacherDeskIconInfo[i]])
  3882. }, _frag); //
  3883. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3884. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3885. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3886. } //
  3887. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3888. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3889. _content = $$("div", {
  3890. className: "U_MD_D_KO",
  3891. "onmousedown": U.UF.C.closure(function (obj) {
  3892. //防止拖动图标即打开了桌面应用
  3893. U.MD.D.click(this, obj);
  3894. }, [_chjyjAdminDeskIconInfo[i]]),
  3895. "onclick": U.UF.C.closure(function (obj) {
  3896. //防止拖动图标即打开了桌面应用
  3897. U.MD.D.click(this, obj);
  3898. }, [_chjyjAdminDeskIconInfo[i]])
  3899. }, _frag); //
  3900. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3901. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3902. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3903. }//
  3904. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3905. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3906. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3907. continue
  3908. }
  3909. _content = $$("div", {
  3910. className: "U_MD_D_KO",
  3911. "onmousedown": U.UF.C.closure(function (obj) {
  3912. //防止拖动图标即打开了桌面应用
  3913. U.MD.D.click(this, obj);
  3914. }, [_chjyjTeacherDeskIconInfo[i]]),
  3915. "onclick": U.UF.C.closure(function (obj) {
  3916. //防止拖动图标即打开了桌面应用
  3917. U.MD.D.click(this, obj);
  3918. }, [_chjyjTeacherDeskIconInfo[i]])
  3919. }, _frag); //
  3920. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3921. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3922. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3923. }
  3924. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3925. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3926. _content = $$("div", {
  3927. className: "U_MD_D_KO",
  3928. "onmousedown": U.UF.C.closure(function (obj) {
  3929. //防止拖动图标即打开了桌面应用
  3930. U.MD.D.click(this, obj);
  3931. }, [_szjkyAdminDeskIconInfo[i]]),
  3932. "onclick": U.UF.C.closure(function (obj) {
  3933. //防止拖动图标即打开了桌面应用
  3934. U.MD.D.click(this, obj);
  3935. }, [_szjkyAdminDeskIconInfo[i]])
  3936. }, _frag); //
  3937. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3938. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3939. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3940. }//
  3941. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3942. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3943. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3944. continue
  3945. }
  3946. _content = $$("div", {
  3947. className: "U_MD_D_KO",
  3948. "onmousedown": U.UF.C.closure(function (obj) {
  3949. //防止拖动图标即打开了桌面应用
  3950. U.MD.D.click(this, obj);
  3951. }, [_szjkyTeacherDeskIconInfo[i]]),
  3952. "onclick": U.UF.C.closure(function (obj) {
  3953. //防止拖动图标即打开了桌面应用
  3954. U.MD.D.click(this, obj);
  3955. }, [_szjkyTeacherDeskIconInfo[i]])
  3956. }, _frag); //
  3957. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3958. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3959. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3960. }
  3961. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3962. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3963. _content = $$("div", {
  3964. className: "U_MD_D_KO",
  3965. "onmousedown": U.UF.C.closure(function (obj) {
  3966. //防止拖动图标即打开了桌面应用
  3967. U.MD.D.click(this, obj);
  3968. }, [_x020201AdminDeskIconInfo[i]]),
  3969. "onclick": U.UF.C.closure(function (obj) {
  3970. //防止拖动图标即打开了桌面应用
  3971. U.MD.D.click(this, obj);
  3972. }, [_x020201AdminDeskIconInfo[i]])
  3973. }, _frag); //
  3974. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3975. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3976. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3977. }//
  3978. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3979. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3980. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3981. continue
  3982. }
  3983. _content = $$("div", {
  3984. className: "U_MD_D_KO",
  3985. "onmousedown": U.UF.C.closure(function (obj) {
  3986. //防止拖动图标即打开了桌面应用
  3987. U.MD.D.click(this, obj);
  3988. }, [_x020201TeacherDeskIconInfo[i]]),
  3989. "onclick": U.UF.C.closure(function (obj) {
  3990. //防止拖动图标即打开了桌面应用
  3991. U.MD.D.click(this, obj);
  3992. }, [_x020201TeacherDeskIconInfo[i]])
  3993. }, _frag); //
  3994. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3995. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3996. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3997. }
  3998. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3999. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  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. }, [_SCNUETAdminDeskIconInfo[i]]),
  4006. "onclick": U.UF.C.closure(function (obj) {
  4007. //防止拖动图标即打开了桌面应用
  4008. U.MD.D.click(this, obj);
  4009. }, [_SCNUETAdminDeskIconInfo[i]])
  4010. }, _frag); //
  4011. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4012. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  4013. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  4014. }//
  4015. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  4016. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  4017. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4018. continue
  4019. }
  4020. _content = $$("div", {
  4021. className: "U_MD_D_KO",
  4022. "onmousedown": U.UF.C.closure(function (obj) {
  4023. //防止拖动图标即打开了桌面应用
  4024. U.MD.D.click(this, obj);
  4025. }, [_SCNUETTeacherDeskIconInfo[i]]),
  4026. "onclick": U.UF.C.closure(function (obj) {
  4027. //防止拖动图标即打开了桌面应用
  4028. U.MD.D.click(this, obj);
  4029. }, [_SCNUETTeacherDeskIconInfo[i]])
  4030. }, _frag); //
  4031. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4032. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  4033. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  4034. }
  4035. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  4036. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  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. }, [_futianAdminDeskIconInfo[i]]),
  4043. "onclick": U.UF.C.closure(function (obj) {
  4044. //防止拖动图标即打开了桌面应用
  4045. U.MD.D.click(this, obj);
  4046. }, [_futianAdminDeskIconInfo[i]])
  4047. }, _frag); //
  4048. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4049. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  4050. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  4051. }
  4052. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  4053. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  4054. if(_role === 0 && _futianTeacherDeskIconInfo[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. }, [_futianTeacherDeskIconInfo[i]]),
  4063. "onclick": U.UF.C.closure(function (obj) {
  4064. //防止拖动图标即打开了桌面应用
  4065. U.MD.D.click(this, obj);
  4066. }, [_futianTeacherDeskIconInfo[i]])
  4067. }, _frag); //
  4068. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4069. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  4070. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  4071. }
  4072. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  4073. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  4074. if(_role === 0 && _MingdeTeacherDeskIcon[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. }, [_MingdeTeacherDeskIcon[i]]),
  4083. "onclick": U.UF.C.closure(function (obj) {
  4084. //防止拖动图标即打开了桌面应用
  4085. U.MD.D.click(this, obj);
  4086. }, [_MingdeTeacherDeskIcon[i]])
  4087. }, _frag); //
  4088. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4089. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  4090. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  4091. }
  4092. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  4093. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  4094. _content = $$("div", {
  4095. className: "U_MD_D_KO",
  4096. "onmousedown": U.UF.C.closure(function (obj) {
  4097. //防止拖动图标即打开了桌面应用
  4098. U.MD.D.click(this, obj);
  4099. }, [_lhsAdminDesktopIconInfo[i]]),
  4100. "onclick": U.UF.C.closure(function (obj) {
  4101. //防止拖动图标即打开了桌面应用
  4102. U.MD.D.click(this, obj);
  4103. }, [_lhsAdminDesktopIconInfo[i]])
  4104. }, _frag); //
  4105. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4106. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  4107. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  4108. }
  4109. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  4110. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  4111. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4112. continue
  4113. }
  4114. _content = $$("div", {
  4115. className: "U_MD_D_KO",
  4116. "onmousedown": U.UF.C.closure(function (obj) {
  4117. //防止拖动图标即打开了桌面应用
  4118. U.MD.D.click(this, obj);
  4119. }, [_lhsteacherDesktopIconInfo[i]]),
  4120. "onclick": U.UF.C.closure(function (obj) {
  4121. //防止拖动图标即打开了桌面应用
  4122. U.MD.D.click(this, obj);
  4123. }, [_lhsteacherDesktopIconInfo[i]])
  4124. }, _frag); //
  4125. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4126. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  4127. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  4128. }
  4129. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  4130. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  4131. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  4132. continue
  4133. }
  4134. _content = $$("div", {
  4135. className: "U_MD_D_KO",
  4136. "onmousedown": U.UF.C.closure(function (obj) {
  4137. //防止拖动图标即打开了桌面应用
  4138. U.MD.D.click(this, obj);
  4139. }, [_zhoujiateacherDesktopIconInfo[i]]),
  4140. "onclick": U.UF.C.closure(function (obj) {
  4141. //防止拖动图标即打开了桌面应用
  4142. U.MD.D.click(this, obj);
  4143. }, [_zhoujiateacherDesktopIconInfo[i]])
  4144. }, _frag); //
  4145. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4146. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  4147. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  4148. }
  4149. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  4150. for (i = 0; i < _hanDeskIcon.length; i++) {
  4151. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  4152. continue
  4153. }
  4154. _content = $$("div", {
  4155. className: "U_MD_D_KO",
  4156. "onmousedown": U.UF.C.closure(function (obj) {
  4157. //防止拖动图标即打开了桌面应用
  4158. U.MD.D.click(this, obj);
  4159. }, [_hanDeskIcon[i]]),
  4160. "onclick": U.UF.C.closure(function (obj) {
  4161. //防止拖动图标即打开了桌面应用
  4162. U.MD.D.click(this, obj);
  4163. }, [_hanDeskIcon[i]])
  4164. }, _frag); //
  4165. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4166. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  4167. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  4168. }
  4169. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  4170. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  4171. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  4172. continue
  4173. }
  4174. _content = $$("div", {
  4175. className: "U_MD_D_KO",
  4176. "onmousedown": U.UF.C.closure(function (obj) {
  4177. //防止拖动图标即打开了桌面应用
  4178. U.MD.D.click(this, obj);
  4179. }, [_orgStemDeskIcon[i]]),
  4180. "onclick": U.UF.C.closure(function (obj) {
  4181. //防止拖动图标即打开了桌面应用
  4182. U.MD.D.click(this, obj);
  4183. }, [_orgStemDeskIcon[i]])
  4184. }, _frag); //
  4185. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4186. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  4187. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  4188. }
  4189. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  4190. for (i = 0; i < _szulsDeskIcon.length; i++) {
  4191. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  4192. continue
  4193. }
  4194. _content = $$("div", {
  4195. className: "U_MD_D_KO",
  4196. "onmousedown": U.UF.C.closure(function (obj) {
  4197. //防止拖动图标即打开了桌面应用
  4198. U.MD.D.click(this, obj);
  4199. }, [_szulsDeskIcon[i]]),
  4200. "onclick": U.UF.C.closure(function (obj) {
  4201. //防止拖动图标即打开了桌面应用
  4202. U.MD.D.click(this, obj);
  4203. }, [_szulsDeskIcon[i]])
  4204. }, _frag); //
  4205. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4206. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  4207. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  4208. }
  4209. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  4210. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  4211. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  4212. continue
  4213. }
  4214. _content = $$("div", {
  4215. className: "U_MD_D_KO",
  4216. "onmousedown": U.UF.C.closure(function (obj) {
  4217. //防止拖动图标即打开了桌面应用
  4218. U.MD.D.click(this, obj);
  4219. }, [_orgDesktopIconInfo[i]]),
  4220. "onclick": U.UF.C.closure(function (obj) {
  4221. //防止拖动图标即打开了桌面应用
  4222. U.MD.D.click(this, obj);
  4223. }, [_orgDesktopIconInfo[i]])
  4224. }, _frag); //
  4225. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4226. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  4227. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  4228. }
  4229. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4230. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  4231. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  4232. continue
  4233. }
  4234. _content = $$("div", {
  4235. className: "U_MD_D_KO",
  4236. "onmousedown": U.UF.C.closure(function (obj) {
  4237. //防止拖动图标即打开了桌面应用
  4238. U.MD.D.click(this, obj);
  4239. }, [_schoolDesktopIconInfo[i]]),
  4240. "onclick": U.UF.C.closure(function (obj) {
  4241. //防止拖动图标即打开了桌面应用
  4242. U.MD.D.click(this, obj);
  4243. }, [_schoolDesktopIconInfo[i]])
  4244. }, _frag); //
  4245. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4246. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  4247. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  4248. }
  4249. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4250. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  4251. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4252. continue
  4253. }
  4254. _content = $$("div", {
  4255. className: "U_MD_D_KO",
  4256. "onmousedown": U.UF.C.closure(function (obj) {
  4257. //防止拖动图标即打开了桌面应用
  4258. U.MD.D.click(this, obj);
  4259. }, [_GMteacherDesktopIconInfo[i]]),
  4260. "onclick": U.UF.C.closure(function (obj) {
  4261. //防止拖动图标即打开了桌面应用
  4262. U.MD.D.click(this, obj);
  4263. }, [_GMteacherDesktopIconInfo[i]])
  4264. }, _frag); //
  4265. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4266. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  4267. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  4268. }
  4269. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  4270. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  4271. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4272. continue
  4273. }
  4274. _content = $$("div", {
  4275. className: "U_MD_D_KO",
  4276. "onmousedown": U.UF.C.closure(function (obj) {
  4277. //防止拖动图标即打开了桌面应用
  4278. U.MD.D.click(this, obj);
  4279. }, [_SONGteacherDesktopIconInfo[i]]),
  4280. "onclick": U.UF.C.closure(function (obj) {
  4281. //防止拖动图标即打开了桌面应用
  4282. U.MD.D.click(this, obj);
  4283. }, [_SONGteacherDesktopIconInfo[i]])
  4284. }, _frag); //
  4285. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4286. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  4287. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  4288. }
  4289. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4290. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  4291. _content = $$("div", {
  4292. className: "U_MD_D_KO",
  4293. "onmousedown": U.UF.C.closure(function (obj) {
  4294. //防止拖动图标即打开了桌面应用
  4295. U.MD.D.click(this, obj);
  4296. }, [_GMstudentDesktopIconInfo[i]]),
  4297. "onclick": U.UF.C.closure(function (obj) {
  4298. //防止拖动图标即打开了桌面应用
  4299. U.MD.D.click(this, obj);
  4300. }, [_GMstudentDesktopIconInfo[i]])
  4301. }, _frag); //
  4302. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4303. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  4304. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  4305. }
  4306. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  4307. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  4308. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4309. continue
  4310. }
  4311. _content = $$("div", {
  4312. className: "U_MD_D_KO",
  4313. "onmousedown": U.UF.C.closure(function (obj) {
  4314. //防止拖动图标即打开了桌面应用
  4315. U.MD.D.click(this, obj);
  4316. }, [_tcTeacherDeskIconInfo[i]]),
  4317. "onclick": U.UF.C.closure(function (obj) {
  4318. //防止拖动图标即打开了桌面应用
  4319. U.MD.D.click(this, obj);
  4320. }, [_tcTeacherDeskIconInfo[i]])
  4321. }, _frag); //
  4322. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4323. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  4324. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  4325. }
  4326. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  4327. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  4328. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4329. continue
  4330. }
  4331. _content = $$("div", {
  4332. className: "U_MD_D_KO",
  4333. "onmousedown": U.UF.C.closure(function (obj) {
  4334. //防止拖动图标即打开了桌面应用
  4335. U.MD.D.click(this, obj);
  4336. }, [_tcOrganizerDeskIconInfo[i]]),
  4337. "onclick": U.UF.C.closure(function (obj) {
  4338. //防止拖动图标即打开了桌面应用
  4339. U.MD.D.click(this, obj);
  4340. }, [_tcOrganizerDeskIconInfo[i]])
  4341. }, _frag); //
  4342. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4343. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  4344. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4345. }
  4346. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  4347. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  4348. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4349. continue
  4350. }
  4351. _content = $$("div", {
  4352. className: "U_MD_D_KO",
  4353. "onmousedown": U.UF.C.closure(function (obj) {
  4354. //防止拖动图标即打开了桌面应用
  4355. U.MD.D.click(this, obj);
  4356. }, [_szscTeacherDeskIconInfo[i]]),
  4357. "onclick": U.UF.C.closure(function (obj) {
  4358. //防止拖动图标即打开了桌面应用
  4359. U.MD.D.click(this, obj);
  4360. }, [_szscTeacherDeskIconInfo[i]])
  4361. }, _frag); //
  4362. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4363. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  4364. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  4365. }
  4366. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  4367. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  4368. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4369. continue
  4370. }
  4371. _content = $$("div", {
  4372. className: "U_MD_D_KO",
  4373. "onmousedown": U.UF.C.closure(function (obj) {
  4374. //防止拖动图标即打开了桌面应用
  4375. U.MD.D.click(this, obj);
  4376. }, [_szscOrganizerDeskIconInfo[i]]),
  4377. "onclick": U.UF.C.closure(function (obj) {
  4378. //防止拖动图标即打开了桌面应用
  4379. U.MD.D.click(this, obj);
  4380. }, [_szscOrganizerDeskIconInfo[i]])
  4381. }, _frag); //
  4382. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4383. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  4384. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4385. }
  4386. } else if ((_type == 1 || _type == 4) && _org == "7cc601a0-fafc-4116-a805-0adbacf7a38d") {
  4387. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  4388. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4389. continue
  4390. }
  4391. _content = $$("div", {
  4392. className: "U_MD_D_KO",
  4393. "onmousedown": U.UF.C.closure(function (obj) {
  4394. //防止拖动图标即打开了桌面应用
  4395. U.MD.D.click(this, obj);
  4396. }, [_nsfxTeacherDeskIconInfo[i]]),
  4397. "onclick": U.UF.C.closure(function (obj) {
  4398. //防止拖动图标即打开了桌面应用
  4399. U.MD.D.click(this, obj);
  4400. }, [_nsfxTeacherDeskIconInfo[i]])
  4401. }, _frag); //
  4402. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4403. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4404. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4405. }
  4406. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4407. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4408. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4409. continue
  4410. }
  4411. _content = $$("div", {
  4412. className: "U_MD_D_KO",
  4413. "onmousedown": U.UF.C.closure(function (obj) {
  4414. //防止拖动图标即打开了桌面应用
  4415. U.MD.D.click(this, obj);
  4416. }, [_stiaTeacherDeskIconInfo[i]]),
  4417. "onclick": U.UF.C.closure(function (obj) {
  4418. //防止拖动图标即打开了桌面应用
  4419. U.MD.D.click(this, obj);
  4420. }, [_stiaTeacherDeskIconInfo[i]])
  4421. }, _frag); //
  4422. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4423. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4424. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4425. }
  4426. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4427. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4428. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4429. continue
  4430. }
  4431. _content = $$("div", {
  4432. className: "U_MD_D_KO",
  4433. "onmousedown": U.UF.C.closure(function (obj) {
  4434. //防止拖动图标即打开了桌面应用
  4435. U.MD.D.click(this, obj);
  4436. }, [_szdjgTeacherDeskIconInfo[i]]),
  4437. "onclick": U.UF.C.closure(function (obj) {
  4438. //防止拖动图标即打开了桌面应用
  4439. U.MD.D.click(this, obj);
  4440. }, [_szdjgTeacherDeskIconInfo[i]])
  4441. }, _frag); //
  4442. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4443. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4444. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4445. }
  4446. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4447. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4448. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4449. continue
  4450. }
  4451. _content = $$("div", {
  4452. className: "U_MD_D_KO",
  4453. "onmousedown": U.UF.C.closure(function (obj) {
  4454. //防止拖动图标即打开了桌面应用
  4455. U.MD.D.click(this, obj);
  4456. }, [_x010607TeacherDeskIconInfo[i]]),
  4457. "onclick": U.UF.C.closure(function (obj) {
  4458. //防止拖动图标即打开了桌面应用
  4459. U.MD.D.click(this, obj);
  4460. }, [_x010607TeacherDeskIconInfo[i]])
  4461. }, _frag); //
  4462. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4463. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4464. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4465. }
  4466. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4467. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4468. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4469. continue
  4470. }
  4471. _content = $$("div", {
  4472. className: "U_MD_D_KO",
  4473. "onmousedown": U.UF.C.closure(function (obj) {
  4474. //防止拖动图标即打开了桌面应用
  4475. U.MD.D.click(this, obj);
  4476. }, [_xhlyTeacherDeskIconInfo[i]]),
  4477. "onclick": U.UF.C.closure(function (obj) {
  4478. //防止拖动图标即打开了桌面应用
  4479. U.MD.D.click(this, obj);
  4480. }, [_xhlyTeacherDeskIconInfo[i]])
  4481. }, _frag); //
  4482. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4483. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4484. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4485. }
  4486. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4487. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4488. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4489. continue
  4490. }
  4491. _content = $$("div", {
  4492. className: "U_MD_D_KO",
  4493. "onmousedown": U.UF.C.closure(function (obj) {
  4494. //防止拖动图标即打开了桌面应用
  4495. U.MD.D.click(this, obj);
  4496. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4497. "onclick": U.UF.C.closure(function (obj) {
  4498. //防止拖动图标即打开了桌面应用
  4499. U.MD.D.click(this, obj);
  4500. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4501. }, _frag); //
  4502. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4503. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4504. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4505. }
  4506. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4507. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4508. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4509. continue
  4510. }
  4511. _content = $$("div", {
  4512. className: "U_MD_D_KO",
  4513. "onmousedown": U.UF.C.closure(function (obj) {
  4514. //防止拖动图标即打开了桌面应用
  4515. U.MD.D.click(this, obj);
  4516. }, [_x010503TeacherDeskIconInfo[i]]),
  4517. "onclick": U.UF.C.closure(function (obj) {
  4518. //防止拖动图标即打开了桌面应用
  4519. U.MD.D.click(this, obj);
  4520. }, [_x010503TeacherDeskIconInfo[i]])
  4521. }, _frag); //
  4522. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4523. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4524. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4525. }
  4526. } else if ((_type == 1 || _type == 4) && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  4527. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4528. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4529. continue
  4530. }
  4531. _content = $$("div", {
  4532. className: "U_MD_D_KO",
  4533. "onmousedown": U.UF.C.closure(function (obj) {
  4534. //防止拖动图标即打开了桌面应用
  4535. U.MD.D.click(this, obj);
  4536. }, [_x010504TeacherDeskIconInfo[i]]),
  4537. "onclick": U.UF.C.closure(function (obj) {
  4538. //防止拖动图标即打开了桌面应用
  4539. U.MD.D.click(this, obj);
  4540. }, [_x010504TeacherDeskIconInfo[i]])
  4541. }, _frag); //
  4542. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4543. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4544. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4545. }
  4546. } else if ((_type == 1 || _type == 4) && _oid == "8406b214-085f-11f0-b508-005056924926") {
  4547. for (i = 0; i < _x010505TeacherDeskIconInfo.length; i++) {
  4548. if(_role === 0 && _x010505TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4549. continue
  4550. }
  4551. _content = $$("div", {
  4552. className: "U_MD_D_KO",
  4553. "onmousedown": U.UF.C.closure(function (obj) {
  4554. //防止拖动图标即打开了桌面应用
  4555. U.MD.D.click(this, obj);
  4556. }, [_x010505TeacherDeskIconInfo[i]]),
  4557. "onclick": U.UF.C.closure(function (obj) {
  4558. //防止拖动图标即打开了桌面应用
  4559. U.MD.D.click(this, obj);
  4560. }, [_x010505TeacherDeskIconInfo[i]])
  4561. }, _frag); //
  4562. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4563. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505TeacherDeskIconInfo[i].style }, _iconcontent);
  4564. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505TeacherDeskIconInfo[i].Name }, _iconcontent);
  4565. }
  4566. } else if ((_type == 1 || _type == 4) && _oid == "bc239322-ffb2-11ef-b508-005056924926") {
  4567. for (i = 0; i < _x010404TeacherDeskIconInfo.length; i++) {
  4568. if(_role === 0 && _x010404TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4569. continue
  4570. }
  4571. _content = $$("div", {
  4572. className: "U_MD_D_KO",
  4573. "onmousedown": U.UF.C.closure(function (obj) {
  4574. //防止拖动图标即打开了桌面应用
  4575. U.MD.D.click(this, obj);
  4576. }, [_x010404TeacherDeskIconInfo[i]]),
  4577. "onclick": U.UF.C.closure(function (obj) {
  4578. //防止拖动图标即打开了桌面应用
  4579. U.MD.D.click(this, obj);
  4580. }, [_x010404TeacherDeskIconInfo[i]])
  4581. }, _frag); //
  4582. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4583. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404TeacherDeskIconInfo[i].style }, _iconcontent);
  4584. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404TeacherDeskIconInfo[i].Name }, _iconcontent);
  4585. }
  4586. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4587. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4588. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4589. continue
  4590. }
  4591. _content = $$("div", {
  4592. className: "U_MD_D_KO",
  4593. "onmousedown": U.UF.C.closure(function (obj) {
  4594. //防止拖动图标即打开了桌面应用
  4595. U.MD.D.click(this, obj);
  4596. }, [_x010204TeacherDeskIconInfo[i]]),
  4597. "onclick": U.UF.C.closure(function (obj) {
  4598. //防止拖动图标即打开了桌面应用
  4599. U.MD.D.click(this, obj);
  4600. }, [_x010204TeacherDeskIconInfo[i]])
  4601. }, _frag); //
  4602. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4603. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4604. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4605. }
  4606. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4607. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4608. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4609. continue
  4610. }
  4611. _content = $$("div", {
  4612. className: "U_MD_D_KO",
  4613. "onmousedown": U.UF.C.closure(function (obj) {
  4614. //防止拖动图标即打开了桌面应用
  4615. U.MD.D.click(this, obj);
  4616. }, [_x320101TeacherDeskIconInfo[i]]),
  4617. "onclick": U.UF.C.closure(function (obj) {
  4618. //防止拖动图标即打开了桌面应用
  4619. U.MD.D.click(this, obj);
  4620. }, [_x320101TeacherDeskIconInfo[i]])
  4621. }, _frag); //
  4622. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4623. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4624. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4625. }
  4626. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4627. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4628. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4629. continue
  4630. }
  4631. _content = $$("div", {
  4632. className: "U_MD_D_KO",
  4633. "onmousedown": U.UF.C.closure(function (obj) {
  4634. //防止拖动图标即打开了桌面应用
  4635. U.MD.D.click(this, obj);
  4636. }, [_trailTeacherDeskIconInfo[i]]),
  4637. "onclick": U.UF.C.closure(function (obj) {
  4638. //防止拖动图标即打开了桌面应用
  4639. U.MD.D.click(this, obj);
  4640. }, [_trailTeacherDeskIconInfo[i]])
  4641. }, _frag); //
  4642. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4643. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4644. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4645. }
  4646. } else if ((_type == 1 || _type == 4) && _oid == "65ad80f0-16bb-11f0-a66a-005056924926") {
  4647. for (i = 0; i < _trialTeacherDeskIconInfo.length; i++) {
  4648. if(_role === 0 && _trialTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4649. continue
  4650. }
  4651. _content = $$("div", {
  4652. className: "U_MD_D_KO",
  4653. "onmousedown": U.UF.C.closure(function (obj) {
  4654. //防止拖动图标即打开了桌面应用
  4655. U.MD.D.click(this, obj);
  4656. }, [_trialTeacherDeskIconInfo[i]]),
  4657. "onclick": U.UF.C.closure(function (obj) {
  4658. //防止拖动图标即打开了桌面应用
  4659. U.MD.D.click(this, obj);
  4660. }, [_trialTeacherDeskIconInfo[i]])
  4661. }, _frag); //
  4662. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4663. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialTeacherDeskIconInfo[i].style }, _iconcontent);
  4664. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialTeacherDeskIconInfo[i].Name }, _iconcontent);
  4665. }
  4666. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4667. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4668. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4669. continue
  4670. }
  4671. _content = $$("div", {
  4672. className: "U_MD_D_KO",
  4673. "onmousedown": U.UF.C.closure(function (obj) {
  4674. //防止拖动图标即打开了桌面应用
  4675. U.MD.D.click(this, obj);
  4676. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4677. "onclick": U.UF.C.closure(function (obj) {
  4678. //防止拖动图标即打开了桌面应用
  4679. U.MD.D.click(this, obj);
  4680. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4681. }, _frag); //
  4682. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4683. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4684. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4685. }
  4686. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4687. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4688. if(_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4689. continue
  4690. }
  4691. _content = $$("div", {
  4692. className: "U_MD_D_KO",
  4693. "onmousedown": U.UF.C.closure(function (obj) {
  4694. //防止拖动图标即打开了桌面应用
  4695. U.MD.D.click(this, obj);
  4696. }, [_szsyTeacherDeskIconInfo[i]]),
  4697. "onclick": U.UF.C.closure(function (obj) {
  4698. //防止拖动图标即打开了桌面应用
  4699. U.MD.D.click(this, obj);
  4700. }, [_szsyTeacherDeskIconInfo[i]])
  4701. }, _frag); //
  4702. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4703. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4704. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4705. }
  4706. } else if ((_type == 1 || _type == 4) && _org == "eaee75a4-ff2e-11ef-b508-005056924926") {
  4707. for (i = 0; i < _demoCocoTeacherDeskIconInfo.length; i++) {
  4708. if(_role === 0 && _demoCocoTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4709. continue
  4710. }
  4711. _content = $$("div", {
  4712. className: "U_MD_D_KO",
  4713. "onmousedown": U.UF.C.closure(function (obj) {
  4714. //防止拖动图标即打开了桌面应用
  4715. U.MD.D.click(this, obj);
  4716. }, [_demoCocoTeacherDeskIconInfo[i]]),
  4717. "onclick": U.UF.C.closure(function (obj) {
  4718. //防止拖动图标即打开了桌面应用
  4719. U.MD.D.click(this, obj);
  4720. }, [_demoCocoTeacherDeskIconInfo[i]])
  4721. }, _frag); //
  4722. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4723. $$("div", { className: "U_MD_D_KOS U_Img", "style": _demoCocoTeacherDeskIconInfo[i].style }, _iconcontent);
  4724. $$("div", { className: "U_MD_D_KOX", "innerHTML": _demoCocoTeacherDeskIconInfo[i].Name }, _iconcontent);
  4725. }
  4726. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4727. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4728. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4729. continue
  4730. }
  4731. _content = $$("div", {
  4732. className: "U_MD_D_KO",
  4733. "onmousedown": U.UF.C.closure(function (obj) {
  4734. //防止拖动图标即打开了桌面应用
  4735. U.MD.D.click(this, obj);
  4736. }, [_x010608TeacherDeskIconInfo[i]]),
  4737. "onclick": U.UF.C.closure(function (obj) {
  4738. //防止拖动图标即打开了桌面应用
  4739. U.MD.D.click(this, obj);
  4740. }, [_x010608TeacherDeskIconInfo[i]])
  4741. }, _frag); //
  4742. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4743. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4744. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4745. }
  4746. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4747. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4748. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4749. continue
  4750. }
  4751. _content = $$("div", {
  4752. className: "U_MD_D_KO",
  4753. "onmousedown": U.UF.C.closure(function (obj) {
  4754. //防止拖动图标即打开了桌面应用
  4755. U.MD.D.click(this, obj);
  4756. }, [_x010611TeacherDeskIconInfo[i]]),
  4757. "onclick": U.UF.C.closure(function (obj) {
  4758. //防止拖动图标即打开了桌面应用
  4759. U.MD.D.click(this, obj);
  4760. }, [_x010611TeacherDeskIconInfo[i]])
  4761. }, _frag); //
  4762. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4763. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4764. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4765. }
  4766. } else if ((_type == 1 || _type == 4) && _oid == "86fa8cd7-00c2-11f0-b508-005056924926") {
  4767. for (i = 0; i < _x010612TeacherDeskIconInfo.length; i++) {
  4768. if(_role === 0 && _x010612TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4769. continue
  4770. }
  4771. _content = $$("div", {
  4772. className: "U_MD_D_KO",
  4773. "onmousedown": U.UF.C.closure(function (obj) {
  4774. //防止拖动图标即打开了桌面应用
  4775. U.MD.D.click(this, obj);
  4776. }, [_x010612TeacherDeskIconInfo[i]]),
  4777. "onclick": U.UF.C.closure(function (obj) {
  4778. //防止拖动图标即打开了桌面应用
  4779. U.MD.D.click(this, obj);
  4780. }, [_x010612TeacherDeskIconInfo[i]])
  4781. }, _frag); //
  4782. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4783. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612TeacherDeskIconInfo[i].style }, _iconcontent);
  4784. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612TeacherDeskIconInfo[i].Name }, _iconcontent);
  4785. }
  4786. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4787. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4788. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4789. continue
  4790. }
  4791. _content = $$("div", {
  4792. className: "U_MD_D_KO",
  4793. "onmousedown": U.UF.C.closure(function (obj) {
  4794. //防止拖动图标即打开了桌面应用
  4795. U.MD.D.click(this, obj);
  4796. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4797. "onclick": U.UF.C.closure(function (obj) {
  4798. //防止拖动图标即打开了桌面应用
  4799. U.MD.D.click(this, obj);
  4800. }, [_tianyuanTeacherDeskIconInfo[i]])
  4801. }, _frag); //
  4802. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4803. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4804. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4805. }
  4806. }else if ((_type == 1 || _type == 4) && _org == "fa20a652-5f2a-11f0-bf32-005056924926") {
  4807. for (i = 0; i < _MOAITeacherDeskIcon.length; i++) {
  4808. if(_role === 0 && _MOAITeacherDeskIcon[i].Url == 'testTeacher'){
  4809. continue
  4810. }
  4811. _content = $$("div", {
  4812. className: "U_MD_D_KO",
  4813. "onmousedown": U.UF.C.closure(function (obj) {
  4814. //防止拖动图标即打开了桌面应用
  4815. U.MD.D.click(this, obj);
  4816. }, [_MOAITeacherDeskIcon[i]]),
  4817. "onclick": U.UF.C.closure(function (obj) {
  4818. //防止拖动图标即打开了桌面应用
  4819. U.MD.D.click(this, obj);
  4820. }, [_MOAITeacherDeskIcon[i]])
  4821. }, _frag); //
  4822. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4823. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MOAITeacherDeskIcon[i].style }, _iconcontent);
  4824. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MOAITeacherDeskIcon[i].Name }, _iconcontent);
  4825. }
  4826. }else if (_type == 2 && _org == "fa20a652-5f2a-11f0-bf32-005056924926") {
  4827. for (i = 0; i < _MOAIStudentDeskIcon.length; i++) {
  4828. _content = $$("div", {
  4829. className: "U_MD_D_KO",
  4830. "onmousedown": U.UF.C.closure(function (obj) {
  4831. //防止拖动图标即打开了桌面应用
  4832. U.MD.D.click(this, obj);
  4833. }, [_MOAIStudentDeskIcon[i]]),
  4834. "onclick": U.UF.C.closure(function (obj) {
  4835. //防止拖动图标即打开了桌面应用
  4836. U.MD.D.click(this, obj);
  4837. }, [_MOAIStudentDeskIcon[i]])
  4838. }, _frag); //
  4839. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4840. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MOAIStudentDeskIcon[i].style }, _iconcontent);
  4841. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MOAIStudentDeskIcon[i].Name }, _iconcontent);
  4842. }
  4843. } else {
  4844. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4845. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4846. continue
  4847. }
  4848. _content = $$("div", {
  4849. className: "U_MD_D_KO",
  4850. "onmousedown": U.UF.C.closure(function (obj) {
  4851. //防止拖动图标即打开了桌面应用
  4852. U.MD.D.click(this, obj);
  4853. }, [_teacherDesktopIconInfo[i]]),
  4854. "onclick": U.UF.C.closure(function (obj) {
  4855. //防止拖动图标即打开了桌面应用
  4856. U.MD.D.click(this, obj);
  4857. }, [_teacherDesktopIconInfo[i]])
  4858. }, _frag); //
  4859. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4860. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4861. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4862. }
  4863. }
  4864. } else {
  4865. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4866. _content = $$("div", {
  4867. className: "U_MD_D_KO",
  4868. style: { 'width': '124px', 'height': '145px' },
  4869. "onmousedown": U.UF.C.closure(function (obj) {
  4870. //防止拖动图标即打开了桌面应用
  4871. U.MD.D.click(this, obj);
  4872. }, [_easyDesktopIconInfo[i]]),
  4873. "onclick": U.UF.C.closure(function (obj) {
  4874. //防止拖动图标即打开了桌面应用
  4875. U.MD.D.click(this, obj);
  4876. }, [_easyDesktopIconInfo[i]])
  4877. }, _frag); //
  4878. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4879. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4880. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4881. }
  4882. }
  4883. if (type == 1) {
  4884. //加载好后给图标定位
  4885. U.MD.D.iconPostion($(_frag).Child());
  4886. } else {
  4887. //加载好后给图标定位
  4888. U.MD.D.iconPostion2($(_frag).Child());
  4889. }
  4890. //把图标加载到页面
  4891. el.appendChild(_frag);
  4892. }
  4893. /**
  4894. * 显示任务栏
  4895. *
  4896. * @param {element} 桌面元素
  4897. */
  4898. U.MD.D.I.displayTaskbar = function (el) {
  4899. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4900. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4901. //任务栏位置变化
  4902. U.selectEl(el).css({ "bottom": "0px" });
  4903. //桌面位置变话
  4904. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4905. }
  4906. }
  4907. //#region 桌面图标拖动逻辑
  4908. /**
  4909. * 桌面排列图标
  4910. *
  4911. * @param {element} 桌面元素
  4912. * @param {object} 上下相距的距离
  4913. * @param {object} 左右相距的距离
  4914. * @return {object} 命名空间
  4915. */
  4916. U.MD.D.iconPostion = function (childs, top, left) {
  4917. var i; //用于循环处理
  4918. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4919. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4920. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4921. for (i = 0; i < childs.length; i++) {
  4922. //如果竖排top超过了范围处理
  4923. if (top + 95 > US.height - 10) {
  4924. //left超过了页面范围处理,则向上重叠打印处理
  4925. if ((left + 180) > US.width) {
  4926. top -= 110;
  4927. left -= 90;
  4928. }
  4929. //没有超过范围,那么left+90添加到下一个竖排打印
  4930. else {
  4931. left += 90;
  4932. top = 15;
  4933. };
  4934. }
  4935. //给图标的位置赋值
  4936. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4937. if (i < childs.length - 1) {
  4938. //页面图标每次向下加95
  4939. top += 95;
  4940. }
  4941. }
  4942. //返回最后调用的图标的位置
  4943. return [top, left];
  4944. }
  4945. /**
  4946. * 桌面排列图标
  4947. *
  4948. * @param {element} 桌面元素
  4949. * @param {object} 上下相距的距离
  4950. * @param {object} 左右相距的距离
  4951. * @return {object} 命名空间
  4952. */
  4953. U.MD.D.iconPostion2 = function (childs, top, left) {
  4954. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4955. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4956. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4957. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4958. for (i = 0; i < childs.length; i++) {
  4959. //如果竖排top超过了范围处理
  4960. if (left + 150 > US.width - 10) {
  4961. //left超过了页面范围处理,则向上重叠打印处理
  4962. if ((top + 180) > US.Height) {
  4963. top -= 150;
  4964. left -= 150;
  4965. }
  4966. //没有超过范围,那么left+90添加到下一个竖排打印
  4967. else {
  4968. top += 150;
  4969. left = ol;
  4970. };
  4971. }
  4972. //给图标的位置赋值
  4973. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4974. if (i < childs.length - 1) {
  4975. //页面图标每次向下加95
  4976. left += 150;
  4977. }
  4978. }
  4979. //返回最后调用的图标的位置
  4980. return [top, left];
  4981. }
  4982. /**
  4983. * 桌面点击事件逻辑
  4984. *
  4985. * @param {element} 桌面元素
  4986. * @param {object} 上下相距的距离
  4987. * @param {object} 左右相距的距离
  4988. * @return {object} 命名空间
  4989. */
  4990. U.MD.D.click = function (el, obj) {
  4991. var _buttonnumber = event.button; //点击的按钮的事件值
  4992. var _userinfo = US.userInfo;
  4993. U.UF.EV.stopBubble(); //阻止向上冒泡
  4994. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4995. if (_buttonnumber < 2) {
  4996. //如果是click事件的处理
  4997. if (event.type == "click") {
  4998. //如果元素在mousemove事件中没有移动则出发click事件
  4999. if (!U.MD.D.I.IsDrag) {
  5000. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5001. U.alert("请先登录您的账号!");
  5002. setTimeout(() => {
  5003. U.MD.U.L.login();
  5004. }, 2000);
  5005. } else {
  5006. //打开应用处理
  5007. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  5008. }
  5009. }
  5010. }
  5011. //如果是mouse事件的处理
  5012. else {
  5013. if (US.Config.type == '1') {
  5014. //拖动处理,添加拖动和拖动结束事件
  5015. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  5016. }
  5017. }
  5018. U.MD.D.I.IsDrag = false;
  5019. }
  5020. }
  5021. /**
  5022. * 拖动的处理
  5023. *
  5024. */
  5025. U.MD.D.iconMove = function () {
  5026. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  5027. U.MD.D.I.IsDrag = true;
  5028. }
  5029. /**
  5030. * 拖动结束后,这里是定位处理,以网状的形式定位
  5031. *
  5032. * @param {element} 拖动的元素
  5033. * @return {object} 命名空间
  5034. */
  5035. U.MD.D.iconUp = function (el) {
  5036. var _top = 15,
  5037. _left = 20,
  5038. _margin,
  5039. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  5040. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  5041. if (_positioninfo["OT"] > 15) {
  5042. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  5043. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  5044. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  5045. }
  5046. if (_positioninfo["OL"] > 20) {
  5047. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  5048. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  5049. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  5050. }
  5051. //while循环判断么一个重叠的元素
  5052. do {
  5053. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  5054. _top = _positioninfo[0] + 95; //得到定位后的top
  5055. _left = _positioninfo[1]; //得到定位后的left
  5056. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  5057. }
  5058. /**
  5059. * 判断拖动后图标是否重叠
  5060. *
  5061. * @param {element} 拖动的元素
  5062. * @param {element} 桌面所有的元素
  5063. * @param {array} 拖动元素的位置
  5064. ----------[0] 上 top
  5065. ----------[1] 左 left
  5066. * @return {object} 命名空间
  5067. */
  5068. U.MD.D.isOverlap = function (el, childs, postionarray) {
  5069. //循环所有的图标
  5070. for (var i = 0; i < childs.length; i++) {
  5071. //判断有没有和该图标诶子重叠的元素
  5072. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  5073. return childs[i]; //如果有返回
  5074. }
  5075. }
  5076. }
  5077. //#endregion
  5078. //#endregion
  5079. //#region 桌面应用
  5080. /**
  5081. * 打开应用
  5082. *
  5083. * @param {string} 类型
  5084. -----------------Disk 网盘系统
  5085. -----------------PDisk 学习系统网盘
  5086. -----------------Poto 图片
  5087. -----------------Video 视频
  5088. -----------------Music 音乐
  5089. -----------------Word word
  5090. -----------------Excel excel
  5091. -----------------Txt 记事本
  5092. -----------------PB 学习系统
  5093. -----------------Blog 朋友圈系统
  5094. -----------------FTP ftp系统
  5095. -----------------Group 好友群
  5096. -----------------SY 首页系统
  5097. -----------------Set 个人设置
  5098. -----------------XSet 系统设置
  5099. -----------------App 我们所有的app
  5100. -----------------BC c.1473.cn 平台
  5101. -----------------CWeb d.1473.cn 变成平台
  5102. -----------------其他的外联系统 我们统一用iframe打开
  5103. * @param {array} 类型
  5104. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  5105. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  5106. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  5107. 如果第一个参数为其他,则无第二个参数
  5108. * @returns {array}
  5109. */
  5110. window.addEventListener('message', function (e) { // 监听 message 事件
  5111. // alert(e.data.type);
  5112. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  5113. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  5114. //3是展示全部阶段 2学生 1老师 4专家
  5115. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  5116. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  5117. //3是展示全部阶段 2学生 1老师 4专家
  5118. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  5119. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  5120. //3是展示全部阶段 2学生 1老师 4专家
  5121. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  5122. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  5123. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  5124. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  5125. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  5126. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  5127. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  5128. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  5129. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  5130. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  5131. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  5132. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  5133. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  5134. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  5135. //3是展示全部阶段 2学生 1老师 4专家
  5136. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  5137. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  5138. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  5139. U.MD.D.I.selectUser();
  5140. } else if (e.data.allScreen && e.data.allScreen == "1") {
  5141. var _formel = document.getElementById("study");
  5142. U.UF.F.windowZooming(_formel);
  5143. } else if (e.data.allScreen && e.data.allScreen == "2") {
  5144. var _formel = document.getElementById("studyDetail");
  5145. U.UF.F.windowZooming(_formel);
  5146. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  5147. var _formel = document.getElementById("studyDetail");
  5148. U.UF.F.windowZooming(_formel);
  5149. } else if (e.data.allScreen && e.data.allScreen == "3") {
  5150. var _formel = document.getElementById("studentStudy");
  5151. U.UF.F.windowZooming(_formel);
  5152. } else if (e.data.allScreen && e.data.allScreen == "6") {
  5153. // var _formel = document.getElementById("study");
  5154. //如果最大化了,那么就把他缩小
  5155. // if (_formel.ismaximize) {
  5156. // return;
  5157. // }
  5158. // U.UF.F.windowZooming(_formel);
  5159. // U.UF.F.topWindow(_formel);
  5160. } else if (e.data.allScreen && e.data.allScreen == "4") {
  5161. // var _formel = document.getElementById("studyDetail");
  5162. //如果最大化了,那么就把他缩小
  5163. // if (_formel.ismaximize) {
  5164. // return;
  5165. // }
  5166. // U.UF.F.windowZooming(_formel);
  5167. // U.UF.F.topWindow(_formel);
  5168. } else if (e.data.allScreen && e.data.allScreen == "5") {
  5169. // var _formel = document.getElementById("studentStudy");
  5170. // if (_formel.ismaximize) {
  5171. // return;
  5172. // }
  5173. // U.UF.F.windowZooming(_formel);
  5174. // U.UF.F.topWindow(_formel);
  5175. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  5176. var _formel = document.getElementById("study");
  5177. // if (_formel.ismaximize) {
  5178. // return;
  5179. // }
  5180. // U.UF.F.windowZooming(_formel);
  5181. U.UF.F.topWindow(_formel);
  5182. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  5183. var _formel = document.getElementById("studentIndex");
  5184. U.UF.F.windowZooming(_formel);
  5185. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  5186. var _formel = document.getElementById("studyDetailS");
  5187. U.UF.F.windowZooming(_formel);
  5188. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  5189. var _formel = document.getElementById("studioIndex");
  5190. U.UF.F.windowZooming(_formel);
  5191. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  5192. var _formel = document.getElementById("studyDetailStudio");
  5193. U.UF.F.windowZooming(_formel);
  5194. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  5195. var _formel = document.getElementById("studyDetailStudio");
  5196. U.UF.F.windowZooming(_formel);
  5197. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  5198. var _formel = document.getElementById("studyDetailNT");
  5199. U.UF.F.windowZooming(_formel);
  5200. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  5201. var _formel = document.getElementById("studyDetailS");
  5202. U.UF.F.windowZooming(_formel);
  5203. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  5204. var _formel = document.getElementById("studyDetailS");
  5205. U.UF.F.topWindow(_formel);
  5206. } else if (e.data.tools && e.data.tools == "1") {
  5207. // U.MD.D.I.openApplication("whiteboard")
  5208. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5209. } else if (e.data.tools && e.data.tools == "2") {
  5210. U.MD.D.I.openApplication("note")
  5211. } else if (e.data.tools && e.data.tools == "3") {
  5212. // U.MD.D.I.openApplication("mind")
  5213. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5214. } else if (e.data.tools && e.data.tools == "4") {
  5215. U.MD.D.I.openApplication("investigation")
  5216. } else if (e.data.tools && e.data.tools == "6") {
  5217. // U.MD.D.I.openApplication("doc")
  5218. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5219. } else if (e.data.tools && e.data.tools == "7") {
  5220. // U.MD.D.I.openApplication("mindNetwork")
  5221. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5222. } else if (e.data.tools && e.data.tools == "8") {
  5223. U.MD.D.I.openApplication("library")
  5224. } else if (e.data.tools && e.data.tools == "17") {
  5225. U.MD.D.I.openApplication("stuLibrary")
  5226. } else if (e.data.tools && e.data.tools == "18") {
  5227. U.MD.D.I.openApplication("train")
  5228. } else if (e.data.tools && e.data.tools == "21") {
  5229. U.MD.D.I.openApplication("program")
  5230. } else if (e.data.tools && e.data.tools == "22") {
  5231. U.MD.D.I.openApplication("AIprogram2")
  5232. } else if (e.data.tools && e.data.tools == "23") {
  5233. U.MD.D.I.openApplication("Pythonprogram")
  5234. } else if (e.data.tools && e.data.tools == "24") {
  5235. U.MD.D.I.openApplication("AIprogram")
  5236. } else if (e.data.tools && e.data.tools == "25") {
  5237. U.MD.D.I.openApplication("sys")
  5238. } else if (e.data.tools && e.data.tools == "26") {
  5239. // U.MD.D.I.openApplication("courseDesign")
  5240. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5241. } else if (e.data.tools && e.data.tools == "31") {
  5242. U.MD.D.I.openApplication("netWorkPanel")
  5243. } else if (e.data.tools && e.data.tools == "32") {
  5244. U.MD.D.I.openApplication("codeEdit")
  5245. } else if (e.data.tools && e.data.tools == "57") {
  5246. U.MD.D.I.openApplication("CocoPi")
  5247. } else if (e.data.tools && e.data.tools == "63") {
  5248. U.MD.D.I.openApplication("Wood")
  5249. } else if (e.data.tools && e.data.tools == "58") {
  5250. U.MD.D.I.openApplication("car")
  5251. } else if (e.data.tools && e.data.tools == "59") {
  5252. U.MD.D.I.openApplication("lineSearch")
  5253. } else if (e.data.tools && e.data.tools == "60") {
  5254. U.MD.D.I.openApplication("deepLearning")
  5255. } else if (e.data.tools && e.data.tools == "61") {
  5256. U.MD.D.I.openApplication("allHistory")
  5257. } else if (e.data.tools && e.data.tools == "28") {
  5258. U.MD.D.I.openApplication("translation")
  5259. } else if (e.data.tools && e.data.tools == "37") {
  5260. U.MD.D.I.openApplication("mohe")
  5261. } else if (e.data.tools && e.data.tools == "38") {
  5262. U.MD.D.I.openApplication("24game")
  5263. } else if (e.data.tools && e.data.tools == "39") {
  5264. U.MD.D.I.openApplication("GeoGebra")
  5265. } else if (e.data.tools && e.data.tools == "43") {
  5266. U.MD.D.I.openApplication("studentEvaluate")
  5267. } else if (e.data.tools && e.data.tools == "44") {
  5268. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  5269. } else if (e.data.tools && e.data.tools == "46") {
  5270. U.MD.D.I.openApplication("project")
  5271. } else if (e.data.tools && e.data.tools == "71") {
  5272. U.MD.D.I.openApplication("aigptCourse")
  5273. } else if (e.data.tools && e.data.tools == "72") {
  5274. U.MD.D.I.openInApplication("gptConfig", e.data.data)
  5275. } else if (e.data.tools && e.data.tools == "1s") {
  5276. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5277. } else if (e.data.tools && e.data.tools == "3s") {
  5278. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5279. } else if (e.data.tools && e.data.tools == "6s") {
  5280. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5281. } else if (e.data.tools && e.data.tools == "1studio") {
  5282. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5283. } else if (e.data.tools && e.data.tools == "3studio") {
  5284. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5285. } else if (e.data.tools && e.data.tools == "6studio") {
  5286. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5287. } else if (e.data.tools && e.data.tools == "3y") {
  5288. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5289. } else if (e.data.tools && e.data.tools == "1y") {
  5290. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5291. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  5292. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  5293. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  5294. U.MD.D.I.openApplication("AIAnalyse")
  5295. } else if (e.data.tools && e.data.tools == "1teacher") {
  5296. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5297. } else if (e.data.tools && e.data.tools == "3teacher") {
  5298. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5299. } else if (e.data.tools && e.data.tools == "7teacher") {
  5300. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5301. } else if (e.data.tools && e.data.tools == "1teacherE") {
  5302. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5303. } else if (e.data.tools && e.data.tools == "3teacherE") {
  5304. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5305. } else if (e.data.tools && e.data.tools == "1E") {
  5306. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5307. } else if (e.data.tools && e.data.tools == "3E") {
  5308. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5309. } else if (e.data.tools && e.data.tools == "57y") {
  5310. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5311. } else if (e.data.tools && e.data.tools == "57u") {
  5312. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5313. } else if (e.data.tools && e.data.tools == "57teacher") {
  5314. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5315. } else if (e.data.tools && e.data.tools == "64") {
  5316. U.MD.D.I.openApplication("AIChat")
  5317. } else if (e.data.tools && e.data.tools == "66") {
  5318. U.MD.D.I.openApplication("formulaEdi")
  5319. } else if (e.data.tools && e.data.tools == "67") {
  5320. U.MD.D.I.openApplication("molStr")
  5321. } else if (e.data.tools && e.data.tools == "68") {
  5322. U.MD.D.I.openApplication("timeAxis")
  5323. } else if (e.data.tools && e.data.tools == "openCourse") {
  5324. let _data = {
  5325. typea: e.data.typea || '',
  5326. typeb: e.data.typeb || '',
  5327. typed: e.data.typed || '',
  5328. }
  5329. U.MD.D.I.openInApplication("index", _data)
  5330. } else if (e.data.tools && e.data.tools == "openDataClass") {
  5331. let _data = {
  5332. classid: e.data.classid || '',
  5333. }
  5334. U.MD.D.I.openInApplication("dataClass", _data)
  5335. } else if (e.data.tools && e.data.tools == "opencCscl") {
  5336. let _data = {
  5337. cid: e.data.cid || '',
  5338. gid: e.data.gid || '',
  5339. }
  5340. U.MD.D.I.openInApplication("opencCscl", _data)
  5341. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  5342. U.MD.D.I.openApplication("dataBoardTest")
  5343. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  5344. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  5345. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  5346. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  5347. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  5348. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  5349. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  5350. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  5351. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  5352. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  5353. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  5354. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  5355. }else if (e.data.tools && e.data.tools == "loginSz") {
  5356. U.MD.D.I.openInApplication("loginSz")
  5357. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  5358. if($('#classroom_observation_board')[0]){
  5359. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  5360. }
  5361. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  5362. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  5363. if($('#classroom_observation_ob_comment')[0]){
  5364. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  5365. }
  5366. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  5367. }else if (e.data.tools && e.data.tools == "logout"){
  5368. U.MD.U.LO.logoutSystem()
  5369. }else if (e.data.tools && e.data.tools == "getLogin"){
  5370. let _iframe = $('#UI_Login')[0];
  5371. if (_iframe) {
  5372. var userInfo = US.userInfo;
  5373. var type = 2
  5374. if(userInfo && userInfo.userid){
  5375. type = 1
  5376. }
  5377. _contentWindow = _iframe.contentWindow;
  5378. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  5379. }
  5380. }
  5381. });
  5382. U.MD.D.I.selectUser = function () {
  5383. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  5384. if (res.value[0].length > 0) {
  5385. US.userInfo = res.value[0][0];
  5386. $(".userName")[0].innerHTML = US.userInfo.username;
  5387. }
  5388. }, [], { "type": "GET", "withCredentials": true });
  5389. }
  5390. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  5391. var _userinfo = US.userInfo, //登录用户信息
  5392. _userid = US.userInfo.userid, //登录用户id
  5393. _oid = _userinfo.organizeid,
  5394. _type = US.userInfo.type,
  5395. _org = US.userInfo.org,
  5396. _role = US.userInfo.role,
  5397. _classId = US.userInfo.classid;
  5398. if (_type == 4) {
  5399. tType = 4
  5400. }
  5401. let opArray = [ "project", "study", "appStore", "futureClass", "evaluate", "student", "testTeacher", "testStudent", "testTeacherSies", "testStudentSies", "studyDetail"]
  5402. if(opArray.includes(str)){
  5403. let _str = str
  5404. if(str == 'appStore'){
  5405. _str = "cocoFlow"
  5406. }else if(str == "futureClass"){
  5407. _str = "cocoNote"
  5408. }else if(str == "testTeacher" || str == "testTeacherSies"){
  5409. _str = "IntelligentForm"
  5410. }else if(str == "testStudent" || str == "testStudentSies"){
  5411. _str = "TeacherCenter"
  5412. }
  5413. try {
  5414. if (data) {
  5415. U.MD.D.addOp3('1', "", { type: _str+'Open', cid: data }, "success")
  5416. }else {
  5417. U.MD.D.addOp3('1', "", { type: _str+'Open' }, "success")
  5418. }
  5419. } catch (error) {
  5420. console.log(error);
  5421. }
  5422. }
  5423. switch (str) {
  5424. case "studyDetailNT": //无终端模式
  5425. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5426. setTimeout(() => {
  5427. U.MD.U.L.login();
  5428. }, 2000);
  5429. } else {
  5430. _formdiv = new U.UF.UI.form(
  5431. "课程详情",
  5432. $$("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 }), {
  5433. "id": "studyDetailNT",
  5434. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5435. "onresize": function () { }
  5436. }, {
  5437. closecallback: function () { }
  5438. }, { "style": { "height": "36px" } }).form; //创建窗体
  5439. _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); } }
  5440. break;
  5441. }
  5442. case "studyDetail":
  5443. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5444. setTimeout(() => {
  5445. U.MD.U.L.login();
  5446. }, 2000);
  5447. } else {
  5448. _formdiv = new U.UF.UI.form(
  5449. "课程详情",
  5450. $$("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 }), {
  5451. "id": "studyDetail",
  5452. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5453. "onresize": function () { }
  5454. }, {
  5455. closecallback: function () { }
  5456. }, { "style": { "height": "36px" } }).form; //创建窗体
  5457. _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); } }
  5458. break;
  5459. }
  5460. case "studyDetailTrain":
  5461. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5462. setTimeout(() => {
  5463. U.MD.U.L.login();
  5464. }, 2000);
  5465. } else {
  5466. _formdiv = new U.UF.UI.form(
  5467. "培训详情",
  5468. $$("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 }), {
  5469. "id": "studyDetailTrain",
  5470. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5471. "onresize": function () { }
  5472. }, {
  5473. closecallback: function () { }
  5474. }, { "style": { "height": "36px" } }).form; //创建窗体
  5475. _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); } }
  5476. break;
  5477. }
  5478. case "studyDetailS":
  5479. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5480. setTimeout(() => {
  5481. U.MD.U.L.login();
  5482. }, 2000);
  5483. } else {
  5484. _formdiv = new U.UF.UI.form(
  5485. "项目详情",
  5486. $$("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 }), {
  5487. "id": "studyDetailS",
  5488. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5489. "onresize": function () { }
  5490. }, {
  5491. closecallback: function () { }
  5492. }, { "style": { "height": "36px" } }).form; //创建窗体
  5493. _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); } }
  5494. break;
  5495. }
  5496. case "studyDetailStudio":
  5497. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5498. setTimeout(() => {
  5499. U.MD.U.L.login();
  5500. }, 2000);
  5501. } else {
  5502. _formdiv = new U.UF.UI.form(
  5503. "工作详情",
  5504. $$("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 }), {
  5505. "id": "studyDetailStudio",
  5506. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5507. "onresize": function () { }
  5508. }, {
  5509. closecallback: function () { }
  5510. }, { "style": { "height": "36px" } }).form; //创建窗体
  5511. _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); } }
  5512. break;
  5513. }
  5514. case "studyDetailS5":
  5515. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5516. setTimeout(() => {
  5517. U.MD.U.L.login();
  5518. }, 2000);
  5519. } else {
  5520. _formdiv = new U.UF.UI.form(
  5521. "项目详情",
  5522. $$("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 }), {
  5523. "id": "studyDetailS",
  5524. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5525. "onresize": function () { }
  5526. }, {
  5527. closecallback: function () { }
  5528. }, { "style": { "height": "36px" } }).form; //创建窗体
  5529. _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); } }
  5530. break;
  5531. }
  5532. case "studyDetailGM":
  5533. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5534. setTimeout(() => {
  5535. U.MD.U.L.login();
  5536. }, 2000);
  5537. } else {
  5538. _formdiv = new U.UF.UI.form(
  5539. "课程详情",
  5540. $$("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 }), {
  5541. "id": "studyDetail",
  5542. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5543. "onresize": function () { }
  5544. }, {
  5545. closecallback: function () { }
  5546. }, { "style": { "height": "36px" } }).form; //创建窗体
  5547. _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); } }
  5548. break;
  5549. }
  5550. case "hanUrl":
  5551. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5552. setTimeout(() => {
  5553. U.MD.U.L.login();
  5554. }, 2000);
  5555. } else {
  5556. _formdiv = new U.UF.UI.form(
  5557. "汉字宫",
  5558. $$("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" }), {
  5559. "id": "hanUrl",
  5560. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5561. "onresize": function () { }
  5562. }, {
  5563. closecallback: function () { }
  5564. }, { "style": { "height": "36px" } }).form; //创建窗体
  5565. _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); } }
  5566. break;
  5567. }
  5568. case "index":
  5569. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5570. setTimeout(() => {
  5571. U.MD.U.L.login();
  5572. }, 2000);
  5573. } else {
  5574. _formdiv = new U.UF.UI.form(
  5575. "课程中心",
  5576. $$("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 }), {
  5577. "id": "study",
  5578. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5579. "onresize": function () { }
  5580. }, {
  5581. closecallback: function () { }
  5582. }, { "style": { "height": "36px" } }).form; //创建窗体
  5583. _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); } }
  5584. break;
  5585. }
  5586. case "dataClass":
  5587. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5588. setTimeout(() => {
  5589. U.MD.U.L.login();
  5590. }, 2000);
  5591. } else {
  5592. _formdiv = new U.UF.UI.form(
  5593. "数据报告",
  5594. $$("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 }), {
  5595. "id": "dataClass",
  5596. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5597. "onresize": function () { }
  5598. }, {
  5599. closecallback: function () { }
  5600. }, { "style": { "height": "36px" } }).form; //创建窗体
  5601. _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); } }
  5602. break;
  5603. }
  5604. case "opencCscl":
  5605. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5606. setTimeout(() => {
  5607. U.MD.U.L.login();
  5608. }, 2000);
  5609. } else {
  5610. _formdiv = new U.UF.UI.form(
  5611. "协同建构",
  5612. $$("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 }), {
  5613. "id": "futureClass",
  5614. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5615. "onresize": function () { }
  5616. }, {
  5617. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5618. }, { "style": { "height": "36px" } }).form; //创建窗体
  5619. _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); } }
  5620. break;
  5621. }
  5622. case "openCourseUpdate":
  5623. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5624. setTimeout(() => {
  5625. U.MD.U.L.login();
  5626. }, 2000);
  5627. } else {
  5628. _formdiv = new U.UF.UI.form(
  5629. "课程管理",
  5630. $$("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 }), {
  5631. "id": "openCourseUpdate",
  5632. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5633. "onresize": function () { }
  5634. }, {
  5635. closecallback: function () { }
  5636. }, { "style": { "height": "36px" } }).form; //创建窗体
  5637. break;
  5638. }
  5639. case "openNewCourseUpdate":
  5640. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5641. setTimeout(() => {
  5642. U.MD.U.L.login();
  5643. }, 2000);
  5644. } else {
  5645. _formdiv = new U.UF.UI.form(
  5646. "课程管理",
  5647. $$("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 }), {
  5648. "id": "openCourseUpdate",
  5649. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5650. "onresize": function () { }
  5651. }, {
  5652. closecallback: function () { }
  5653. }, { "style": { "height": "36px" } }).form; //创建窗体
  5654. break;
  5655. }
  5656. case "openCourseEUpdate":
  5657. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5658. setTimeout(() => {
  5659. U.MD.U.L.login();
  5660. }, 2000);
  5661. } else {
  5662. _formdiv = new U.UF.UI.form(
  5663. "课程管理",
  5664. $$("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 }), {
  5665. "id": "openCourseUpdate",
  5666. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5667. "onresize": function () { }
  5668. }, {
  5669. closecallback: function () { }
  5670. }, { "style": { "height": "36px" } }).form; //创建窗体
  5671. break;
  5672. }
  5673. case "openCourseAiUpdate":
  5674. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5675. setTimeout(() => {
  5676. U.MD.U.L.login();
  5677. }, 2000);
  5678. } else {
  5679. _formdiv = new U.UF.UI.form(
  5680. "课程管理",
  5681. $$("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 }), {
  5682. "id": "openCourseUpdate",
  5683. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5684. "onresize": function () { }
  5685. }, {
  5686. closecallback: function () { }
  5687. }, { "style": { "height": "36px" } }).form; //创建窗体
  5688. break;
  5689. }
  5690. case "openCourseAiUpdate2":
  5691. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5692. setTimeout(() => {
  5693. U.MD.U.L.login();
  5694. }, 2000);
  5695. } else {
  5696. _formdiv = new U.UF.UI.form(
  5697. "课程管理",
  5698. $$("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 }), {
  5699. "id": "openCourseUpdate",
  5700. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5701. "onresize": function () { }
  5702. }, {
  5703. closecallback: function () { }
  5704. }, { "style": { "height": "36px" } }).form; //创建窗体
  5705. break;
  5706. }
  5707. case "openCourseNewUpdate":
  5708. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5709. setTimeout(() => {
  5710. U.MD.U.L.login();
  5711. }, 2000);
  5712. } else {
  5713. _formdiv = new U.UF.UI.form(
  5714. "课程管理",
  5715. $$("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 }), {
  5716. "id": "openCourseUpdate",
  5717. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5718. "onresize": function () { }
  5719. }, {
  5720. closecallback: function () { }
  5721. }, { "style": { "height": "36px" } }).form; //创建窗体
  5722. break;
  5723. }
  5724. case "inviteLoginSz":
  5725. _formdiv = new U.UF.UI.form(
  5726. "随机码登录",
  5727. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://invitelogin.cocorobo.cn/#/inviteLoginSZ?code=" + data }), {
  5728. "id": "loginSz",
  5729. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5730. "onresize": function () { }
  5731. }, {
  5732. closecallback: function () { }
  5733. }, { "style": { "height": "36px" } }).form; //创建窗体
  5734. break;
  5735. case "loginSz":
  5736. _formdiv = new U.UF.UI.form(
  5737. "教师登录",
  5738. $$("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" }), {
  5739. "id": "loginSz",
  5740. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5741. "onresize": function () { }
  5742. }, {
  5743. closecallback: function () { }
  5744. }, { "style": { "height": "36px" } }).form; //创建窗体
  5745. break;
  5746. case "teacher":
  5747. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5748. setTimeout(() => {
  5749. U.MD.U.L.login();
  5750. }, 2000);
  5751. } else {
  5752. _formdiv = new U.UF.UI.form(
  5753. "教师管理",
  5754. $$("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 }), {
  5755. "id": "teacher",
  5756. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5757. "onresize": function () { }
  5758. }, {
  5759. closecallback: function () { }
  5760. }, { "style": { "height": "36px" } }).form; //创建窗体
  5761. break;
  5762. }
  5763. case "dataBoardSZArea":
  5764. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5765. setTimeout(() => {
  5766. U.MD.U.L.login();
  5767. }, 2000);
  5768. } else {
  5769. _formdiv = new U.UF.UI.form(
  5770. "综合数据看板",
  5771. $$("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 }), {
  5772. "id": "dataBoardSZArea",
  5773. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5774. "onresize": function () { }
  5775. }, {
  5776. closecallback: function () { }
  5777. }, { "style": { "height": "36px" } }).form; //创建窗体
  5778. break;
  5779. }
  5780. case "dataBoardSZCity":
  5781. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5782. setTimeout(() => {
  5783. U.MD.U.L.login();
  5784. }, 2000);
  5785. } else {
  5786. _formdiv = new U.UF.UI.form(
  5787. "综合数据看板",
  5788. $$("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 }), {
  5789. "id": "dataBoardSZCity",
  5790. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5791. "onresize": function () { }
  5792. }, {
  5793. closecallback: function () { }
  5794. }, { "style": { "height": "36px" } }).form; //创建窗体
  5795. break;
  5796. }
  5797. case "classroom_observation_board":
  5798. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5799. setTimeout(() => {
  5800. U.MD.U.L.login();
  5801. }, 2000);
  5802. } else {
  5803. _formdiv = new U.UF.UI.form(
  5804. "课堂观察",
  5805. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/#/classroom_observation_board?tid="+data }), {
  5806. "id": "classroom_observation_board",
  5807. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5808. "onresize": function () { }
  5809. }, {
  5810. closecallback: function () { }
  5811. }, { "style": { "height": "36px" } }).form; //创建窗体
  5812. break;
  5813. }
  5814. case "classroom_observation_ob_comment":
  5815. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5816. setTimeout(() => {
  5817. U.MD.U.L.login();
  5818. }, 2000);
  5819. } else {
  5820. _formdiv = new U.UF.UI.form(
  5821. "课堂审核",
  5822. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/#/classroom_observation_ob_comment?tid="+data }), {
  5823. "id": "classroom_observation_ob_comment",
  5824. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5825. "onresize": function () { }
  5826. }, {
  5827. closecallback: function () { }
  5828. }, { "style": { "height": "36px" } }).form; //创建窗体
  5829. break;
  5830. }
  5831. case "gptConfig":
  5832. _formdiv = new U.UF.UI.form(
  5833. data.name ? data.name : "应用中心",
  5834. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": data.url }), {
  5835. "id": "gptConfig" + data.id,
  5836. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5837. "onresize": function () { }
  5838. }, {
  5839. closecallback: function () { }
  5840. }, { "style": { "height": "36px" } }).form; //创建窗体
  5841. break;
  5842. case "testDetail":
  5843. _formdiv = new U.UF.UI.form(
  5844. "表单填写",
  5845. $$("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/#/doTest?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&type=3&role=" + _role }), {
  5846. "id": "testDetail" + data,
  5847. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5848. "onresize": function () { }
  5849. }, {
  5850. closecallback: function () { }
  5851. }, { "style": { "height": "36px" } }).form; //创建窗体
  5852. break;
  5853. }
  5854. }
  5855. U.MD.D.I.openApplication = function (str, obj, info) {
  5856. obj = obj || {};
  5857. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5858. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5859. _userinfo = US.userInfo, //登录用户信息
  5860. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5861. _oid = obj.organizeid || _userinfo.organizeid,
  5862. _type = US.userInfo.type,
  5863. _org = obj.org || US.userInfo.org,
  5864. _role = US.userInfo.role,
  5865. _classId = US.userInfo.classid,
  5866. _TscreenType = 1
  5867. _screenType = 2,
  5868. _SscreenType = 3;
  5869. let iframeBool = true
  5870. if(U.UF.UI.form.allForm[str]){
  5871. iframeBool = false
  5872. }
  5873. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5874. return;
  5875. }
  5876. let opArray = [ "project", "study", "appStore", "futureClass", "evaluate", "student", "testTeacher", "testStudent", "testTeacherSies", "testStudentSies"]
  5877. if(opArray.includes(str)){
  5878. let _str = str
  5879. if(str == 'appStore'){
  5880. _str = "cocoFlow"
  5881. }else if(str == "futureClass"){
  5882. _str = "cocoNote"
  5883. }else if(str == "testTeacher" || str == "testTeacherSies"){
  5884. _str = "IntelligentForm"
  5885. }else if(str == "testStudent" || str == "testStudentSies"){
  5886. _str = "TeacherCenter"
  5887. }
  5888. try {
  5889. U.MD.D.addOp3('1', "", { type: _str+'Open' }, "success")
  5890. } catch (error) {
  5891. console.log(error);
  5892. }
  5893. }
  5894. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5895. switch (str) {
  5896. case "studnetProject": //好友打开
  5897. _formdiv = new U.UF.UI.form(
  5898. "我的项目",
  5899. $$("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 }), {
  5900. "id": "studnetProject",
  5901. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5902. "onresize": function () { }
  5903. }, {
  5904. closecallback: function () { }
  5905. }, { "style": { "height": "36px" } }).form; //创建窗体
  5906. _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); } }
  5907. break;
  5908. case "studentEvaluate": //好友打开
  5909. _formdiv = new U.UF.UI.form(
  5910. "我的评价",
  5911. $$("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 }), {
  5912. "id": "studentEvaluate",
  5913. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5914. "onresize": function () { }
  5915. }, {
  5916. closecallback: function () { }
  5917. }, { "style": { "height": "36px" } }).form; //创建窗体
  5918. _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); } }
  5919. break;
  5920. case "my":
  5921. _formdiv = new U.UF.UI.form(
  5922. "我的资料",
  5923. $$("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 }), {
  5924. "id": "my",
  5925. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5926. "onresize": function () { }
  5927. }, {
  5928. closecallback: function () { }
  5929. }, { "style": { "height": "36px" } }).form; //创建窗体
  5930. _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); } }
  5931. break;
  5932. case "program":
  5933. _formdiv = new U.UF.UI.form(
  5934. "编程平台",
  5935. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5936. "id": "program",
  5937. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5938. "onresize": function () { }
  5939. }, {
  5940. closecallback: function () { }
  5941. }, { "style": { "height": "36px" } }).form; //创建窗体
  5942. _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); } }
  5943. break;
  5944. case "library":
  5945. _formdiv = new U.UF.UI.form(
  5946. "素材库",
  5947. $$("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 }), {
  5948. "id": "library",
  5949. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5950. "onresize": function () { }
  5951. }, {
  5952. closecallback: function () { }
  5953. }, { "style": { "height": "36px" } }).form; //创建窗体
  5954. _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); } }
  5955. break;
  5956. case "whiteboard":
  5957. _formdiv = new U.UF.UI.form(
  5958. "电子白板",
  5959. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5960. "id": "whiteboard",
  5961. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5962. "onresize": function () { }
  5963. }, {
  5964. closecallback: function () { }
  5965. }, { "style": { "height": "36px" } }).form; //创建窗体
  5966. _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); } }
  5967. break;
  5968. case "investigation":
  5969. _formdiv = new U.UF.UI.form(
  5970. "问卷调查",
  5971. $$("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 }), {
  5972. "id": "investigation",
  5973. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5974. "onresize": function () { }
  5975. }, {
  5976. closecallback: function () { }
  5977. }, { "style": { "height": "36px" } }).form; //创建窗体
  5978. _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); } }
  5979. break;
  5980. case "note":
  5981. _formdiv = new U.UF.UI.form(
  5982. "便签分类",
  5983. $$("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 }), {
  5984. "id": "note",
  5985. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5986. "onresize": function () { }
  5987. }, {
  5988. closecallback: function () { }
  5989. }, { "style": { "height": "36px" } }).form; //创建窗体
  5990. _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); } }
  5991. break;
  5992. // case "score":
  5993. // _formdiv = new U.UF.UI.form(
  5994. // "量规评分",
  5995. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5996. // "id": "score",
  5997. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5998. // "onresize": function() {}
  5999. // }, {
  6000. // closecallback: function() {}
  6001. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6002. // _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); } }
  6003. // break;
  6004. case "mind":
  6005. _formdiv = new U.UF.UI.form(
  6006. "思维导图",
  6007. $$("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"
  6008. "id": "mind",
  6009. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6010. "onresize": function () { }
  6011. }, {
  6012. closecallback: function () { }
  6013. }, { "style": { "height": "36px" } }).form; //创建窗体
  6014. _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); } }
  6015. break;
  6016. case "doc":
  6017. // U.MD.D.I.isRoom();
  6018. _formdiv = new U.UF.UI.form(
  6019. "协同文档",
  6020. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  6021. "id": "doc",
  6022. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6023. "onresize": function () { }
  6024. }, {
  6025. closecallback: function () { }
  6026. }, { "style": { "height": "36px" } }).form; //创建窗体
  6027. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6028. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6029. // })
  6030. _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); } }
  6031. break;
  6032. case "studentStudy":
  6033. _formdiv = new U.UF.UI.form(
  6034. "课程中心",
  6035. $$("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
  6036. "id": "studentStudy",
  6037. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6038. "onresize": function () { }
  6039. }, {
  6040. closecallback: function () { }
  6041. }, { "style": { "height": "36px" } }).form; //创建窗体
  6042. _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); } }
  6043. break;
  6044. case "train": //好友打开
  6045. _formdiv = new U.UF.UI.form(
  6046. "训练平台",
  6047. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6048. "id": "train",
  6049. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6050. "onresize": function () { }
  6051. }, {
  6052. closecallback: function () { }
  6053. }, { "style": { "height": "36px" } }).form; //创建窗体
  6054. _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); } }
  6055. break;
  6056. case "mindNetwork": //好友打开
  6057. _formdiv = new U.UF.UI.form(
  6058. "思维网格",
  6059. $$("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 }), {
  6060. "id": "mindNetwork",
  6061. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6062. "onresize": function () { }
  6063. }, {
  6064. closecallback: function () { }
  6065. }, { "style": { "height": "36px" } }).form; //创建窗体
  6066. _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); } }
  6067. break;
  6068. case "studentClassRoom": //好友打开
  6069. _formdiv = new U.UF.UI.form(
  6070. "实时课堂",
  6071. $$("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 }), {
  6072. "id": "studentClassRoom",
  6073. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6074. "onresize": function () { }
  6075. }, {
  6076. closecallback: function () { }
  6077. }, { "style": { "height": "36px" } }).form; //创建窗体
  6078. _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); } }
  6079. setTimeout(() => {
  6080. U.UF.F.windowZooming(_formdiv)
  6081. }, 0);
  6082. break;
  6083. }
  6084. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6085. switch (str) {
  6086. case "studnetProject": //好友打开
  6087. _formdiv = new U.UF.UI.form(
  6088. "我的项目",
  6089. $$("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 }), {
  6090. "id": "studnetProject",
  6091. "style": { "width": "70%", "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/project.png)" }, "name": "我的项目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6097. break;
  6098. case "studentEvaluate": //好友打开
  6099. _formdiv = new U.UF.UI.form(
  6100. "我的评价",
  6101. $$("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 }), {
  6102. "id": "studentEvaluate",
  6103. "style": { "width": "70%", "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/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6109. break;
  6110. case "my":
  6111. _formdiv = new U.UF.UI.form(
  6112. "我的资料",
  6113. $$("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 }), {
  6114. "id": "my",
  6115. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6116. "onresize": function () { }
  6117. }, {
  6118. closecallback: function () { }
  6119. }, { "style": { "height": "36px" } }).form; //创建窗体
  6120. _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); } }
  6121. break;
  6122. case "program":
  6123. _formdiv = new U.UF.UI.form(
  6124. "编程平台",
  6125. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6126. "id": "program",
  6127. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6128. "onresize": function () { }
  6129. }, {
  6130. closecallback: function () { }
  6131. }, { "style": { "height": "36px" } }).form; //创建窗体
  6132. _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); } }
  6133. break;
  6134. case "library":
  6135. _formdiv = new U.UF.UI.form(
  6136. "素材库",
  6137. $$("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 }), {
  6138. "id": "library",
  6139. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6140. "onresize": function () { }
  6141. }, {
  6142. closecallback: function () { }
  6143. }, { "style": { "height": "36px" } }).form; //创建窗体
  6144. _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); } }
  6145. break;
  6146. case "whiteboard":
  6147. _formdiv = new U.UF.UI.form(
  6148. "电子白板",
  6149. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6150. "id": "whiteboard",
  6151. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6152. "onresize": function () { }
  6153. }, {
  6154. closecallback: function () { }
  6155. }, { "style": { "height": "36px" } }).form; //创建窗体
  6156. _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); } }
  6157. break;
  6158. case "investigation":
  6159. _formdiv = new U.UF.UI.form(
  6160. "问卷调查",
  6161. $$("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 }), {
  6162. "id": "investigation",
  6163. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6164. "onresize": function () { }
  6165. }, {
  6166. closecallback: function () { }
  6167. }, { "style": { "height": "36px" } }).form; //创建窗体
  6168. _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); } }
  6169. break;
  6170. case "note":
  6171. _formdiv = new U.UF.UI.form(
  6172. "便签分类",
  6173. $$("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 }), {
  6174. "id": "note",
  6175. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6176. "onresize": function () { }
  6177. }, {
  6178. closecallback: function () { }
  6179. }, { "style": { "height": "36px" } }).form; //创建窗体
  6180. _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); } }
  6181. break;
  6182. // case "score":
  6183. // _formdiv = new U.UF.UI.form(
  6184. // "量规评分",
  6185. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6186. // "id": "score",
  6187. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6188. // "onresize": function() {}
  6189. // }, {
  6190. // closecallback: function() {}
  6191. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6192. // _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); } }
  6193. // break;
  6194. case "mind":
  6195. _formdiv = new U.UF.UI.form(
  6196. "思维导图",
  6197. $$("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"
  6198. "id": "mind",
  6199. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6200. "onresize": function () { }
  6201. }, {
  6202. closecallback: function () { }
  6203. }, { "style": { "height": "36px" } }).form; //创建窗体
  6204. _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); } }
  6205. break;
  6206. case "doc":
  6207. // U.MD.D.I.isRoom();
  6208. _formdiv = new U.UF.UI.form(
  6209. "协同文档",
  6210. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6211. "id": "doc",
  6212. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6213. "onresize": function () { }
  6214. }, {
  6215. closecallback: function () { }
  6216. }, { "style": { "height": "36px" } }).form; //创建窗体
  6217. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6218. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6219. })
  6220. _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); } }
  6221. break;
  6222. case "train": //好友打开
  6223. _formdiv = new U.UF.UI.form(
  6224. "训练平台",
  6225. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6226. "id": "train",
  6227. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6228. "onresize": function () { }
  6229. }, {
  6230. closecallback: function () { }
  6231. }, { "style": { "height": "36px" } }).form; //创建窗体
  6232. _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); } }
  6233. break;
  6234. case "studentStudy":
  6235. _formdiv = new U.UF.UI.form(
  6236. "课程中心",
  6237. $$("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
  6238. "id": "studentStudy",
  6239. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6240. "onresize": function () { }
  6241. }, {
  6242. closecallback: function () { }
  6243. }, { "style": { "height": "36px" } }).form; //创建窗体
  6244. _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); } }
  6245. break;
  6246. case "mindNetwork": //好友打开
  6247. _formdiv = new U.UF.UI.form(
  6248. "思维网格",
  6249. $$("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 }), {
  6250. "id": "mindNetwork",
  6251. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6252. "onresize": function () { }
  6253. }, {
  6254. closecallback: function () { }
  6255. }, { "style": { "height": "36px" } }).form; //创建窗体
  6256. _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); } }
  6257. break;
  6258. case "studentClassRoom": //好友打开
  6259. _formdiv = new U.UF.UI.form(
  6260. "实时课堂",
  6261. $$("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 }), {
  6262. "id": "studentClassRoom",
  6263. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6264. "onresize": function () { }
  6265. }, {
  6266. closecallback: function () { }
  6267. }, { "style": { "height": "36px" } }).form; //创建窗体
  6268. _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); } }
  6269. setTimeout(() => {
  6270. U.UF.F.windowZooming(_formdiv)
  6271. }, 0);
  6272. break;
  6273. }
  6274. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  6275. //选择应用处理
  6276. switch (str) {
  6277. case "project": //好友打开
  6278. _formdiv = new U.UF.UI.form(
  6279. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  6280. $$("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 }), {
  6281. "id": "project",
  6282. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6283. "onresize": function () { }
  6284. }, {
  6285. closecallback: function () { }
  6286. }, { "style": { "height": "36px" } }).form; //创建窗体
  6287. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6288. break;
  6289. case "student":
  6290. _formdiv = new U.UF.UI.form(
  6291. "学生管理",
  6292. $$("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 }), {
  6293. "id": "student",
  6294. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6295. "onresize": function () { }
  6296. }, {
  6297. closecallback: function () { }
  6298. }, { "style": { "height": "36px" } }).form; //创建窗体
  6299. _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); } }
  6300. break;
  6301. case "evaluate":
  6302. _formdiv = new U.UF.UI.form(
  6303. "学生评价",
  6304. $$("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 }), {
  6305. "id": "evaluate",
  6306. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6307. "onresize": function () { }
  6308. }, {
  6309. closecallback: function () { }
  6310. }, { "style": { "height": "36px" } }).form; //创建窗体
  6311. _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); } }
  6312. break;
  6313. case "sys":
  6314. _formdiv = new U.UF.UI.form(
  6315. "目标管理",
  6316. $$("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 }), {
  6317. "id": "sys",
  6318. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6319. "onresize": function () { }
  6320. }, {
  6321. closecallback: function () { }
  6322. }, { "style": { "height": "36px" } }).form; //创建窗体
  6323. _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); } }
  6324. break;
  6325. case "courseDesign":
  6326. _formdiv = new U.UF.UI.form(
  6327. "项目设计",
  6328. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6329. "id": "courseDesign",
  6330. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6331. "onresize": function () { }
  6332. }, {
  6333. closecallback: function () { }
  6334. }, { "style": { "height": "36px" } }).form; //创建窗体
  6335. _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); } }
  6336. break;
  6337. case "program":
  6338. _formdiv = new U.UF.UI.form(
  6339. "编程平台",
  6340. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6341. "id": "program",
  6342. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6343. "onresize": function () { }
  6344. }, {
  6345. closecallback: function () { }
  6346. }, { "style": { "height": "36px" } }).form; //创建窗体
  6347. _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); } }
  6348. break;
  6349. case "class":
  6350. _formdiv = new U.UF.UI.form(
  6351. "班级管理",
  6352. $$("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 }), {
  6353. "id": "class",
  6354. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6355. "onresize": function () { }
  6356. }, {
  6357. closecallback: function () { }
  6358. }, { "style": { "height": "36px" } }).form; //创建窗体
  6359. _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); } }
  6360. break;
  6361. case "Grade":
  6362. _formdiv = new U.UF.UI.form(
  6363. "年级管理",
  6364. $$("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 }), {
  6365. "id": "Grade",
  6366. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6367. "onresize": function () { }
  6368. }, {
  6369. closecallback: function () { }
  6370. }, { "style": { "height": "36px" } }).form; //创建窗体
  6371. _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); } }
  6372. break;
  6373. case "teacherOffice":
  6374. _formdiv = new U.UF.UI.form(
  6375. "教研室",
  6376. $$("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 }), {
  6377. "id": "teacherOffice",
  6378. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6379. "onresize": function () { }
  6380. }, {
  6381. closecallback: function () { }
  6382. }, { "style": { "height": "36px" } }).form; //创建窗体
  6383. _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); } }
  6384. break;
  6385. case "my":
  6386. _formdiv = new U.UF.UI.form(
  6387. "我的资料",
  6388. $$("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 }), {
  6389. "id": "my",
  6390. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6391. "onresize": function () { }
  6392. }, {
  6393. closecallback: function () { }
  6394. }, { "style": { "height": "36px" } }).form; //创建窗体
  6395. _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); } }
  6396. break;
  6397. case "notice":
  6398. _formdiv = new U.UF.UI.form(
  6399. "通知公告",
  6400. $$("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 }), {
  6401. "id": "notice",
  6402. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6403. "onresize": function () { }
  6404. }, {
  6405. closecallback: function () { }
  6406. }, { "style": { "height": "36px" } }).form; //创建窗体
  6407. _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); } }
  6408. break;
  6409. case "library":
  6410. _formdiv = new U.UF.UI.form(
  6411. "素材库",
  6412. $$("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 }), {
  6413. "id": "library",
  6414. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6415. "onresize": function () { }
  6416. }, {
  6417. closecallback: function () { }
  6418. }, { "style": { "height": "36px" } }).form; //创建窗体
  6419. _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); } }
  6420. break;
  6421. case "whiteboard":
  6422. _formdiv = new U.UF.UI.form(
  6423. "电子白板",
  6424. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6425. "id": "whiteboard",
  6426. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6427. "onresize": function () { }
  6428. }, {
  6429. closecallback: function () { }
  6430. }, { "style": { "height": "36px" } }).form; //创建窗体
  6431. _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); } }
  6432. break;
  6433. case "investigation":
  6434. _formdiv = new U.UF.UI.form(
  6435. "问卷调查",
  6436. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  6437. "id": "investigation",
  6438. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6439. "onresize": function () { }
  6440. }, {
  6441. closecallback: function () { }
  6442. }, { "style": { "height": "36px" } }).form; //创建窗体
  6443. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6444. break;
  6445. case "note":
  6446. _formdiv = new U.UF.UI.form(
  6447. "便签分类",
  6448. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/note?userid=" + _userid + "&org=" + _org }), {
  6449. "id": "note",
  6450. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6451. "onresize": function () { }
  6452. }, {
  6453. closecallback: function () { }
  6454. }, { "style": { "height": "36px" } }).form; //创建窗体
  6455. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6456. break;
  6457. // case "score":
  6458. // _formdiv = new U.UF.UI.form(
  6459. // "量规评分",
  6460. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6461. // "id": "score",
  6462. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6463. // "onresize": function() {}
  6464. // }, {
  6465. // closecallback: function() {}
  6466. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6467. // _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); } }
  6468. // break;
  6469. case "mind":
  6470. _formdiv = new U.UF.UI.form(
  6471. "思维导图",
  6472. $$("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"
  6473. "id": "mind",
  6474. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6475. "onresize": function () { }
  6476. }, {
  6477. closecallback: function () { }
  6478. }, { "style": { "height": "36px" } }).form; //创建窗体
  6479. _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); } }
  6480. break;
  6481. case "doc":
  6482. // U.MD.D.I.isRoom();
  6483. _formdiv = new U.UF.UI.form(
  6484. "协同文档",
  6485. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6486. "id": "doc",
  6487. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6488. "onresize": function () { }
  6489. }, {
  6490. closecallback: function () { }
  6491. }, { "style": { "height": "36px" } }).form; //创建窗体
  6492. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6493. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6494. })
  6495. _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); } }
  6496. break;
  6497. case "study":
  6498. _formdiv = new U.UF.UI.form(
  6499. "课程中心",
  6500. $$("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
  6501. "id": "study",
  6502. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6503. "onresize": function () { }
  6504. }, {
  6505. closecallback: function () { }
  6506. }, { "style": { "height": "36px" } }).form; //创建窗体
  6507. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6508. break;
  6509. case "mindNetwork": //好友打开
  6510. _formdiv = new U.UF.UI.form(
  6511. "思维网格",
  6512. $$("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 }), {
  6513. "id": "mindNetwork",
  6514. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6515. "onresize": function () { }
  6516. }, {
  6517. closecallback: function () { }
  6518. }, { "style": { "height": "36px" } }).form; //创建窗体
  6519. _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); } }
  6520. break;
  6521. case "train": //好友打开
  6522. _formdiv = new U.UF.UI.form(
  6523. "训练平台",
  6524. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6525. "id": "mindNetwork",
  6526. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6527. "onresize": function () { }
  6528. }, {
  6529. closecallback: function () { }
  6530. }, { "style": { "height": "36px" } }).form; //创建窗体
  6531. _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); } }
  6532. break;
  6533. case "teacherClassRoom": //好友打开
  6534. _formdiv = new U.UF.UI.form(
  6535. "实时课堂",
  6536. $$("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 }), {
  6537. "id": "teacherClassRoom",
  6538. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6539. "onresize": function () { }
  6540. }, {
  6541. closecallback: function () { }
  6542. }, { "style": { "height": "36px" } }).form; //创建窗体
  6543. _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); } }
  6544. setTimeout(() => {
  6545. U.UF.F.windowZooming(_formdiv)
  6546. }, 0);
  6547. break;
  6548. }
  6549. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6550. switch (str) {
  6551. case "project": //好友打开
  6552. _formdiv = new U.UF.UI.form(
  6553. "课程管理",
  6554. $$("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 }), {
  6555. "id": "project",
  6556. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6557. "onresize": function () { }
  6558. }, {
  6559. closecallback: function () { }
  6560. }, { "style": { "height": "36px" } }).form; //创建窗体
  6561. _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); } }
  6562. break;
  6563. case "evaluate":
  6564. _formdiv = new U.UF.UI.form(
  6565. "学生评价",
  6566. $$("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 }), {
  6567. "id": "evaluate",
  6568. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6569. "onresize": function () { }
  6570. }, {
  6571. closecallback: function () { }
  6572. }, { "style": { "height": "36px" } }).form; //创建窗体
  6573. _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); } }
  6574. break;
  6575. case "notice":
  6576. _formdiv = new U.UF.UI.form(
  6577. "通知公告",
  6578. $$("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 }), {
  6579. "id": "notice",
  6580. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6581. "onresize": function () { }
  6582. }, {
  6583. closecallback: function () { }
  6584. }, { "style": { "height": "36px" } }).form; //创建窗体
  6585. _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); } }
  6586. break;
  6587. case "stuLibrary":
  6588. _formdiv = new U.UF.UI.form(
  6589. "学习资料",
  6590. $$("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 }), {
  6591. "id": "stuLibrary",
  6592. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6593. "onresize": function () { }
  6594. }, {
  6595. closecallback: function () { }
  6596. }, { "style": { "height": "36px" } }).form; //创建窗体
  6597. _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); } }
  6598. break;
  6599. case "program":
  6600. _formdiv = new U.UF.UI.form(
  6601. "编程平台",
  6602. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6603. "id": "program",
  6604. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6605. "onresize": function () { }
  6606. }, {
  6607. closecallback: function () { }
  6608. }, { "style": { "height": "36px" } }).form; //创建窗体
  6609. _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); } }
  6610. break;
  6611. case "whiteboard":
  6612. _formdiv = new U.UF.UI.form(
  6613. "电子白板",
  6614. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6615. "id": "whiteboard",
  6616. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6617. "onresize": function () { }
  6618. }, {
  6619. closecallback: function () { }
  6620. }, { "style": { "height": "36px" } }).form; //创建窗体
  6621. _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); } }
  6622. break;
  6623. case "investigation":
  6624. _formdiv = new U.UF.UI.form(
  6625. "问卷调查",
  6626. $$("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 }), {
  6627. "id": "investigation",
  6628. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6629. "onresize": function () { }
  6630. }, {
  6631. closecallback: function () { }
  6632. }, { "style": { "height": "36px" } }).form; //创建窗体
  6633. _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); } }
  6634. break;
  6635. case "mind":
  6636. _formdiv = new U.UF.UI.form(
  6637. "思维导图",
  6638. $$("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"
  6639. "id": "mind",
  6640. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6641. "onresize": function () { }
  6642. }, {
  6643. closecallback: function () { }
  6644. }, { "style": { "height": "36px" } }).form; //创建窗体
  6645. _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); } }
  6646. break;
  6647. case "doc":
  6648. // U.MD.D.I.isRoom();
  6649. _formdiv = new U.UF.UI.form(
  6650. "协同文档",
  6651. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6652. "id": "doc",
  6653. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6654. "onresize": function () { }
  6655. }, {
  6656. closecallback: function () { }
  6657. }, { "style": { "height": "36px" } }).form; //创建窗体
  6658. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6659. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6660. })
  6661. _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); } }
  6662. break;
  6663. case "study":
  6664. _formdiv = new U.UF.UI.form(
  6665. "课程中心",
  6666. $$("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
  6667. "id": "study",
  6668. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6669. "onresize": function () { }
  6670. }, {
  6671. closecallback: function () { }
  6672. }, { "style": { "height": "36px" } }).form; //创建窗体
  6673. _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); } }
  6674. break;
  6675. case "mindNetwork": //好友打开
  6676. _formdiv = new U.UF.UI.form(
  6677. "思维网格",
  6678. $$("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 }), {
  6679. "id": "mindNetwork",
  6680. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6681. "onresize": function () { }
  6682. }, {
  6683. closecallback: function () { }
  6684. }, { "style": { "height": "36px" } }).form; //创建窗体
  6685. _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); } }
  6686. break;
  6687. case "train": //好友打开
  6688. _formdiv = new U.UF.UI.form(
  6689. "训练平台",
  6690. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6691. "id": "train",
  6692. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6693. "onresize": function () { }
  6694. }, {
  6695. closecallback: function () { }
  6696. }, { "style": { "height": "36px" } }).form; //创建窗体
  6697. _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); } }
  6698. break;
  6699. case "sys":
  6700. _formdiv = new U.UF.UI.form(
  6701. "目标管理",
  6702. $$("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 }), {
  6703. "id": "sys",
  6704. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6705. "onresize": function () { }
  6706. }, {
  6707. closecallback: function () { }
  6708. }, { "style": { "height": "36px" } }).form; //创建窗体
  6709. _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); } }
  6710. break;
  6711. case "courseDesign":
  6712. _formdiv = new U.UF.UI.form(
  6713. "项目设计",
  6714. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6715. "id": "courseDesign",
  6716. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6717. "onresize": function () { }
  6718. }, {
  6719. closecallback: function () { }
  6720. }, { "style": { "height": "36px" } }).form; //创建窗体
  6721. _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); } }
  6722. break;
  6723. }
  6724. } else if (!_type) {
  6725. switch (str) {
  6726. case "my":
  6727. _formdiv = new U.UF.UI.form(
  6728. "我的资料",
  6729. $$("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 }), {
  6730. "id": "my",
  6731. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6732. "onresize": function () { }
  6733. }, {
  6734. closecallback: function () { }
  6735. }, { "style": { "height": "36px" } }).form; //创建窗体
  6736. _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); } }
  6737. break;
  6738. }
  6739. }
  6740. switch (str) {
  6741. // AIprogram2 AI体验 aihub.cocorobo.cn
  6742. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6743. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6744. case "formulaEdi": //公式编辑
  6745. _formdiv = new U.UF.UI.form(
  6746. "公式编辑",
  6747. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6748. "id": "formulaEdi",
  6749. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6750. "onresize": function () { }
  6751. }, {
  6752. closecallback: function () { }
  6753. }, { "style": { "height": "36px" } }).form; //创建窗体
  6754. _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); } }
  6755. break;
  6756. case "molStr": //分子结构
  6757. _formdiv = new U.UF.UI.form(
  6758. "分子结构",
  6759. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6760. "id": "molStr",
  6761. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6762. "onresize": function () { }
  6763. }, {
  6764. closecallback: function () { }
  6765. }, { "style": { "height": "36px" } }).form; //创建窗体
  6766. _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); } }
  6767. break;
  6768. case "timeAxis": //时间轴
  6769. _formdiv = new U.UF.UI.form(
  6770. "时间轴",
  6771. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6772. "id": "timeAxis",
  6773. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6774. "onresize": function () { }
  6775. }, {
  6776. closecallback: function () { }
  6777. }, { "style": { "height": "36px" } }).form; //创建窗体
  6778. _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); } }
  6779. break;
  6780. case "AIprogram2": //AI体验
  6781. _formdiv = new U.UF.UI.form(
  6782. "AI体验",
  6783. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6784. "id": "AIprogram2",
  6785. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6786. "onresize": function () { }
  6787. }, {
  6788. closecallback: function () { }
  6789. }, { "style": { "height": "36px" } }).form; //创建窗体
  6790. _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); } }
  6791. break;
  6792. case "Pythonprogram": //python编程
  6793. _formdiv = new U.UF.UI.form(
  6794. "Python编程",
  6795. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6796. "id": "Pythonprogram",
  6797. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6798. "onresize": function () { }
  6799. }, {
  6800. closecallback: function () { }
  6801. }, { "style": { "height": "36px" } }).form; //创建窗体
  6802. _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); } }
  6803. break;
  6804. case "AIprogram": //ai编程
  6805. _formdiv = new U.UF.UI.form(
  6806. "AI编程平台",
  6807. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6808. "id": "AIprogram",
  6809. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6810. "onresize": function () { }
  6811. }, {
  6812. closecallback: function () { }
  6813. }, { "style": { "height": "36px" } }).form; //创建窗体
  6814. _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); } }
  6815. break;
  6816. case "CocoPi": //CocoPi
  6817. _formdiv = new U.UF.UI.form(
  6818. "CocoPi",
  6819. $$("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" }), {
  6820. "id": "CocoPi",
  6821. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6822. "onresize": function () { }
  6823. }, {
  6824. closecallback: function () { }
  6825. }, { "style": { "height": "36px" } }).form; //创建窗体
  6826. _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); } }
  6827. break;
  6828. case "Wood": //Wood
  6829. _formdiv = new U.UF.UI.form(
  6830. "海龟编程",
  6831. $$("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/" }), {
  6832. "id": "Wood",
  6833. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6834. "onresize": function () { }
  6835. }, {
  6836. closecallback: function () { }
  6837. }, { "style": { "height": "36px" } }).form; //创建窗体
  6838. _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); } }
  6839. break;
  6840. case "car": //模拟驾驶
  6841. _formdiv = new U.UF.UI.form(
  6842. "模拟驾驶",
  6843. $$("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/" }), {
  6844. "id": "car",
  6845. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6846. "onresize": function () { }
  6847. }, {
  6848. closecallback: function () { }
  6849. }, { "style": { "height": "36px" } }).form; //创建窗体
  6850. _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); } }
  6851. break;
  6852. case "lineSearch": //路径搜索
  6853. _formdiv = new U.UF.UI.form(
  6854. "路径搜索",
  6855. $$("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/" }), {
  6856. "id": "lineSearch",
  6857. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6858. "onresize": function () { }
  6859. }, {
  6860. closecallback: function () { }
  6861. }, { "style": { "height": "36px" } }).form; //创建窗体
  6862. _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); } }
  6863. break;
  6864. case "deepLearning": //深度学习
  6865. _formdiv = new U.UF.UI.form(
  6866. "深度学习",
  6867. $$("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/#" }), {
  6868. "id": "deepLearning",
  6869. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6870. "onresize": function () { }
  6871. }, {
  6872. closecallback: function () { }
  6873. }, { "style": { "height": "36px" } }).form; //创建窗体
  6874. _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); } }
  6875. break;
  6876. case "allHistory": //深度学习
  6877. _formdiv = new U.UF.UI.form(
  6878. "全历史",
  6879. $$("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/" }), {
  6880. "id": "allHistory",
  6881. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6882. "onresize": function () { }
  6883. }, {
  6884. closecallback: function () { }
  6885. }, { "style": { "height": "36px" } }).form; //创建窗体
  6886. _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); } }
  6887. break;
  6888. case "chatPDF": //ai编程
  6889. _formdiv = new U.UF.UI.form(
  6890. "chatPDF",
  6891. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6892. "id": "chatPDF",
  6893. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6894. "onresize": function () { }
  6895. }, {
  6896. closecallback: function () { }
  6897. }, { "style": { "height": "36px" } }).form; //创建窗体
  6898. _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); } }
  6899. break;
  6900. case "resources": //国家教育
  6901. _formdiv = new U.UF.UI.form(
  6902. "国家教育",
  6903. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6904. "id": "resources",
  6905. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6906. "onresize": function () { }
  6907. }, {
  6908. closecallback: function () { }
  6909. }, { "style": { "height": "36px" } }).form; //创建窗体
  6910. _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); } }
  6911. break;
  6912. case "codeEdit": //源码编辑
  6913. _formdiv = new U.UF.UI.form(
  6914. "源码编辑",
  6915. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6916. "id": "codeEdit",
  6917. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6918. "onresize": function () { }
  6919. }, {
  6920. closecallback: function () { }
  6921. }, { "style": { "height": "36px" } }).form; //创建窗体
  6922. _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); } }
  6923. break; //
  6924. case "MindMap": //MindMap
  6925. _formdiv = new U.UF.UI.form(
  6926. "MindMap",
  6927. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6928. "id": "MindMap",
  6929. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6930. "onresize": function () { }
  6931. }, {
  6932. closecallback: function () { }
  6933. }, { "style": { "height": "36px" } }).form; //创建窗体
  6934. _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); } }
  6935. break;
  6936. case "netWorkPanel": //netWorkPanel
  6937. _formdiv = new U.UF.UI.form(
  6938. "netWorkPanel",
  6939. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6940. "id": "netWorkPanel",
  6941. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6942. "onresize": function () { }
  6943. }, {
  6944. closecallback: function () { }
  6945. }, { "style": { "height": "36px" } }).form; //创建窗体
  6946. _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); } }
  6947. break;
  6948. case "GeoGebra": //GeoGebra
  6949. _formdiv = new U.UF.UI.form(
  6950. "GeoGebra",
  6951. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.geogebra.org/calculator" }), {
  6952. "id": "GeoGebra",
  6953. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6954. "onresize": function () { }
  6955. }, {
  6956. closecallback: function () { }
  6957. }, { "style": { "height": "36px" } }).form; //创建窗体
  6958. _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); } }
  6959. break;
  6960. case "translation": //翻译
  6961. _formdiv = new U.UF.UI.form(
  6962. "翻译",
  6963. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6964. "id": "translation",
  6965. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6966. "onresize": function () { }
  6967. }, {
  6968. closecallback: function () { }
  6969. }, { "style": { "height": "36px" } }).form; //创建窗体
  6970. _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); } }
  6971. break;
  6972. case "mohe": //魔盒
  6973. _formdiv = new U.UF.UI.form(
  6974. "魔盒识字",
  6975. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6976. "id": "mohe",
  6977. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6978. "onresize": function () { }
  6979. }, {
  6980. closecallback: function () { }
  6981. }, { "style": { "height": "36px" } }).form; //创建窗体
  6982. _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); } }
  6983. break;
  6984. case "24game": //24点
  6985. _formdiv = new U.UF.UI.form(
  6986. "24点",
  6987. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6988. "id": "24game",
  6989. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6990. "onresize": function () { }
  6991. }, {
  6992. closecallback: function () { }
  6993. }, { "style": { "height": "36px" } }).form; //创建窗体
  6994. _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); } }
  6995. break;
  6996. case "case":
  6997. _formdiv = new U.UF.UI.form(
  6998. "课程进展",
  6999. $$("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 }), {
  7000. "id": "case",
  7001. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7002. "onresize": function () { }
  7003. }, {
  7004. closecallback: function () { }
  7005. }, { "style": { "height": "36px" } }).form; //创建窗体
  7006. _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); } }
  7007. break;
  7008. case "snf":
  7009. _formdiv = new U.UF.UI.form(
  7010. "赛诺梵",
  7011. $$("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" }), {
  7012. "id": "snf",
  7013. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7014. "onresize": function () { }
  7015. }, {
  7016. closecallback: function () { }
  7017. }, { "style": { "height": "36px" } }).form; //创建窗体
  7018. _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); } }
  7019. break;
  7020. case "hanFamily":
  7021. _formdiv = new U.UF.UI.form(
  7022. "汉字家族",
  7023. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  7024. "id": "hanFamily",
  7025. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7026. "onresize": function () { }
  7027. }, {
  7028. closecallback: function () { }
  7029. }, { "style": { "height": "36px" } }).form; //创建窗体
  7030. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanFamily.png)" }, "name": "汉字家族", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7031. break;
  7032. case "hanClassics":
  7033. _formdiv = new U.UF.UI.form(
  7034. "国学经典",
  7035. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  7036. "id": "hanClassics",
  7037. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7038. "onresize": function () { }
  7039. }, {
  7040. closecallback: function () { }
  7041. }, { "style": { "height": "36px" } }).form; //创建窗体
  7042. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClassics.png)" }, "name": "国学经典", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7043. break;
  7044. case "hanTraining":
  7045. _formdiv = new U.UF.UI.form(
  7046. "笔画训练",
  7047. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  7048. "id": "hanTraining",
  7049. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7050. "onresize": function () { }
  7051. }, {
  7052. closecallback: function () { }
  7053. }, { "style": { "height": "36px" } }).form; //创建窗体
  7054. _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); } }
  7055. break;
  7056. case "hanClass":
  7057. _formdiv = new U.UF.UI.form(
  7058. "书法课堂",
  7059. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  7060. "id": "hanClass",
  7061. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7062. "onresize": function () { }
  7063. }, {
  7064. closecallback: function () { }
  7065. }, { "style": { "height": "36px" } }).form; //创建窗体
  7066. _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); } }
  7067. break;
  7068. case "han":
  7069. _formdiv = new U.UF.UI.form(
  7070. "汉字宫",
  7071. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  7072. "id": "han",
  7073. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7074. "onresize": function () { }
  7075. }, {
  7076. closecallback: function () { }
  7077. }, { "style": { "height": "36px" } }).form; //创建窗体
  7078. _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); } }
  7079. break;
  7080. case "projectGM": //课程管理
  7081. _formdiv = new U.UF.UI.form(
  7082. "课程管理",
  7083. $$("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 }), {
  7084. "id": "projectGM",
  7085. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7086. "onresize": function () { }
  7087. }, {
  7088. closecallback: function () { }
  7089. }, { "style": { "height": "36px" } }).form; //创建窗体
  7090. _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); } }
  7091. break;
  7092. case "studyGM": //课程中心
  7093. _formdiv = new U.UF.UI.form(
  7094. "课程中心",
  7095. $$("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
  7096. "id": "study",
  7097. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7098. "onresize": function () { }
  7099. }, {
  7100. closecallback: function () { }
  7101. }, { "style": { "height": "36px" } }).form; //创建窗体
  7102. _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); } }
  7103. break;
  7104. // studentGM
  7105. case "studentGM": //学生管理
  7106. _formdiv = new U.UF.UI.form(
  7107. "学生管理",
  7108. $$("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 }), {
  7109. "id": "studentGM",
  7110. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7111. "onresize": function () { }
  7112. }, {
  7113. closecallback: function () { }
  7114. }, { "style": { "height": "36px" } }).form; //创建窗体
  7115. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7116. break;
  7117. case "evaluateGM": //学生评价
  7118. _formdiv = new U.UF.UI.form(
  7119. "学生评价",
  7120. $$("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 }), {
  7121. "id": "evaluateGM",
  7122. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7123. "onresize": function () { }
  7124. }, {
  7125. closecallback: function () { }
  7126. }, { "style": { "height": "36px" } }).form; //创建窗体
  7127. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7128. break;
  7129. // classGM
  7130. case "classGM": //班级管理
  7131. _formdiv = new U.UF.UI.form(
  7132. "班级管理",
  7133. $$("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 }), {
  7134. "id": "classGM",
  7135. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7136. "onresize": function () { }
  7137. }, {
  7138. closecallback: function () { }
  7139. }, { "style": { "height": "36px" } }).form; //创建窗体
  7140. _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); } }
  7141. break;
  7142. // dataGM
  7143. case "dataGM":
  7144. _formdiv = new U.UF.UI.form(
  7145. "我的资料",
  7146. $$("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 }), {
  7147. "id": "dataGM",
  7148. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7149. "onresize": function () { }
  7150. }, {
  7151. closecallback: function () { }
  7152. }, { "style": { "height": "36px" } }).form; //创建窗体
  7153. _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); } }
  7154. break;
  7155. // caseGM
  7156. case "caseGM": //课程进展
  7157. _formdiv = new U.UF.UI.form(
  7158. "课程进展",
  7159. $$("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 }), {
  7160. "id": "caseGM",
  7161. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7162. "onresize": function () { }
  7163. }, {
  7164. closecallback: function () { }
  7165. }, { "style": { "height": "36px" } }).form; //创建窗体
  7166. _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); } }
  7167. break;
  7168. // meterialGM
  7169. case "meterialGM": //素材库
  7170. _formdiv = new U.UF.UI.form(
  7171. "素材库",
  7172. $$("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 }), {
  7173. "id": "meterialGM",
  7174. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7175. "onresize": function () { }
  7176. }, {
  7177. closecallback: function () { }
  7178. }, { "style": { "height": "36px" } }).form; //创建窗体
  7179. _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); } }
  7180. break;
  7181. // evaluateSGM
  7182. case "evaluateSGM": //我的评价
  7183. _formdiv = new U.UF.UI.form(
  7184. "我的评价",
  7185. $$("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 }), {
  7186. "id": "evaluateSGM",
  7187. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7188. "onresize": function () { }
  7189. }, {
  7190. closecallback: function () { }
  7191. }, { "style": { "height": "36px" } }).form; //创建窗体
  7192. _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); } }
  7193. break;
  7194. case "jupyter": //jupyter
  7195. _formdiv = new U.UF.UI.form(
  7196. "jupyter",
  7197. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  7198. "id": "jupyter",
  7199. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7200. "onresize": function () { }
  7201. }, {
  7202. closecallback: function () { }
  7203. }, { "style": { "height": "36px" } }).form; //创建窗体
  7204. _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); } }
  7205. break;
  7206. case "number": //数字实验室
  7207. _formdiv = new U.UF.UI.form(
  7208. "数字实验室",
  7209. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  7210. "id": "number",
  7211. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7212. "onresize": function () { }
  7213. }, {
  7214. closecallback: function () { }
  7215. }, { "style": { "height": "36px" } }).form; //创建窗体
  7216. _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); } }
  7217. break;
  7218. case "studentCourse": //项目管理 学生
  7219. _formdiv = new U.UF.UI.form(
  7220. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  7221. $$("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 }), {
  7222. "id": "studentCourse",
  7223. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7224. "onresize": function () { }
  7225. }, {
  7226. closecallback: function () { }
  7227. }, { "style": { "height": "36px" } }).form; //创建窗体
  7228. _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); } }
  7229. break;
  7230. case "studentCourseS": //项目管理 老师
  7231. _formdiv = new U.UF.UI.form(
  7232. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  7233. $$("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 }), {
  7234. "id": "studentCourseS",
  7235. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7236. "onresize": function () { }
  7237. }, {
  7238. closecallback: function () { }
  7239. }, { "style": { "height": "36px" } }).form; //创建窗体
  7240. _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); } }
  7241. break;
  7242. case "studentIndex": //项目中心
  7243. _formdiv = new U.UF.UI.form(
  7244. "项目中心",
  7245. $$("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 }), {
  7246. "id": "studentIndex",
  7247. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7248. "onresize": function () { }
  7249. }, {
  7250. closecallback: function () { }
  7251. }, { "style": { "height": "36px" } }).form; //创建窗体
  7252. _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); } }
  7253. break;
  7254. case "CaseDesignS":
  7255. _formdiv = new U.UF.UI.form(
  7256. "项目进展",
  7257. $$("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 }), {
  7258. "id": "case",
  7259. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7260. "onresize": function () { }
  7261. }, {
  7262. closecallback: function () { }
  7263. }, { "style": { "height": "36px" } }).form; //创建窗体
  7264. _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); } }
  7265. break;
  7266. case "tcStudent": //腾讯学生管理
  7267. _formdiv = new U.UF.UI.form(
  7268. "学生管理",
  7269. $$("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 }), {
  7270. "id": "tcStudent",
  7271. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7272. "onresize": function () { }
  7273. }, {
  7274. closecallback: function () { }
  7275. }, { "style": { "height": "36px" } }).form; //创建窗体
  7276. _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); } }
  7277. break;
  7278. case "tcSchool": //腾讯学校管理
  7279. _formdiv = new U.UF.UI.form(
  7280. "学校管理",
  7281. $$("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 }), {
  7282. "id": "tcSchool",
  7283. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7284. "onresize": function () { }
  7285. }, {
  7286. closecallback: function () { }
  7287. }, { "style": { "height": "36px" } }).form; //创建窗体
  7288. _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); } }
  7289. break;
  7290. case "tcTeacher": //腾讯学校管理
  7291. _formdiv = new U.UF.UI.form(
  7292. "教师管理",
  7293. $$("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 }), {
  7294. "id": "tcTeacher",
  7295. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7296. "onresize": function () { }
  7297. }, {
  7298. closecallback: function () { }
  7299. }, { "style": { "height": "36px" } }).form; //创建窗体
  7300. _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); } }
  7301. break;
  7302. case "teacher":
  7303. _formdiv = new U.UF.UI.form(
  7304. "教师管理",
  7305. $$("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 }), {
  7306. "id": "teacher",
  7307. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7308. "onresize": function () { }
  7309. }, {
  7310. closecallback: function () { }
  7311. }, { "style": { "height": "36px" } }).form; //创建窗体
  7312. _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); } }
  7313. break;
  7314. case "tcData": //腾讯我的资料
  7315. _formdiv = new U.UF.UI.form(
  7316. "我的资料",
  7317. $$("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 }), {
  7318. "id": "tcData",
  7319. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7320. "onresize": function () { }
  7321. }, {
  7322. closecallback: function () { }
  7323. }, { "style": { "height": "36px" } }).form; //创建窗体
  7324. _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); } }
  7325. break;
  7326. case "tcNotice": //腾讯消息通知
  7327. _formdiv = new U.UF.UI.form(
  7328. "消息通知",
  7329. $$("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 }), {
  7330. "id": "tcNotice",
  7331. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7332. "onresize": function () { }
  7333. }, {
  7334. closecallback: function () { }
  7335. }, { "style": { "height": "36px" } }).form; //创建窗体
  7336. _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); } }
  7337. break;
  7338. case "myReport": //好友打开
  7339. _formdiv = new U.UF.UI.form(
  7340. "我的评价",
  7341. $$("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 }), {
  7342. "id": "myReport",
  7343. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7344. "onresize": function () { }
  7345. }, {
  7346. closecallback: function () { }
  7347. }, { "style": { "height": "36px" } }).form; //创建窗体
  7348. _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); } }
  7349. break;
  7350. case "learnAna": //好友打开
  7351. _formdiv = new U.UF.UI.form(
  7352. "学习分析",
  7353. $$("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 }), {
  7354. "id": "learnAna",
  7355. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7356. "onresize": function () { }
  7357. }, {
  7358. closecallback: function () { }
  7359. }, { "style": { "height": "36px" } }).form; //创建窗体
  7360. _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); } }
  7361. break;
  7362. case "AIChat": //AI共创
  7363. _formdiv = new U.UF.UI.form(
  7364. "AI共创",
  7365. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  7366. "id": "AIChat",
  7367. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  7368. "onresize": function () { }
  7369. }, {
  7370. istop: true,
  7371. closecallback: function () { $("#aichat_icon").remove(); },
  7372. narrowcallback: function () {
  7373. if (!$("#aichat_icon")[0]) {
  7374. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  7375. }
  7376. },
  7377. }, { "style": { "height": "36px" } }).form; //创建窗体
  7378. _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); } }
  7379. break;
  7380. case "ainew": //AI共创
  7381. _formdiv = new U.UF.UI.form(
  7382. "AI协同",
  7383. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  7384. "id": "ainew",
  7385. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7386. "onresize": function () { }
  7387. }, {
  7388. closecallback: function () { }
  7389. }, { "style": { "height": "36px" } }).form; //创建窗体
  7390. _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); } }
  7391. break;
  7392. case "gpt4": //gpt4
  7393. _formdiv = new U.UF.UI.form(
  7394. "AI助手",
  7395. $$("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 }), {
  7396. "id": "gpt4",
  7397. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7398. "onresize": function () { }
  7399. }, {
  7400. closecallback: function () { }
  7401. }, { "style": { "height": "36px" } }).form; //创建窗体
  7402. _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); } }
  7403. break;
  7404. case "aigpt": //gpt4
  7405. _formdiv = new U.UF.UI.form(
  7406. "AI助手+",
  7407. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7408. "id": "aigpt",
  7409. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7410. "onresize": function () { }
  7411. }, {
  7412. closecallback: function () {
  7413. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  7414. }
  7415. }, { "style": { "height": "36px" } }).form; //创建窗体
  7416. _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); } }
  7417. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7418. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  7419. })
  7420. break;
  7421. case "aiKnowledge": //aiKnowledge
  7422. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7423. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  7424. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7425. }
  7426. _formdiv = new U.UF.UI.form(
  7427. "知识建构",
  7428. $$("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 }), {
  7429. "id": "aiKnowledge",
  7430. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7431. "onresize": function () { }
  7432. }, {
  7433. closecallback: function () { }
  7434. }, { "style": { "height": "36px" } }).form; //创建窗体
  7435. _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); } }
  7436. break;
  7437. case "futureClass": //AI共创
  7438. _formdiv = new U.UF.UI.form(
  7439. "协同建构",
  7440. $$("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
  7441. "id": "synergyCourse",
  7442. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7443. "onresize": function () { }
  7444. }, {
  7445. closecallback: function () {
  7446. $("iframe", _formdiv)[0].contentWindow.loginout();
  7447. }
  7448. }, { "style": { "height": "36px" } }).form; //创建窗体
  7449. _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); } }
  7450. break;
  7451. case "aiagent": //ai agent
  7452. _formdiv = new U.UF.UI.form(
  7453. "AI Agent",
  7454. $$("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" }), {
  7455. "id": "AIAgent",
  7456. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7457. "onresize": function () { }
  7458. }, {
  7459. closecallback: function () { }
  7460. }, { "style": { "height": "36px" } }).form; //创建窗体
  7461. _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); } }
  7462. break;
  7463. case "dataBoard": //数据看板
  7464. _formdiv = new U.UF.UI.form(
  7465. "数据看板",
  7466. $$("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 }), {
  7467. "id": "dataBoard",
  7468. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7469. "onresize": function () { }
  7470. }, {
  7471. closecallback: function () { }
  7472. }, { "style": { "height": "36px" } }).form; //创建窗体
  7473. _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); } }
  7474. break;
  7475. case "dataBoardSies": //数据融合
  7476. _formdiv = new U.UF.UI.form(
  7477. "数据融合",
  7478. $$("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 }), {
  7479. "id": "dataBoardSies",
  7480. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7481. "onresize": function () { }
  7482. }, {
  7483. closecallback: function () { }
  7484. }, { "style": { "height": "36px" } }).form; //创建窗体
  7485. _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); } }
  7486. break;
  7487. case "dataBoardNew": //数据看板
  7488. _formdiv = new U.UF.UI.form(
  7489. "综合看板",
  7490. $$("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 }), {
  7491. "id": "dataBoardNew",
  7492. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7493. "onresize": function () { }
  7494. }, {
  7495. closecallback: function () { }
  7496. }, { "style": { "height": "36px" } }).form; //创建窗体
  7497. _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); } }
  7498. break;
  7499. case "dataBoardTest": //数据看板
  7500. _formdiv = new U.UF.UI.form(
  7501. "评测看板",
  7502. $$("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 }), {
  7503. "id": "dataBoardTest",
  7504. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7505. "onresize": function () { }
  7506. }, {
  7507. closecallback: function () { }
  7508. }, { "style": { "height": "36px" } }).form; //创建窗体
  7509. _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); } }
  7510. break;
  7511. case "AIAnalyse": //AI共创
  7512. _formdiv = new U.UF.UI.form(
  7513. "AI分析",
  7514. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  7515. "id": "AIAnalyse",
  7516. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7517. "onresize": function () { }
  7518. }, {
  7519. closecallback: function () { }
  7520. }, { "style": { "height": "36px" } }).form; //创建窗体
  7521. _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); } }
  7522. break;
  7523. case "studioCourse": //AI共创
  7524. _formdiv = new U.UF.UI.form(
  7525. "工作管理",
  7526. $$("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 }), {
  7527. "id": "studioCourse",
  7528. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7529. "onresize": function () { }
  7530. }, {
  7531. closecallback: function () { }
  7532. }, { "style": { "height": "36px" } }).form; //创建窗体
  7533. _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); } }
  7534. break;
  7535. case "studioIndex": //AI共创
  7536. _formdiv = new U.UF.UI.form(
  7537. "工作中心",
  7538. $$("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 }), {
  7539. "id": "studioIndex",
  7540. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7541. "onresize": function () { }
  7542. }, {
  7543. closecallback: function () { }
  7544. }, { "style": { "height": "36px" } }).form; //创建窗体
  7545. _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); } }
  7546. break;
  7547. case "source":
  7548. _formdiv = new U.UF.UI.form(
  7549. "教学资源",
  7550. $$("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 }), {
  7551. "id": "source",
  7552. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7553. "onresize": function () { }
  7554. }, {
  7555. closecallback: function () { }
  7556. }, { "style": { "height": "36px" } }).form; //创建窗体
  7557. _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); } }
  7558. break;
  7559. case "testTeacher":
  7560. _formdiv = new U.UF.UI.form(
  7561. "智能表单",
  7562. $$("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 }), {
  7563. "id": "testTeacher",
  7564. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7565. "onresize": function () { }
  7566. }, {
  7567. closecallback: function () { }
  7568. }, { "style": { "height": "36px" } }).form; //创建窗体
  7569. _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); } }
  7570. break;
  7571. case "testStudent":
  7572. _formdiv = new U.UF.UI.form(
  7573. "教师中心",
  7574. $$("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 }), {
  7575. "id": "testStudent",
  7576. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7577. "onresize": function () { }
  7578. }, {
  7579. closecallback: function () { }
  7580. }, { "style": { "height": "36px" } }).form; //创建窗体
  7581. _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); } }
  7582. break;
  7583. case "testTeacherSies":
  7584. _formdiv = new U.UF.UI.form(
  7585. "教师管理",
  7586. $$("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 }), {
  7587. "id": "testTeacherSies",
  7588. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7589. "onresize": function () { }
  7590. }, {
  7591. closecallback: function () { }
  7592. }, { "style": { "height": "36px" } }).form; //创建窗体
  7593. _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); } }
  7594. break;
  7595. case "testStudentSies":
  7596. _formdiv = new U.UF.UI.form(
  7597. "教师中心",
  7598. $$("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 }), {
  7599. "id": "testStudentSies",
  7600. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7601. "onresize": function () { }
  7602. }, {
  7603. closecallback: function () { }
  7604. }, { "style": { "height": "36px" } }).form; //创建窗体
  7605. _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); } }
  7606. break;
  7607. case "ytpbl": //消息通知
  7608. _formdiv = new U.UF.UI.form(
  7609. "案例征集",
  7610. $$("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 }), {
  7611. "id": "ytpbl",
  7612. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7613. "onresize": function () { }
  7614. }, {
  7615. closecallback: function () { }
  7616. }, { "style": { "height": "36px" } }).form; //创建窗体
  7617. _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); } }
  7618. // 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");
  7619. break;
  7620. case "aiCourseResource": //人工智能窗体
  7621. _formdiv = new U.UF.UI.form(
  7622. false,
  7623. $$("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 }), {
  7624. "id": "aiCourseResource",
  7625. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7626. "onresize": function () { },
  7627. "isdrag": false,
  7628. }, {
  7629. closecallback: function () { }
  7630. }, { "style": { "height": "36px" } }).form; //创建窗体
  7631. _taskbar = ''
  7632. break;
  7633. case "szdjgCocooroboX": //图形化编程
  7634. _formdiv = new U.UF.UI.form(
  7635. "图形化编程",
  7636. $$("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" }), {
  7637. "id": "szdjgCocooroboX",
  7638. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7639. "onresize": function () { }
  7640. }, {
  7641. closecallback: function () { }
  7642. }, { "style": { "height": "36px" } }).form; //创建窗体
  7643. _taskbar = ''
  7644. break;
  7645. case "szdjgPython": //python编程
  7646. _formdiv = new U.UF.UI.form(
  7647. "Python编程",
  7648. $$("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" }), {
  7649. "id": "szdjgPython",
  7650. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7651. "onresize": function () { }
  7652. }, {
  7653. closecallback: function () { }
  7654. }, { "style": { "height": "36px" } }).form; //创建窗体
  7655. _taskbar = ''
  7656. break;
  7657. case "Record":
  7658. _formdiv = new U.UF.UI.form(
  7659. "观察记录",
  7660. $$("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 }), {
  7661. "id": "Record",
  7662. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7663. "onresize": function () { }
  7664. }, {
  7665. closecallback: function () { }
  7666. }, { "style": { "height": "36px" } }).form; //创建窗体
  7667. _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); } }
  7668. break;
  7669. case "aigptCourse":
  7670. _formdiv = new U.UF.UI.form(
  7671. "AI智能体",
  7672. $$("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' }), {
  7673. "id": "aigptCourse",
  7674. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7675. "onresize": function () { }
  7676. }, {
  7677. closecallback: function () { }
  7678. }, { "style": { "height": "36px" } }).form; //创建窗体
  7679. _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); } }
  7680. break;
  7681. case "classroomObservation":
  7682. _formdiv = new U.UF.UI.form(
  7683. "课堂观察",
  7684. $$("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 }), {
  7685. "id": "classroomObservation",
  7686. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7687. "onresize": function () { }
  7688. }, {
  7689. closecallback: function () { }
  7690. }, { "style": { "height": "36px" } }).form; //创建窗体
  7691. _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); } }
  7692. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7693. break;
  7694. case "pblCourse":
  7695. _formdiv = new U.UF.UI.form(
  7696. "学生PBL",
  7697. $$("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 }), {
  7698. "id": "pblCourse",
  7699. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7700. "onresize": function () { }
  7701. }, {
  7702. closecallback: function () { }
  7703. }, { "style": { "height": "36px" } }).form; //创建窗体
  7704. _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); } }
  7705. break;
  7706. case "appStore":
  7707. U.MD.D.addOp('','cocoflowOpen','')
  7708. _formdiv = new U.UF.UI.form(
  7709. "CocoFlow",
  7710. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//app.cocorobo.cn/#/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7711. "id": "appStore",
  7712. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7713. "onresize": function () { }
  7714. }, {
  7715. closecallback: function () { }
  7716. }, { "style": { "height": "36px" } }).form; //创建窗体
  7717. _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); } }
  7718. break;
  7719. case "sassPlatform":
  7720. _formdiv = new U.UF.UI.form(
  7721. "Sass通用后台管理",
  7722. $$("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 }), {
  7723. "id": "sassPlatform",
  7724. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7725. "onresize": function () { }
  7726. }, {
  7727. closecallback: function () { }
  7728. }, { "style": { "height": "36px" } }).form; //创建窗体
  7729. _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); } }
  7730. break;
  7731. case "EDU":
  7732. _formdiv = new U.UF.UI.form(
  7733. "EDU",
  7734. $$("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" }), {
  7735. "id": "EDU",
  7736. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7737. "onresize": function () { }
  7738. }, {
  7739. closecallback: function () { }
  7740. }, { "style": { "height": "36px" } }).form; //创建窗体
  7741. _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); } }
  7742. break;
  7743. case "knowledge":
  7744. _formdiv = new U.UF.UI.form(
  7745. "知识库",
  7746. $$("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 }), {
  7747. "id": "knowledge",
  7748. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7749. "onresize": function () { }
  7750. }, {
  7751. closecallback: function () { }
  7752. }, { "style": { "height": "36px" } }).form; //创建窗体
  7753. _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); } }
  7754. break;
  7755. case "userExamine":
  7756. _formdiv = new U.UF.UI.form(
  7757. "账号申请",
  7758. $$("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" }), {
  7759. "id": "userExamine",
  7760. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7761. "onresize": function () { }
  7762. }, {
  7763. closecallback: function () { }
  7764. }, { "style": { "height": "36px" } }).form; //创建窗体
  7765. break;
  7766. case "cocoflowDeskTop": //cocoflowDeskTop
  7767. _formdiv = new U.UF.UI.form(
  7768. false,
  7769. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//app.cocorobo.cn/#/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7770. "id": "cocoflowDeskTop",
  7771. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7772. "onresize": function () { },
  7773. }, {
  7774. closecallback: function () { },
  7775. "isdrag": false,
  7776. }, { "style": { "height": "36px" } }).form; //创建窗体
  7777. _taskbar = ''
  7778. break;
  7779. case "liyuanLogin": //liyuanLogin
  7780. _formdiv = new U.UF.UI.form(
  7781. false,
  7782. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//liyuan.cocorobo.cn/#/login?org=" + _org + "&oid=" + _oid }), {
  7783. "id": "liyuanLogin",
  7784. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7785. "onresize": function () { },
  7786. }, {
  7787. closecallback: function () { },
  7788. isdrag: false,
  7789. isstretching: false,
  7790. isenlarge: false,
  7791. isnarrow: false
  7792. }, { "style": { "height": "36px" } }).form; //创建窗体
  7793. _taskbar = ''
  7794. break;
  7795. case "updatePaDialog":
  7796. _formdiv = new U.UF.UI.form(
  7797. "密码修改",
  7798. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://invitelogin.cocorobo.cn/#/changePswd?userid=" + _userid }), {
  7799. "id": "updatePaDialog",
  7800. "style": { "width": "450px", "height": "610px", "overflow": 'hidden' },
  7801. "onresize": function () { },
  7802. }, {
  7803. closecallback: function () { },
  7804. isclose: false,
  7805. isdrag: false,
  7806. isstretching: false,
  7807. isenlarge: false,
  7808. isnarrow: false
  7809. }, { "style": { "height": "36px" } }).form; //创建窗体
  7810. break;
  7811. }
  7812. //U.MD.D.I.openClick(str);
  7813. //如果有任务栏信息
  7814. if (_taskbar) {
  7815. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7816. }
  7817. if(iframeBool){
  7818. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7819. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7820. // console.log("iframe进入");
  7821. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7822. // };
  7823. setTimeout(() => {
  7824. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7825. }, 2000);
  7826. }
  7827. }
  7828. U.MD.D.I.openApplicationWai = function (id, url, dom, array) {
  7829. var _formdiv, //创建任务栏时同时弹出的窗体元素。
  7830. _userinfo = US.userInfo, //登录用户信息
  7831. { userid: _userid, organizeid: _oid, type: _type, org: _org, role: _role, classid: _classId } = _userinfo; // 解构赋值获取用户信息
  7832. const _TscreenType = 1, _screenType = 2, _SscreenType = 3; // 常量定义
  7833. let iframeBool = true;
  7834. let queryString = ''
  7835. if(array && array.length){
  7836. const paramsMap = {
  7837. userid: _userid,
  7838. org: _org,
  7839. oid: _oid,
  7840. type: _type,
  7841. role: _role,
  7842. classId: _classId,
  7843. TscreenType: _TscreenType,
  7844. SscreenType: _SscreenType
  7845. };
  7846. const canshu = array
  7847. .filter(param => paramsMap[param] !== undefined)
  7848. .map(param => `${param}=${paramsMap[param]}`);
  7849. queryString = canshu.length ? (url.includes('?') ? '&' : '?') + canshu.join('&') : ''; // 生成查询字符串
  7850. }
  7851. let _url = url + queryString
  7852. if(U.UF.UI.form.allForm[id]){
  7853. iframeBool = false
  7854. }
  7855. _formdiv = new U.UF.UI.form(
  7856. false,
  7857. $$("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 }),
  7858. {
  7859. "id": id,
  7860. "style": { "width": "100%", "height": "100%", "overflow": 'hidden',"position": 'unset',"boxShadow": "unset" },
  7861. "onresize": function () { },
  7862. },
  7863. {
  7864. closecallback: function () { },
  7865. isdrag: false,
  7866. isstretching: false,
  7867. isenlarge: false,
  7868. isnarrow: false
  7869. },
  7870. { "style": { "height": "36px" } },
  7871. undefined,
  7872. undefined,
  7873. dom
  7874. ).form
  7875. }
  7876. // U.MD.D.I.openClick = function(str){
  7877. // var click = '';
  7878. // switch(str){
  7879. // case 'friend':
  7880. // click = '我的好友';
  7881. // break;
  7882. // case 'domain':
  7883. // click = '域名管理';
  7884. // break;
  7885. // case 'disk':
  7886. // click = '我的云盘';
  7887. // break;
  7888. // case 'word':
  7889. // click = 'Word';
  7890. // break;
  7891. // case 'excel':
  7892. // click = 'Execl';
  7893. // break;
  7894. // case 'txt':
  7895. // click = '文本文件';
  7896. // break;
  7897. // case 'lookupFriend':
  7898. // click = '查找好友';
  7899. // break;
  7900. // case 'ftp':
  7901. // click = 'FTP';
  7902. // break;
  7903. // case 'group':
  7904. // click = '群组';
  7905. // break;
  7906. // case 'set':
  7907. // click = '我的设置';
  7908. // break;
  7909. // case 'systemSet':
  7910. // click = '系统设置';
  7911. // break;
  7912. // case 'boomYun':
  7913. // click = '互联办公';
  7914. // break;
  7915. // case 'xz':
  7916. // click = '云端下载';
  7917. // break;
  7918. // case 'client':
  7919. // click = '有思浏览器';
  7920. // break;
  7921. // case 'backEndProgramming':
  7922. // click = '在线后台编程';
  7923. // break;
  7924. // case 'frontEndProgramming':
  7925. // click = '在线前端编程';
  7926. // break;
  7927. // default: break;
  7928. // }
  7929. // if(U.MD.D.I.Ip && click){
  7930. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7931. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7932. // })
  7933. // }
  7934. // }
  7935. /**
  7936. *函数作用:ajax简易函数,使用post格式
  7937. *@param url {data} 后台地址
  7938. *@param data {data} 参数json
  7939. *@param fn {data} 回调函数
  7940. *
  7941. */
  7942. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7943. // var xhr = new XMLHttpRequest();
  7944. // xhr.open("GET",url,true);
  7945. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7946. // xhr.onreadystatechange = function(){
  7947. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7948. // fn.call(this,xhr.responseText);
  7949. // }
  7950. // };
  7951. // xhr.send();
  7952. // }
  7953. /*判断是否是内网IP*/
  7954. // U.MD.D.I.isInnerIPFn = function(str){
  7955. // var curPageUrl = str;
  7956. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7957. // curPageUrl =curPageUrl.replace(reg1,'');
  7958. // // console.log('curPageUrl-1 '+curPageUrl);
  7959. // var reg2 = /\:+/g;//替换冒号为一点
  7960. // curPageUrl =curPageUrl.replace(reg2,'.');
  7961. // // console.log('curPageUrl-2 '+curPageUrl);
  7962. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7963. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7964. // if(curPageUrl[2] != '16'){
  7965. // return ipAddress;
  7966. // }else{
  7967. // return false;
  7968. // }
  7969. // }
  7970. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7971. // //compatibility for firefox and chrome
  7972. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7973. // var pc = new myPeerConnection({
  7974. // iceServers: []
  7975. // }),
  7976. // noop = function() {},
  7977. // localIPs = {},
  7978. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7979. // key;
  7980. // function iterateIP(ip) {
  7981. // if (!localIPs[ip]) onNewIP(ip);
  7982. // localIPs[ip] = true;
  7983. // }
  7984. // //create a bogus data channel
  7985. // pc.createDataChannel("");
  7986. // // create offer and set local description
  7987. // pc.createOffer().then(function(sdp) {
  7988. // sdp.sdp.split('\n').forEach(function(line) {
  7989. // if (line.indexOf('candidate') < 0) return;
  7990. // line.match(ipRegex).forEach(iterateIP);
  7991. // });
  7992. // pc.setLocalDescription(sdp, noop, noop);
  7993. // }).catch(function(reason) {
  7994. // // An error occurred, so handle the failure to connect
  7995. // });
  7996. // //sten for candidate events
  7997. // pc.onicecandidate = function(ice) {
  7998. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7999. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  8000. // };
  8001. // }
  8002. // U.MD.D.I.getUserIpBool = function(callback){
  8003. // U.MD.D.I.getUserIP(function(ip){
  8004. // alert("Got IP! :" + ip);
  8005. // });
  8006. //}
  8007. //#endregion
  8008. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  8009. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8010. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8011. _userinfo = US.userInfo, //登录用户信息
  8012. _userid = US.userInfo.userid //登录用户id
  8013. let _iframe;
  8014. let _cid = cid,
  8015. _stage = stage,
  8016. _task = task,
  8017. _tool = tool;
  8018. var _jie = $$("div", {
  8019. "style": {
  8020. "position": "absolute",
  8021. "bottom": "50px",
  8022. "right": "50px",
  8023. "zIndex": "9999",
  8024. "backgroundColor": "#2268bc",
  8025. "color": "#fff",
  8026. "padding": "12px 20px",
  8027. "cursor": "pointer",
  8028. "borderRadius": "4px",
  8029. },
  8030. "innerHTML": "提交作业"
  8031. })
  8032. let aTool = ''
  8033. let _loading = document.createElement('div')
  8034. _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;"
  8035. // _loading.id = "";
  8036. let _lchild = document.createElement('div')
  8037. let _limg = document.createElement('img')
  8038. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8039. _limg.style = "width: 26px;margin-right: 10px;"
  8040. _lchild.appendChild(_limg)
  8041. let _lspan = document.createElement('span')
  8042. _lspan.innerHTML = "上传中..."
  8043. _lchild.appendChild(_lspan)
  8044. _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%);"
  8045. _loading.appendChild(_lchild)
  8046. var _box = $$('div', {
  8047. "style": {
  8048. "position": "relative",
  8049. "width": "100%",
  8050. "height": "100%",
  8051. },
  8052. })
  8053. _box.appendChild(_loading)
  8054. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  8055. switch (str) {
  8056. case "whiteboard":
  8057. aTool = 1;
  8058. _iframe = $$("iframe", {
  8059. "frameborder": "no",
  8060. "border": "0",
  8061. "scrolling ": "no",
  8062. "style": {
  8063. "cssText": "border:0;width:100%;height:100%"
  8064. },
  8065. "src": "https://beta.iwb.cocorobo.cn/"
  8066. })
  8067. _box.appendChild(_iframe);
  8068. _box.appendChild(_jie);
  8069. _formdiv = new U.UF.UI.form(
  8070. "电子白板",
  8071. _box, {
  8072. "id": "whiteboard" + cid + stage + task + tool,
  8073. "style": {
  8074. "width": "90%",
  8075. "height": "90%",
  8076. "overflow": 'hidden'
  8077. },
  8078. "onresize": function () { }
  8079. }, {
  8080. closecallback: function () { }
  8081. }, {
  8082. "style": {
  8083. "height": "36px"
  8084. }
  8085. }).form; //创建窗体
  8086. _taskbar = {
  8087. "id": str + _formdiv.id,
  8088. "style": {
  8089. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8090. },
  8091. "name": "电子白板",
  8092. "forms": _formdiv,
  8093. "click": function () {
  8094. U.MD.D.I.openApplication(str, obj, info);
  8095. }
  8096. }
  8097. break;
  8098. case "mind":
  8099. aTool = 3;
  8100. _iframe = $$("iframe", {
  8101. "frameborder": "no",
  8102. "border": "0",
  8103. "scrolling ": "no",
  8104. "style": {
  8105. "cssText": "border:0;width:100%;height:100%"
  8106. },
  8107. "src": "/kityminder-editor/dist/index.html"
  8108. })
  8109. _box.appendChild(_iframe);
  8110. _box.appendChild(_jie);
  8111. _formdiv = new U.UF.UI.form(
  8112. "思维导图",
  8113. _box, { //"/jsmind/example/demo.html"
  8114. "id": "mind" + cid + stage + task + tool,
  8115. "style": {
  8116. "width": "90%",
  8117. "height": "90%",
  8118. "overflow": 'hidden'
  8119. },
  8120. "onresize": function () { }
  8121. }, {
  8122. closecallback: function () { }
  8123. }, {
  8124. "style": {
  8125. "height": "36px"
  8126. }
  8127. }).form; //创建窗体
  8128. _taskbar = {
  8129. "id": str + _formdiv.id,
  8130. "style": {
  8131. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8132. },
  8133. "name": "思维导图",
  8134. "forms": _formdiv,
  8135. "click": function () {
  8136. U.MD.D.I.openApplication(str, obj, info);
  8137. }
  8138. }
  8139. break;
  8140. case "MindMap":
  8141. aTool = 3;
  8142. _iframe = $$("iframe", {
  8143. "frameborder": "no",
  8144. "border": "0",
  8145. "scrolling ": "no",
  8146. "style": {
  8147. "cssText": "border:0;width:100%;height:100%"
  8148. },
  8149. "src": "//cloud.cocorobo.cn/mind/"
  8150. })
  8151. _box.appendChild(_iframe);
  8152. _box.appendChild(_jie);
  8153. _formdiv = new U.UF.UI.form(
  8154. "思维导图",
  8155. _box, { //"/jsmind/example/demo.html"
  8156. "id": "mind" + cid + stage + task + tool,
  8157. "style": {
  8158. "width": "90%",
  8159. "height": "90%",
  8160. "overflow": 'hidden'
  8161. },
  8162. "onresize": function () { }
  8163. }, {
  8164. closecallback: function () { }
  8165. }, {
  8166. "style": {
  8167. "height": "36px"
  8168. }
  8169. }).form; //创建窗体
  8170. _taskbar = {
  8171. "id": str + _formdiv.id,
  8172. "style": {
  8173. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8174. },
  8175. "name": "思维导图",
  8176. "forms": _formdiv,
  8177. "click": function () {
  8178. U.MD.D.I.openApplication(str, obj, info);
  8179. }
  8180. }
  8181. break;
  8182. case "doc":
  8183. aTool = 6;
  8184. _iframe = $$("iframe", {
  8185. "frameborder": "no",
  8186. "border": "0",
  8187. "scrolling ": "no",
  8188. "style": {
  8189. "cssText": "border:0;width:100%;height:100%"
  8190. },
  8191. "src": "/Office/Word/WordEditArea.htm"
  8192. })
  8193. _box.appendChild(_iframe);
  8194. _box.appendChild(_jie);
  8195. _formdiv = new U.UF.UI.form(
  8196. "协同文档",
  8197. _box, {
  8198. "id": "doc" + cid + stage + task + tool,
  8199. "style": {
  8200. "width": "90%",
  8201. "height": "90%",
  8202. "overflow": 'hidden'
  8203. },
  8204. "onresize": function () { }
  8205. }, {
  8206. closecallback: function () { }
  8207. }, {
  8208. "style": {
  8209. "height": "36px"
  8210. }
  8211. }).form; //创建窗体
  8212. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8213. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8214. })
  8215. _taskbar = {
  8216. "id": str + _formdiv.id,
  8217. "style": {
  8218. "backgroundImage": "url(/img/icon/doc.png)"
  8219. },
  8220. "name": "协同文档",
  8221. "forms": _formdiv,
  8222. "click": function () {
  8223. U.MD.D.I.openApplication(str, obj, info);
  8224. }
  8225. }
  8226. break;
  8227. case "mindNetwork": //好友打开
  8228. aTool = 7;
  8229. _iframe = $$("iframe", {
  8230. "webkitallowfullscreen": "",
  8231. "mozallowfullscreen": "",
  8232. "allowfullscreen": "",
  8233. "frameborder": "no",
  8234. "border": "0",
  8235. "scrolling ": "no",
  8236. "style": {
  8237. "cssText": "border:0; width:100%; height:100%;"
  8238. },
  8239. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8240. })
  8241. _box.appendChild(_iframe);
  8242. _box.appendChild(_jie);
  8243. _formdiv = new U.UF.UI.form(
  8244. "思维网格",
  8245. _box, {
  8246. "id": "mindNetwork" + cid + stage + task + tool,
  8247. "style": {
  8248. "width": "90%",
  8249. "height": "90%",
  8250. "overflow": 'hidden'
  8251. },
  8252. "onresize": function () { }
  8253. }, {
  8254. closecallback: function () { }
  8255. }, {
  8256. "style": {
  8257. "height": "36px"
  8258. }
  8259. }).form; //创建窗体
  8260. _taskbar = {
  8261. "id": str + _formdiv.id,
  8262. "style": {
  8263. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8264. },
  8265. "name": "思维网格",
  8266. "forms": _formdiv,
  8267. "click": function () {
  8268. U.MD.D.I.openApplication(str, obj, info);
  8269. }
  8270. }
  8271. break;
  8272. case "courseDesign":
  8273. _iframe = $$("iframe", {
  8274. "webkitallowfullscreen": "",
  8275. "mozallowfullscreen": "",
  8276. "allowfullscreen": "",
  8277. "frameborder": "no",
  8278. "border": "0",
  8279. "scrolling ": "no",
  8280. "style": {
  8281. "cssText": "border:0; width:100%; height:100%;"
  8282. },
  8283. "src": "/course-design-vue"
  8284. })
  8285. _box.appendChild(_iframe);
  8286. _box.appendChild(_jie);
  8287. _formdiv = new U.UF.UI.form(
  8288. "项目设计",
  8289. _box, {
  8290. "id": "courseDesign" + cid + stage + task + tool,
  8291. "style": {
  8292. "width": "90%",
  8293. "height": "90%",
  8294. "overflow": 'hidden'
  8295. },
  8296. "onresize": function () { }
  8297. }, {
  8298. closecallback: function () { }
  8299. }, {
  8300. "style": {
  8301. "height": "36px"
  8302. }
  8303. }).form; //创建窗体
  8304. _taskbar = {
  8305. "id": str + _formdiv.id,
  8306. "style": {
  8307. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8308. },
  8309. "name": "项目设计",
  8310. "forms": _formdiv,
  8311. "click": function () {
  8312. U.MD.D.I.openApplication(str, obj, info);
  8313. }
  8314. }
  8315. break;
  8316. }
  8317. const script1 = document.createElement("script");
  8318. script1.type = "text/javascript";
  8319. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8320. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8321. const script2 = document.createElement("script");
  8322. script2.type = "text/javascript";
  8323. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8324. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8325. const script3 = document.createElement("script");
  8326. script3.type = "text/javascript";
  8327. script3.charset = "UTF-8";
  8328. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8329. const script4 = document.createElement("script");
  8330. script4.type = "text/javascript";
  8331. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8332. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8333. if (_iframe) {
  8334. if (str == 'doc') {
  8335. _iframe = _formdiv.querySelector('iframe')
  8336. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8337. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8338. _iframe.contentWindow.document.body.appendChild(script1);
  8339. _iframe.contentWindow.document.body.appendChild(script2);
  8340. // _iframe.contentWindow.document.body.appendChild(script3);
  8341. _iframe.contentWindow.document.body.appendChild(script4);
  8342. })
  8343. if (onloadListener) {
  8344. _iframe.contentDocument.location.reload()
  8345. } else {
  8346. _iframe.contentDocument.location.reload()
  8347. }
  8348. } else if (str == 'courseDesign') {
  8349. U.UF.DL.iframeLoad(_iframe, function () {
  8350. // _iframe.contentWindow.U.MD.O.W.load();
  8351. // _iframe.contentWindow.document.body.appendChild(script1);
  8352. _iframe.contentWindow.document.body.appendChild(script2);
  8353. _iframe.contentWindow.document.body.appendChild(script4);
  8354. })
  8355. } else if (str == 'mind') {
  8356. _iframe = _formdiv.querySelector('iframe')
  8357. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8358. //
  8359. _iframe.contentWindow.document.body.appendChild(script1);
  8360. _iframe.contentWindow.document.body.appendChild(script2);
  8361. _iframe.contentWindow.document.body.appendChild(script4);
  8362. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8363. })
  8364. if (onloadListener) {
  8365. _iframe.contentDocument.location.reload()
  8366. } else {
  8367. _iframe.contentDocument.location.reload()
  8368. }
  8369. } else if (str == 'whiteboard') {
  8370. _iframe = _formdiv.querySelector('iframe')
  8371. let onloadListener = _iframe.onload = () => {
  8372. _iframe.contentWindow.document.body.appendChild(script1);
  8373. _iframe.contentWindow.document.body.appendChild(script2);
  8374. _iframe.contentWindow.document.body.appendChild(script4);
  8375. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8376. };
  8377. // if (onloadListener) {
  8378. // try {
  8379. // _iframe.src += "?cocorobo="+new Date().getTime()
  8380. // _iframe.contentWindow.document.location.reload()
  8381. // } catch (error) {
  8382. // }
  8383. // } else {
  8384. // _iframe.contentDocument.location.reload()
  8385. // }
  8386. } else {
  8387. _iframe.onload = () => {
  8388. _iframe.contentWindow.document.body.appendChild(script1);
  8389. _iframe.contentWindow.document.body.appendChild(script2);
  8390. // _iframe.contentWindow.document.body.appendChild(script3);
  8391. _iframe.contentWindow.document.body.appendChild(script4);
  8392. };
  8393. }
  8394. _jie.onclick = async () => {
  8395. let text = ''
  8396. if (aTool == 1) {
  8397. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8398. } else if (aTool == 6) {
  8399. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8400. } else if (aTool == 3) {
  8401. text = await U.MD.D.I.getEditorContent(_iframe);
  8402. }
  8403. _loading.style.display = 'flex'
  8404. console.log(_loading);
  8405. var _ajs = _iframe.contentWindow.document.createElement("script");
  8406. _ajs.type = "text/javascript";
  8407. _ajs.innerHTML =
  8408. // 'console.log(' + _loading + ');\n' +
  8409. 'var _js = document.createElement("script");\n' +
  8410. '_js.type="text/javascript";\n' +
  8411. '_js.charset="UTF-8";\n' +
  8412. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8413. "_js.onload = function(){\n" +
  8414. ' var a = document.getElementsByTagName("img")\n' +
  8415. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8416. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8417. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8418. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8419. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8420. "beforeUpload_shishi(file," +
  8421. "'" +
  8422. _userid +
  8423. "'" +
  8424. ", " +
  8425. "'" +
  8426. _cid +
  8427. "'" +
  8428. ", " +
  8429. "'" +
  8430. _stage +
  8431. "'" +
  8432. ", " +
  8433. "'" +
  8434. _task +
  8435. "'" +
  8436. ", " +
  8437. "'" +
  8438. _tool +
  8439. "'" +
  8440. ", " +
  8441. "'" +
  8442. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  8443. "'" +
  8444. ", " +
  8445. "'" +
  8446. aTool +
  8447. "'" +
  8448. ", " +
  8449. "`" +
  8450. text +
  8451. "`" +
  8452. ")\n" +
  8453. " });\n" +
  8454. "}\n" +
  8455. "document.head.appendChild(_js);\n";
  8456. _iframe.contentWindow.document.head.appendChild(_ajs);
  8457. }
  8458. }
  8459. //U.MD.D.I.openClick(str);
  8460. //如果有任务栏信息
  8461. // if (_taskbar) {
  8462. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8463. // }
  8464. }
  8465. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  8466. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8467. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8468. _userinfo = US.userInfo, //登录用户信息
  8469. _userid = US.userInfo.userid //登录用户id
  8470. let _iframe;
  8471. let _cid = cid,
  8472. _stage = stage,
  8473. _task = task,
  8474. _tool = tool;
  8475. var _jie = $$("div", {
  8476. "style": {
  8477. "position": "absolute",
  8478. "bottom": "50px",
  8479. "right": "50px",
  8480. "zIndex": "9999",
  8481. "backgroundColor": "#2268bc",
  8482. "color": "#fff",
  8483. "padding": "12px 20px",
  8484. "cursor": "pointer",
  8485. "borderRadius": "4px",
  8486. },
  8487. "innerHTML": "提交作业"
  8488. })
  8489. let aTool = ''
  8490. let _loading = document.createElement('div')
  8491. _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;"
  8492. // _loading.id = "";
  8493. let _lchild = document.createElement('div')
  8494. let _limg = document.createElement('img')
  8495. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8496. _limg.style = "width: 26px;margin-right: 10px;"
  8497. _lchild.appendChild(_limg)
  8498. let _lspan = document.createElement('span')
  8499. _lspan.innerHTML = "上传中..."
  8500. _lchild.appendChild(_lspan)
  8501. _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%);"
  8502. _loading.appendChild(_lchild)
  8503. let _box = $$('div', {
  8504. "style": {
  8505. "position": "relative",
  8506. "width": "100%",
  8507. "height": "100%",
  8508. },
  8509. })
  8510. _box.appendChild(_loading)
  8511. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  8512. switch (str) {
  8513. case "whiteboard":
  8514. aTool = 1;
  8515. _iframe = $$("iframe", {
  8516. "frameborder": "no",
  8517. "border": "0",
  8518. "scrolling ": "no",
  8519. "style": {
  8520. "cssText": "border:0;width:100%;height:100%"
  8521. },
  8522. "src": "https://beta.iwb.cocorobo.cn/"
  8523. })
  8524. _box.appendChild(_iframe);
  8525. _box.appendChild(_jie);
  8526. _formdiv = new U.UF.UI.form(
  8527. "电子白板",
  8528. _box, {
  8529. "id": "whiteboard" + cid + stage + task + tool,
  8530. "style": {
  8531. "width": "90%",
  8532. "height": "90%",
  8533. "overflow": 'hidden'
  8534. },
  8535. "onresize": function () { }
  8536. }, {
  8537. closecallback: function () { }
  8538. }, {
  8539. "style": {
  8540. "height": "36px"
  8541. }
  8542. }).form; //创建窗体
  8543. _taskbar = {
  8544. "id": str + _formdiv.id,
  8545. "style": {
  8546. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8547. },
  8548. "name": "电子白板",
  8549. "forms": _formdiv,
  8550. "click": function () {
  8551. U.MD.D.I.openApplication(str, obj, info);
  8552. }
  8553. }
  8554. break;
  8555. case "mind":
  8556. aTool = 3;
  8557. _iframe = $$("iframe", {
  8558. "frameborder": "no",
  8559. "border": "0",
  8560. "scrolling ": "no",
  8561. "style": {
  8562. "cssText": "border:0;width:100%;height:100%"
  8563. },
  8564. "src": "/kityminder-editor/dist/index.html"
  8565. })
  8566. _box.appendChild(_iframe);
  8567. _box.appendChild(_jie);
  8568. _formdiv = new U.UF.UI.form(
  8569. "思维导图",
  8570. _box, { //"/jsmind/example/demo.html"
  8571. "id": "mind" + cid + stage + task + tool,
  8572. "style": {
  8573. "width": "90%",
  8574. "height": "90%",
  8575. "overflow": 'hidden'
  8576. },
  8577. "onresize": function () { }
  8578. }, {
  8579. closecallback: function () { }
  8580. }, {
  8581. "style": {
  8582. "height": "36px"
  8583. }
  8584. }).form; //创建窗体
  8585. _taskbar = {
  8586. "id": str + _formdiv.id,
  8587. "style": {
  8588. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8589. },
  8590. "name": "思维导图",
  8591. "forms": _formdiv,
  8592. "click": function () {
  8593. U.MD.D.I.openApplication(str, obj, info);
  8594. }
  8595. }
  8596. break;
  8597. case "MindMap":
  8598. aTool = 3;
  8599. _iframe = $$("iframe", {
  8600. "frameborder": "no",
  8601. "border": "0",
  8602. "scrolling ": "no",
  8603. "style": {
  8604. "cssText": "border:0;width:100%;height:100%"
  8605. },
  8606. "src": "//cloud.cocorobo.cn/mind/"
  8607. })
  8608. _box.appendChild(_iframe);
  8609. _box.appendChild(_jie);
  8610. _formdiv = new U.UF.UI.form(
  8611. "思维导图",
  8612. _box, { //"/jsmind/example/demo.html"
  8613. "id": "mind" + cid + stage + task + tool,
  8614. "style": {
  8615. "width": "90%",
  8616. "height": "90%",
  8617. "overflow": 'hidden'
  8618. },
  8619. "onresize": function () { }
  8620. }, {
  8621. closecallback: function () { }
  8622. }, {
  8623. "style": {
  8624. "height": "36px"
  8625. }
  8626. }).form; //创建窗体
  8627. _taskbar = {
  8628. "id": str + _formdiv.id,
  8629. "style": {
  8630. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8631. },
  8632. "name": "思维导图",
  8633. "forms": _formdiv,
  8634. "click": function () {
  8635. U.MD.D.I.openApplication(str, obj, info);
  8636. }
  8637. }
  8638. break;
  8639. case "doc":
  8640. aTool = 6;
  8641. _iframe = $$("iframe", {
  8642. "frameborder": "no",
  8643. "border": "0",
  8644. "scrolling ": "no",
  8645. "style": {
  8646. "cssText": "border:0;width:100%;height:100%"
  8647. },
  8648. "src": "/Office/Word/WordEditArea.htm"
  8649. })
  8650. _box.appendChild(_iframe);
  8651. _box.appendChild(_jie);
  8652. _formdiv = new U.UF.UI.form(
  8653. "协同文档",
  8654. _box, {
  8655. "id": "doc" + cid + stage + task + tool,
  8656. "style": {
  8657. "width": "90%",
  8658. "height": "90%",
  8659. "overflow": 'hidden'
  8660. },
  8661. "onresize": function () { }
  8662. }, {
  8663. closecallback: function () { }
  8664. }, {
  8665. "style": {
  8666. "height": "36px"
  8667. }
  8668. }).form; //创建窗体
  8669. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8670. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8671. })
  8672. _taskbar = {
  8673. "id": str + _formdiv.id,
  8674. "style": {
  8675. "backgroundImage": "url(/img/icon/doc.png)"
  8676. },
  8677. "name": "协同文档",
  8678. "forms": _formdiv,
  8679. "click": function () {
  8680. U.MD.D.I.openApplication(str, obj, info);
  8681. }
  8682. }
  8683. break;
  8684. case "mindNetwork": //好友打开
  8685. aTool = 7;
  8686. _iframe = $$("iframe", {
  8687. "webkitallowfullscreen": "",
  8688. "mozallowfullscreen": "",
  8689. "allowfullscreen": "",
  8690. "frameborder": "no",
  8691. "border": "0",
  8692. "scrolling ": "no",
  8693. "style": {
  8694. "cssText": "border:0; width:100%; height:100%;"
  8695. },
  8696. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8697. })
  8698. _box.appendChild(_iframe);
  8699. _box.appendChild(_jie);
  8700. _formdiv = new U.UF.UI.form(
  8701. "思维网格",
  8702. _box, {
  8703. "id": "mindNetwork" + cid + stage + task + tool,
  8704. "style": {
  8705. "width": "90%",
  8706. "height": "90%",
  8707. "overflow": 'hidden'
  8708. },
  8709. "onresize": function () { }
  8710. }, {
  8711. closecallback: function () { }
  8712. }, {
  8713. "style": {
  8714. "height": "36px"
  8715. }
  8716. }).form; //创建窗体
  8717. _taskbar = {
  8718. "id": str + _formdiv.id,
  8719. "style": {
  8720. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8721. },
  8722. "name": "思维网格",
  8723. "forms": _formdiv,
  8724. "click": function () {
  8725. U.MD.D.I.openApplication(str, obj, info);
  8726. }
  8727. }
  8728. break;
  8729. case "courseDesign":
  8730. _iframe = $$("iframe", {
  8731. "webkitallowfullscreen": "",
  8732. "mozallowfullscreen": "",
  8733. "allowfullscreen": "",
  8734. "frameborder": "no",
  8735. "border": "0",
  8736. "scrolling ": "no",
  8737. "style": {
  8738. "cssText": "border:0; width:100%; height:100%;"
  8739. },
  8740. "src": "/course-design-vue"
  8741. })
  8742. _box.appendChild(_iframe);
  8743. _box.appendChild(_jie);
  8744. _formdiv = new U.UF.UI.form(
  8745. "项目设计",
  8746. _box, {
  8747. "id": "courseDesign" + cid + stage + task + tool,
  8748. "style": {
  8749. "width": "90%",
  8750. "height": "90%",
  8751. "overflow": 'hidden'
  8752. },
  8753. "onresize": function () { }
  8754. }, {
  8755. closecallback: function () { }
  8756. }, {
  8757. "style": {
  8758. "height": "36px"
  8759. }
  8760. }).form; //创建窗体
  8761. _taskbar = {
  8762. "id": str + _formdiv.id,
  8763. "style": {
  8764. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8765. },
  8766. "name": "项目设计",
  8767. "forms": _formdiv,
  8768. "click": function () {
  8769. U.MD.D.I.openApplication(str, obj, info);
  8770. }
  8771. }
  8772. break;
  8773. }
  8774. const script1 = document.createElement("script");
  8775. script1.type = "text/javascript";
  8776. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8777. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8778. const script2 = document.createElement("script");
  8779. script2.type = "text/javascript";
  8780. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8781. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8782. const script3 = document.createElement("script");
  8783. script3.type = "text/javascript";
  8784. script3.charset = "UTF-8";
  8785. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8786. const script4 = document.createElement("script");
  8787. script4.type = "text/javascript";
  8788. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8789. script4.src = window.origin + "/js/Common/jietu2E.js";
  8790. if (_iframe) {
  8791. if (str == 'doc') {
  8792. _iframe = _formdiv.querySelector('iframe')
  8793. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8794. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8795. _iframe.contentWindow.document.body.appendChild(script1);
  8796. _iframe.contentWindow.document.body.appendChild(script2);
  8797. // _iframe.contentWindow.document.body.appendChild(script3);
  8798. _iframe.contentWindow.document.body.appendChild(script4);
  8799. })
  8800. if (onloadListener) {
  8801. _iframe.contentDocument.location.reload()
  8802. } else {
  8803. _iframe.contentDocument.location.reload()
  8804. }
  8805. } else if (str == 'courseDesign') {
  8806. U.UF.DL.iframeLoad(_iframe, function () {
  8807. // _iframe.contentWindow.U.MD.O.W.load();
  8808. // _iframe.contentWindow.document.body.appendChild(script1);
  8809. _iframe.contentWindow.document.body.appendChild(script2);
  8810. _iframe.contentWindow.document.body.appendChild(script4);
  8811. })
  8812. } else if (str == 'mind') {
  8813. _iframe = _formdiv.querySelector('iframe')
  8814. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8815. //
  8816. _iframe.contentWindow.document.body.appendChild(script1);
  8817. _iframe.contentWindow.document.body.appendChild(script2);
  8818. _iframe.contentWindow.document.body.appendChild(script4);
  8819. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8820. })
  8821. if (onloadListener) {
  8822. _iframe.contentDocument.location.reload()
  8823. } else {
  8824. _iframe.contentDocument.location.reload()
  8825. }
  8826. } else if (str == 'whiteboard') {
  8827. _iframe = _formdiv.querySelector('iframe')
  8828. let onloadListener = _iframe.onload = () => {
  8829. _iframe.contentWindow.document.body.appendChild(script1);
  8830. _iframe.contentWindow.document.body.appendChild(script2);
  8831. _iframe.contentWindow.document.body.appendChild(script4);
  8832. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8833. };
  8834. // if (onloadListener) {
  8835. // try {
  8836. // _iframe.src += "?cocorobo="+new Date().getTime()
  8837. // _iframe.contentWindow.document.location.reload()
  8838. // } catch (error) {
  8839. // }
  8840. // } else {
  8841. // _iframe.contentDocument.location.reload()
  8842. // }
  8843. } else {
  8844. _iframe.onload = () => {
  8845. _iframe.contentWindow.document.body.appendChild(script1);
  8846. _iframe.contentWindow.document.body.appendChild(script2);
  8847. // _iframe.contentWindow.document.body.appendChild(script3);
  8848. _iframe.contentWindow.document.body.appendChild(script4);
  8849. };
  8850. }
  8851. _jie.onclick = async () => {
  8852. let text = ''
  8853. if (aTool == 1) {
  8854. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8855. } else if (aTool == 6) {
  8856. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8857. } else if (aTool == 3) {
  8858. text = await U.MD.D.I.getEditorContent(_iframe);
  8859. }
  8860. _loading.style.display = 'flex'
  8861. console.log(_loading);
  8862. var _ajs = _iframe.contentWindow.document.createElement("script");
  8863. _ajs.type = "text/javascript";
  8864. _ajs.innerHTML =
  8865. // 'console.log(' + _loading + ');\n' +
  8866. 'var _js = document.createElement("script");\n' +
  8867. '_js.type="text/javascript";\n' +
  8868. '_js.charset="UTF-8";\n' +
  8869. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8870. "_js.onload = function(){\n" +
  8871. ' var a = document.getElementsByTagName("img")\n' +
  8872. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8873. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8874. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8875. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8876. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8877. "beforeUpload_shishi(file," +
  8878. "'" +
  8879. _userid +
  8880. "'" +
  8881. ", " +
  8882. "'" +
  8883. _cid +
  8884. "'" +
  8885. ", " +
  8886. "'" +
  8887. _stage +
  8888. "'" +
  8889. ", " +
  8890. "'" +
  8891. _task +
  8892. "'" +
  8893. ", " +
  8894. "'" +
  8895. _tool +
  8896. "'" +
  8897. ", " +
  8898. "'" +
  8899. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8900. "'" +
  8901. ", " +
  8902. "'" +
  8903. aTool +
  8904. "'" +
  8905. ", " +
  8906. "`" +
  8907. text +
  8908. "`" +
  8909. ")\n" +
  8910. " });\n" +
  8911. "}\n" +
  8912. "document.head.appendChild(_js);\n";
  8913. _iframe.contentWindow.document.head.appendChild(_ajs);
  8914. }
  8915. }
  8916. //U.MD.D.I.openClick(str);
  8917. //如果有任务栏信息
  8918. // if (_taskbar) {
  8919. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8920. // }
  8921. }
  8922. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8923. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8924. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8925. _userid = student.userid, //登录用户id
  8926. _username = student.student //用户名字
  8927. let _iframe;
  8928. let _cid = cid,
  8929. _stage = stage,
  8930. _task = task,
  8931. _tool = tool;
  8932. var _jie = $$("div", {
  8933. "style": {
  8934. "position": "absolute",
  8935. "bottom": "50px",
  8936. "right": "50px",
  8937. "zIndex": "9999",
  8938. "backgroundColor": "#2268bc",
  8939. "color": "#fff",
  8940. "padding": "12px 20px",
  8941. "cursor": "pointer",
  8942. "borderRadius": "4px",
  8943. },
  8944. "innerHTML": "提交作业"
  8945. })
  8946. let aTool = ''
  8947. let _loading = document.createElement('div')
  8948. _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;"
  8949. // _loading.id = "";
  8950. let _lchild = document.createElement('div')
  8951. let _limg = document.createElement('img')
  8952. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8953. _limg.style = "width: 26px;margin-right: 10px;"
  8954. _lchild.appendChild(_limg)
  8955. let _lspan = document.createElement('span')
  8956. _lspan.innerHTML = "上传中..."
  8957. _lchild.appendChild(_lspan)
  8958. _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%);"
  8959. _loading.appendChild(_lchild)
  8960. var _box = $$('div', {
  8961. "style": {
  8962. "position": "relative",
  8963. "width": "100%",
  8964. "height": "100%",
  8965. },
  8966. })
  8967. _box.appendChild(_loading)
  8968. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8969. switch (str) {
  8970. case "whiteboard":
  8971. aTool = 1;
  8972. _iframe = $$("iframe", {
  8973. "frameborder": "no",
  8974. "border": "0",
  8975. "scrolling ": "no",
  8976. "style": {
  8977. "cssText": "border:0;width:100%;height:100%"
  8978. },
  8979. "src": "https://beta.iwb.cocorobo.cn/"
  8980. })
  8981. _box.appendChild(_iframe);
  8982. _box.appendChild(_jie);
  8983. _formdiv = new U.UF.UI.form(
  8984. "电子白板-" + _username,
  8985. _box, {
  8986. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8987. "style": {
  8988. "width": "90%",
  8989. "height": "90%",
  8990. "overflow": 'hidden'
  8991. },
  8992. "onresize": function () { }
  8993. }, {
  8994. closecallback: function () { }
  8995. }, {
  8996. "style": {
  8997. "height": "36px"
  8998. }
  8999. }).form; //创建窗体
  9000. _taskbar = {
  9001. "id": str + _formdiv.id,
  9002. "style": {
  9003. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9004. },
  9005. "name": "电子白板",
  9006. "forms": _formdiv,
  9007. "click": function () {
  9008. U.MD.D.I.openApplication(str, obj, info);
  9009. }
  9010. }
  9011. break;
  9012. case "mind":
  9013. aTool = 3;
  9014. _iframe = $$("iframe", {
  9015. "frameborder": "no",
  9016. "border": "0",
  9017. "scrolling ": "no",
  9018. "style": {
  9019. "cssText": "border:0;width:100%;height:100%"
  9020. },
  9021. "src": "/kityminder-editor/dist/index.html"
  9022. })
  9023. _box.appendChild(_iframe);
  9024. _box.appendChild(_jie);
  9025. _formdiv = new U.UF.UI.form(
  9026. "思维导图-" + _username,
  9027. _box, { //"/jsmind/example/demo.html"
  9028. "id": "mind" + cid + stage + task + tool + _userid,
  9029. "style": {
  9030. "width": "90%",
  9031. "height": "90%",
  9032. "overflow": 'hidden'
  9033. },
  9034. "onresize": function () { }
  9035. }, {
  9036. closecallback: function () { }
  9037. }, {
  9038. "style": {
  9039. "height": "36px"
  9040. }
  9041. }).form; //创建窗体
  9042. _taskbar = {
  9043. "id": str + _formdiv.id,
  9044. "style": {
  9045. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9046. },
  9047. "name": "思维导图",
  9048. "forms": _formdiv,
  9049. "click": function () {
  9050. U.MD.D.I.openApplication(str, obj, info);
  9051. }
  9052. }
  9053. break;
  9054. case "MindMap":
  9055. aTool = 3;
  9056. _iframe = $$("iframe", {
  9057. "frameborder": "no",
  9058. "border": "0",
  9059. "scrolling ": "no",
  9060. "style": {
  9061. "cssText": "border:0;width:100%;height:100%"
  9062. },
  9063. "src": "//cloud.cocorobo.cn/mind/"
  9064. })
  9065. _box.appendChild(_iframe);
  9066. _box.appendChild(_jie);
  9067. _formdiv = new U.UF.UI.form(
  9068. "思维导图-" + _username,
  9069. _box, { //"/jsmind/example/demo.html"
  9070. "id": "mind" + cid + stage + task + tool + _userid,
  9071. "style": {
  9072. "width": "90%",
  9073. "height": "90%",
  9074. "overflow": 'hidden'
  9075. },
  9076. "onresize": function () { }
  9077. }, {
  9078. closecallback: function () { }
  9079. }, {
  9080. "style": {
  9081. "height": "36px"
  9082. }
  9083. }).form; //创建窗体
  9084. _taskbar = {
  9085. "id": str + _formdiv.id,
  9086. "style": {
  9087. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9088. },
  9089. "name": "思维导图",
  9090. "forms": _formdiv,
  9091. "click": function () {
  9092. U.MD.D.I.openApplication(str, obj, info);
  9093. }
  9094. }
  9095. break;
  9096. case "doc":
  9097. aTool = 6;
  9098. _iframe = $$("iframe", {
  9099. "frameborder": "no",
  9100. "border": "0",
  9101. "scrolling ": "no",
  9102. "style": {
  9103. "cssText": "border:0;width:100%;height:100%"
  9104. },
  9105. "src": "/Office/Word/WordEditArea.htm"
  9106. })
  9107. _box.appendChild(_iframe);
  9108. _box.appendChild(_jie);
  9109. _formdiv = new U.UF.UI.form(
  9110. "协同文档-" + _username,
  9111. _box, {
  9112. "id": "doc" + cid + stage + task + tool + _userid,
  9113. "style": {
  9114. "width": "90%",
  9115. "height": "90%",
  9116. "overflow": 'hidden'
  9117. },
  9118. "onresize": function () { }
  9119. }, {
  9120. closecallback: function () { }
  9121. }, {
  9122. "style": {
  9123. "height": "36px"
  9124. }
  9125. }).form; //创建窗体
  9126. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9127. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9128. })
  9129. _taskbar = {
  9130. "id": str + _formdiv.id,
  9131. "style": {
  9132. "backgroundImage": "url(/img/icon/doc.png)"
  9133. },
  9134. "name": "协同文档",
  9135. "forms": _formdiv,
  9136. "click": function () {
  9137. U.MD.D.I.openApplication(str, obj, info);
  9138. }
  9139. }
  9140. break;
  9141. case "mindNetwork": //好友打开
  9142. aTool = 7;
  9143. _iframe = $$("iframe", {
  9144. "webkitallowfullscreen": "",
  9145. "mozallowfullscreen": "",
  9146. "allowfullscreen": "",
  9147. "frameborder": "no",
  9148. "border": "0",
  9149. "scrolling ": "no",
  9150. "style": {
  9151. "cssText": "border:0; width:100%; height:100%;"
  9152. },
  9153. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9154. })
  9155. _box.appendChild(_iframe);
  9156. _box.appendChild(_jie);
  9157. _formdiv = new U.UF.UI.form(
  9158. "思维网格-" + _username,
  9159. _box, {
  9160. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9161. "style": {
  9162. "width": "90%",
  9163. "height": "90%",
  9164. "overflow": 'hidden'
  9165. },
  9166. "onresize": function () { }
  9167. }, {
  9168. closecallback: function () { }
  9169. }, {
  9170. "style": {
  9171. "height": "36px"
  9172. }
  9173. }).form; //创建窗体
  9174. _taskbar = {
  9175. "id": str + _formdiv.id,
  9176. "style": {
  9177. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9178. },
  9179. "name": "思维网格",
  9180. "forms": _formdiv,
  9181. "click": function () {
  9182. U.MD.D.I.openApplication(str, obj, info);
  9183. }
  9184. }
  9185. break;
  9186. case "courseDesign":
  9187. _iframe = $$("iframe", {
  9188. "webkitallowfullscreen": "",
  9189. "mozallowfullscreen": "",
  9190. "allowfullscreen": "",
  9191. "frameborder": "no",
  9192. "border": "0",
  9193. "scrolling ": "no",
  9194. "style": {
  9195. "cssText": "border:0; width:100%; height:100%;"
  9196. },
  9197. "src": "/course-design-vue"
  9198. })
  9199. _box.appendChild(_iframe);
  9200. _box.appendChild(_jie);
  9201. _formdiv = new U.UF.UI.form(
  9202. "项目设计-" + _username,
  9203. _box, {
  9204. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9205. "style": {
  9206. "width": "90%",
  9207. "height": "90%",
  9208. "overflow": 'hidden'
  9209. },
  9210. "onresize": function () { }
  9211. }, {
  9212. closecallback: function () { }
  9213. }, {
  9214. "style": {
  9215. "height": "36px"
  9216. }
  9217. }).form; //创建窗体
  9218. _taskbar = {
  9219. "id": str + _formdiv.id,
  9220. "style": {
  9221. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9222. },
  9223. "name": "项目设计",
  9224. "forms": _formdiv,
  9225. "click": function () {
  9226. U.MD.D.I.openApplication(str, obj, info);
  9227. }
  9228. }
  9229. break;
  9230. }
  9231. const script1 = document.createElement("script");
  9232. script1.type = "text/javascript";
  9233. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9234. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9235. const script2 = document.createElement("script");
  9236. script2.type = "text/javascript";
  9237. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9238. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9239. const script3 = document.createElement("script");
  9240. script3.type = "text/javascript";
  9241. script3.charset = "UTF-8";
  9242. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9243. const script4 = document.createElement("script");
  9244. script4.type = "text/javascript";
  9245. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9246. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  9247. if (_iframe) {
  9248. if (str == 'doc') {
  9249. _iframe = _formdiv.querySelector('iframe')
  9250. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9251. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9252. _iframe.contentWindow.document.body.appendChild(script1);
  9253. _iframe.contentWindow.document.body.appendChild(script2);
  9254. // _iframe.contentWindow.document.body.appendChild(script3);
  9255. _iframe.contentWindow.document.body.appendChild(script4);
  9256. })
  9257. if (onloadListener) {
  9258. _iframe.contentDocument.location.reload()
  9259. } else {
  9260. _iframe.contentDocument.location.reload()
  9261. }
  9262. } else if (str == 'courseDesign') {
  9263. U.UF.DL.iframeLoad(_iframe, function () {
  9264. // _iframe.contentWindow.U.MD.O.W.load();
  9265. // _iframe.contentWindow.document.body.appendChild(script1);
  9266. _iframe.contentWindow.document.body.appendChild(script2);
  9267. _iframe.contentWindow.document.body.appendChild(script4);
  9268. })
  9269. } else if (str == 'mind') {
  9270. _iframe = _formdiv.querySelector('iframe')
  9271. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9272. //
  9273. _iframe.contentWindow.document.body.appendChild(script1);
  9274. _iframe.contentWindow.document.body.appendChild(script2);
  9275. _iframe.contentWindow.document.body.appendChild(script4);
  9276. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9277. })
  9278. if (onloadListener) {
  9279. _iframe.contentDocument.location.reload()
  9280. } else {
  9281. _iframe.contentDocument.location.reload()
  9282. }
  9283. } else if (str == 'whiteboard') {
  9284. _iframe = _formdiv.querySelector('iframe')
  9285. let onloadListener = _iframe.onload = () => {
  9286. _iframe.contentWindow.document.body.appendChild(script1);
  9287. _iframe.contentWindow.document.body.appendChild(script2);
  9288. _iframe.contentWindow.document.body.appendChild(script4);
  9289. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9290. };
  9291. // if (onloadListener) {
  9292. // try {
  9293. // _iframe.src += "?cocorobo="+new Date().getTime()
  9294. // _iframe.contentWindow.document.location.reload()
  9295. // } catch (error) {
  9296. // }
  9297. // } else {
  9298. // _iframe.contentDocument.location.reload()
  9299. // }
  9300. } else {
  9301. _iframe.onload = () => {
  9302. _iframe.contentWindow.document.body.appendChild(script1);
  9303. _iframe.contentWindow.document.body.appendChild(script2);
  9304. // _iframe.contentWindow.document.body.appendChild(script3);
  9305. _iframe.contentWindow.document.body.appendChild(script4);
  9306. };
  9307. }
  9308. _jie.onclick = async () => {
  9309. let text = ''
  9310. if (aTool == 1) {
  9311. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9312. } else if (aTool == 6) {
  9313. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9314. } else if (aTool == 3) {
  9315. text = await U.MD.D.I.getEditorContent(_iframe);
  9316. }
  9317. _loading.style.display = 'flex'
  9318. console.log(_loading);
  9319. var _ajs = _iframe.contentWindow.document.createElement("script");
  9320. _ajs.type = "text/javascript";
  9321. _ajs.innerHTML =
  9322. // 'console.log(' + _loading + ');\n' +
  9323. 'var _js = document.createElement("script");\n' +
  9324. '_js.type="text/javascript";\n' +
  9325. '_js.charset="UTF-8";\n' +
  9326. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9327. "_js.onload = function(){\n" +
  9328. ' var a = document.getElementsByTagName("img")\n' +
  9329. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9330. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9331. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9332. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9333. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9334. "beforeUpload_shishi(file," +
  9335. "'" +
  9336. _userid +
  9337. "'" +
  9338. ", " +
  9339. "'" +
  9340. _cid +
  9341. "'" +
  9342. ", " +
  9343. "'" +
  9344. _stage +
  9345. "'" +
  9346. ", " +
  9347. "'" +
  9348. _task +
  9349. "'" +
  9350. ", " +
  9351. "'" +
  9352. _tool +
  9353. "'" +
  9354. ", " +
  9355. "'" +
  9356. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  9357. "'" +
  9358. ", " +
  9359. "'" +
  9360. aTool +
  9361. "'" +
  9362. ", " +
  9363. "`" +
  9364. text +
  9365. "`" +
  9366. ")\n" +
  9367. " });\n" +
  9368. "}\n" +
  9369. "document.head.appendChild(_js);\n";
  9370. _iframe.contentWindow.document.head.appendChild(_ajs);
  9371. }
  9372. }
  9373. }
  9374. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  9375. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9376. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9377. _userid = student.userid, //登录用户id
  9378. _username = student.student //用户名字
  9379. let _iframe;
  9380. let _cid = cid,
  9381. _stage = stage,
  9382. _task = task,
  9383. _tool = tool;
  9384. var _jie = $$("div", {
  9385. "style": {
  9386. "position": "absolute",
  9387. "bottom": "50px",
  9388. "right": "50px",
  9389. "zIndex": "9999",
  9390. "backgroundColor": "#2268bc",
  9391. "color": "#fff",
  9392. "padding": "12px 20px",
  9393. "cursor": "pointer",
  9394. "borderRadius": "4px",
  9395. },
  9396. "innerHTML": "提交作业"
  9397. })
  9398. let aTool = ''
  9399. let _loading = document.createElement('div')
  9400. _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;"
  9401. // _loading.id = "";
  9402. let _lchild = document.createElement('div')
  9403. let _limg = document.createElement('img')
  9404. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9405. _limg.style = "width: 26px;margin-right: 10px;"
  9406. _lchild.appendChild(_limg)
  9407. let _lspan = document.createElement('span')
  9408. _lspan.innerHTML = "上传中..."
  9409. _lchild.appendChild(_lspan)
  9410. _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%);"
  9411. _loading.appendChild(_lchild)
  9412. var _box = $$('div', {
  9413. "style": {
  9414. "position": "relative",
  9415. "width": "100%",
  9416. "height": "100%",
  9417. },
  9418. })
  9419. _box.appendChild(_loading)
  9420. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  9421. switch (str) {
  9422. case "whiteboard":
  9423. aTool = 1;
  9424. _iframe = $$("iframe", {
  9425. "frameborder": "no",
  9426. "border": "0",
  9427. "scrolling ": "no",
  9428. "style": {
  9429. "cssText": "border:0;width:100%;height:100%"
  9430. },
  9431. "src": "https://beta.iwb.cocorobo.cn/"
  9432. })
  9433. _box.appendChild(_iframe);
  9434. _box.appendChild(_jie);
  9435. _formdiv = new U.UF.UI.form(
  9436. "电子白板-" + _username,
  9437. _box, {
  9438. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9439. "style": {
  9440. "width": "90%",
  9441. "height": "90%",
  9442. "overflow": 'hidden'
  9443. },
  9444. "onresize": function () { }
  9445. }, {
  9446. closecallback: function () { }
  9447. }, {
  9448. "style": {
  9449. "height": "36px"
  9450. }
  9451. }).form; //创建窗体
  9452. _taskbar = {
  9453. "id": str + _formdiv.id,
  9454. "style": {
  9455. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9456. },
  9457. "name": "电子白板",
  9458. "forms": _formdiv,
  9459. "click": function () {
  9460. U.MD.D.I.openApplication(str, obj, info);
  9461. }
  9462. }
  9463. break;
  9464. case "mind":
  9465. aTool = 3;
  9466. _iframe = $$("iframe", {
  9467. "frameborder": "no",
  9468. "border": "0",
  9469. "scrolling ": "no",
  9470. "style": {
  9471. "cssText": "border:0;width:100%;height:100%"
  9472. },
  9473. "src": "/kityminder-editor/dist/index.html"
  9474. })
  9475. _box.appendChild(_iframe);
  9476. _box.appendChild(_jie);
  9477. _formdiv = new U.UF.UI.form(
  9478. "思维导图-" + _username,
  9479. _box, { //"/jsmind/example/demo.html"
  9480. "id": "mind" + cid + stage + task + tool + _userid,
  9481. "style": {
  9482. "width": "90%",
  9483. "height": "90%",
  9484. "overflow": 'hidden'
  9485. },
  9486. "onresize": function () { }
  9487. }, {
  9488. closecallback: function () { }
  9489. }, {
  9490. "style": {
  9491. "height": "36px"
  9492. }
  9493. }).form; //创建窗体
  9494. _taskbar = {
  9495. "id": str + _formdiv.id,
  9496. "style": {
  9497. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9498. },
  9499. "name": "思维导图",
  9500. "forms": _formdiv,
  9501. "click": function () {
  9502. U.MD.D.I.openApplication(str, obj, info);
  9503. }
  9504. }
  9505. break;
  9506. case "MindMap":
  9507. aTool = 3;
  9508. _iframe = $$("iframe", {
  9509. "frameborder": "no",
  9510. "border": "0",
  9511. "scrolling ": "no",
  9512. "style": {
  9513. "cssText": "border:0;width:100%;height:100%"
  9514. },
  9515. "src": "//cloud.cocorobo.cn/mind/"
  9516. })
  9517. _box.appendChild(_iframe);
  9518. _box.appendChild(_jie);
  9519. _formdiv = new U.UF.UI.form(
  9520. "思维导图-" + _username,
  9521. _box, { //"/jsmind/example/demo.html"
  9522. "id": "mind" + cid + stage + task + tool + _userid,
  9523. "style": {
  9524. "width": "90%",
  9525. "height": "90%",
  9526. "overflow": 'hidden'
  9527. },
  9528. "onresize": function () { }
  9529. }, {
  9530. closecallback: function () { }
  9531. }, {
  9532. "style": {
  9533. "height": "36px"
  9534. }
  9535. }).form; //创建窗体
  9536. _taskbar = {
  9537. "id": str + _formdiv.id,
  9538. "style": {
  9539. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9540. },
  9541. "name": "思维导图",
  9542. "forms": _formdiv,
  9543. "click": function () {
  9544. U.MD.D.I.openApplication(str, obj, info);
  9545. }
  9546. }
  9547. break;
  9548. case "doc":
  9549. aTool = 6;
  9550. _iframe = $$("iframe", {
  9551. "frameborder": "no",
  9552. "border": "0",
  9553. "scrolling ": "no",
  9554. "style": {
  9555. "cssText": "border:0;width:100%;height:100%"
  9556. },
  9557. "src": "/Office/Word/WordEditArea.htm"
  9558. })
  9559. _box.appendChild(_iframe);
  9560. _box.appendChild(_jie);
  9561. _formdiv = new U.UF.UI.form(
  9562. "协同文档-" + _username,
  9563. _box, {
  9564. "id": "doc" + cid + stage + task + tool + _userid,
  9565. "style": {
  9566. "width": "90%",
  9567. "height": "90%",
  9568. "overflow": 'hidden'
  9569. },
  9570. "onresize": function () { }
  9571. }, {
  9572. closecallback: function () { }
  9573. }, {
  9574. "style": {
  9575. "height": "36px"
  9576. }
  9577. }).form; //创建窗体
  9578. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9579. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9580. })
  9581. _taskbar = {
  9582. "id": str + _formdiv.id,
  9583. "style": {
  9584. "backgroundImage": "url(/img/icon/doc.png)"
  9585. },
  9586. "name": "协同文档",
  9587. "forms": _formdiv,
  9588. "click": function () {
  9589. U.MD.D.I.openApplication(str, obj, info);
  9590. }
  9591. }
  9592. break;
  9593. case "mindNetwork": //好友打开
  9594. aTool = 7;
  9595. _iframe = $$("iframe", {
  9596. "webkitallowfullscreen": "",
  9597. "mozallowfullscreen": "",
  9598. "allowfullscreen": "",
  9599. "frameborder": "no",
  9600. "border": "0",
  9601. "scrolling ": "no",
  9602. "style": {
  9603. "cssText": "border:0; width:100%; height:100%;"
  9604. },
  9605. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9606. })
  9607. _box.appendChild(_iframe);
  9608. _box.appendChild(_jie);
  9609. _formdiv = new U.UF.UI.form(
  9610. "思维网格-" + _username,
  9611. _box, {
  9612. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9613. "style": {
  9614. "width": "90%",
  9615. "height": "90%",
  9616. "overflow": 'hidden'
  9617. },
  9618. "onresize": function () { }
  9619. }, {
  9620. closecallback: function () { }
  9621. }, {
  9622. "style": {
  9623. "height": "36px"
  9624. }
  9625. }).form; //创建窗体
  9626. _taskbar = {
  9627. "id": str + _formdiv.id,
  9628. "style": {
  9629. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9630. },
  9631. "name": "思维网格",
  9632. "forms": _formdiv,
  9633. "click": function () {
  9634. U.MD.D.I.openApplication(str, obj, info);
  9635. }
  9636. }
  9637. break;
  9638. case "courseDesign":
  9639. _iframe = $$("iframe", {
  9640. "webkitallowfullscreen": "",
  9641. "mozallowfullscreen": "",
  9642. "allowfullscreen": "",
  9643. "frameborder": "no",
  9644. "border": "0",
  9645. "scrolling ": "no",
  9646. "style": {
  9647. "cssText": "border:0; width:100%; height:100%;"
  9648. },
  9649. "src": "/course-design-vue"
  9650. })
  9651. _box.appendChild(_iframe);
  9652. _box.appendChild(_jie);
  9653. _formdiv = new U.UF.UI.form(
  9654. "项目设计-" + _username,
  9655. _box, {
  9656. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9657. "style": {
  9658. "width": "90%",
  9659. "height": "90%",
  9660. "overflow": 'hidden'
  9661. },
  9662. "onresize": function () { }
  9663. }, {
  9664. closecallback: function () { }
  9665. }, {
  9666. "style": {
  9667. "height": "36px"
  9668. }
  9669. }).form; //创建窗体
  9670. _taskbar = {
  9671. "id": str + _formdiv.id,
  9672. "style": {
  9673. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9674. },
  9675. "name": "项目设计",
  9676. "forms": _formdiv,
  9677. "click": function () {
  9678. U.MD.D.I.openApplication(str, obj, info);
  9679. }
  9680. }
  9681. break;
  9682. }
  9683. const script1 = document.createElement("script");
  9684. script1.type = "text/javascript";
  9685. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9686. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9687. const script2 = document.createElement("script");
  9688. script2.type = "text/javascript";
  9689. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9690. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9691. const script3 = document.createElement("script");
  9692. script3.type = "text/javascript";
  9693. script3.charset = "UTF-8";
  9694. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9695. const script4 = document.createElement("script");
  9696. script4.type = "text/javascript";
  9697. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9698. script4.src = window.origin + "/js/Common/jietu2E.js";
  9699. if (_iframe) {
  9700. if (str == 'doc') {
  9701. _iframe = _formdiv.querySelector('iframe')
  9702. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9703. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9704. _iframe.contentWindow.document.body.appendChild(script1);
  9705. _iframe.contentWindow.document.body.appendChild(script2);
  9706. // _iframe.contentWindow.document.body.appendChild(script3);
  9707. _iframe.contentWindow.document.body.appendChild(script4);
  9708. })
  9709. if (onloadListener) {
  9710. _iframe.contentDocument.location.reload()
  9711. } else {
  9712. _iframe.contentDocument.location.reload()
  9713. }
  9714. } else if (str == 'courseDesign') {
  9715. U.UF.DL.iframeLoad(_iframe, function () {
  9716. // _iframe.contentWindow.U.MD.O.W.load();
  9717. // _iframe.contentWindow.document.body.appendChild(script1);
  9718. _iframe.contentWindow.document.body.appendChild(script2);
  9719. _iframe.contentWindow.document.body.appendChild(script4);
  9720. })
  9721. } else if (str == 'mind') {
  9722. _iframe = _formdiv.querySelector('iframe')
  9723. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9724. //
  9725. _iframe.contentWindow.document.body.appendChild(script1);
  9726. _iframe.contentWindow.document.body.appendChild(script2);
  9727. _iframe.contentWindow.document.body.appendChild(script4);
  9728. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9729. })
  9730. if (onloadListener) {
  9731. _iframe.contentDocument.location.reload()
  9732. } else {
  9733. _iframe.contentDocument.location.reload()
  9734. }
  9735. } else if (str == 'whiteboard') {
  9736. _iframe = _formdiv.querySelector('iframe')
  9737. let onloadListener = _iframe.onload = () => {
  9738. _iframe.contentWindow.document.body.appendChild(script1);
  9739. _iframe.contentWindow.document.body.appendChild(script2);
  9740. _iframe.contentWindow.document.body.appendChild(script4);
  9741. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9742. };
  9743. // if (onloadListener) {
  9744. // try {
  9745. // _iframe.src += "?cocorobo="+new Date().getTime()
  9746. // _iframe.contentWindow.document.location.reload()
  9747. // } catch (error) {
  9748. // }
  9749. // } else {
  9750. // _iframe.contentDocument.location.reload()
  9751. // }
  9752. } else {
  9753. _iframe.onload = () => {
  9754. _iframe.contentWindow.document.body.appendChild(script1);
  9755. _iframe.contentWindow.document.body.appendChild(script2);
  9756. // _iframe.contentWindow.document.body.appendChild(script3);
  9757. _iframe.contentWindow.document.body.appendChild(script4);
  9758. };
  9759. }
  9760. _jie.onclick = async () => {
  9761. let text = ''
  9762. if (aTool == 1) {
  9763. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9764. } else if (aTool == 6) {
  9765. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9766. } else if (aTool == 3) {
  9767. text = await U.MD.D.I.getEditorContent(_iframe);
  9768. }
  9769. _loading.style.display = 'flex'
  9770. console.log(_loading);
  9771. var _ajs = _iframe.contentWindow.document.createElement("script");
  9772. _ajs.type = "text/javascript";
  9773. _ajs.innerHTML =
  9774. // 'console.log(' + _loading + ');\n' +
  9775. 'var _js = document.createElement("script");\n' +
  9776. '_js.type="text/javascript";\n' +
  9777. '_js.charset="UTF-8";\n' +
  9778. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9779. "_js.onload = function(){\n" +
  9780. ' var a = document.getElementsByTagName("img")\n' +
  9781. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9782. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9783. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9784. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9785. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9786. "beforeUpload_shishi(file," +
  9787. "'" +
  9788. _userid +
  9789. "'" +
  9790. ", " +
  9791. "'" +
  9792. _cid +
  9793. "'" +
  9794. ", " +
  9795. "'" +
  9796. _stage +
  9797. "'" +
  9798. ", " +
  9799. "'" +
  9800. _task +
  9801. "'" +
  9802. ", " +
  9803. "'" +
  9804. _tool +
  9805. "'" +
  9806. ", " +
  9807. "'" +
  9808. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9809. "'" +
  9810. ", " +
  9811. "'" +
  9812. aTool +
  9813. "'" +
  9814. ", " +
  9815. "`" +
  9816. text +
  9817. "`" +
  9818. ")\n" +
  9819. " });\n" +
  9820. "}\n" +
  9821. "document.head.appendChild(_js);\n";
  9822. _iframe.contentWindow.document.head.appendChild(_ajs);
  9823. }
  9824. }
  9825. }
  9826. U.MD.D.I.getEditorContent = function (iframe) {
  9827. return new Promise((resolve, reject) => {
  9828. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9829. console.log(content);
  9830. resolve(content)
  9831. });
  9832. });
  9833. }
  9834. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9835. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9836. // if (res.value[0].length > 0) {
  9837. // // resolve(res.value[0][0].text);
  9838. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9839. // $(fileInput).val('');
  9840. // });
  9841. // }
  9842. // }, [], { "type": "GET", "withCredentials": true });
  9843. var xmlhttp;
  9844. var Mac, Sn, DeviceId
  9845. if (window.XMLHttpRequest) {
  9846. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9847. xmlhttp = new XMLHttpRequest();
  9848. } else {
  9849. // IE6, IE5 浏览器执行代码
  9850. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9851. }
  9852. xmlhttp.onreadystatechange = function () {
  9853. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9854. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9855. // resolve(res.value[0][0].text);
  9856. if (type == '2') {
  9857. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9858. } else if (type == '3') {
  9859. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9860. }
  9861. } else {
  9862. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9863. }
  9864. }
  9865. }
  9866. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9867. xmlhttp.send();
  9868. }
  9869. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9870. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9871. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9872. _userinfo = US.userInfo, //登录用户信息
  9873. _userid = US.userInfo.userid //登录用户id
  9874. let _iframe;
  9875. let _cid = cid,
  9876. _stage = stage,
  9877. _task = task,
  9878. _tool = tool;
  9879. var _jie = $$("div", {
  9880. "style": {
  9881. "position": "absolute",
  9882. "bottom": "50px",
  9883. "right": "50px",
  9884. "zIndex": "9999",
  9885. "backgroundColor": "#2268bc",
  9886. "color": "#fff",
  9887. "padding": "12px 20px",
  9888. "cursor": "pointer",
  9889. "borderRadius": "4px",
  9890. },
  9891. "innerHTML": "确认并提交"
  9892. })
  9893. let aTool = ''
  9894. let _loading = document.createElement('div')
  9895. _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;"
  9896. // _loading.id = "";
  9897. let _lchild = document.createElement('div')
  9898. let _limg = document.createElement('img')
  9899. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9900. _limg.style = "width: 26px;margin-right: 10px;"
  9901. _lchild.appendChild(_limg)
  9902. let _lspan = document.createElement('span')
  9903. _lspan.innerHTML = "上传中..."
  9904. _lchild.appendChild(_lspan)
  9905. _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%);"
  9906. _loading.appendChild(_lchild)
  9907. var _box = $$('div', {
  9908. "style": {
  9909. "position": "relative",
  9910. "width": "100%",
  9911. "height": "100%",
  9912. },
  9913. })
  9914. _box.appendChild(_loading)
  9915. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9916. switch (str) {
  9917. case "whiteboard":
  9918. aTool = 1;
  9919. _iframe = $$("iframe", {
  9920. "frameborder": "no",
  9921. "border": "0",
  9922. "scrolling ": "no",
  9923. "style": {
  9924. "cssText": "border:0;width:100%;height:100%"
  9925. },
  9926. "src": "https://beta.iwb.cocorobo.cn/"
  9927. })
  9928. _box.appendChild(_iframe);
  9929. _box.appendChild(_jie);
  9930. _formdiv = new U.UF.UI.form(
  9931. "电子白板",
  9932. _box, {
  9933. "id": "whiteboards" + cid + stage + task + tool,
  9934. "style": {
  9935. "width": "90%",
  9936. "height": "90%",
  9937. "overflow": 'hidden'
  9938. },
  9939. "onresize": function () { }
  9940. }, {
  9941. closecallback: function () { }
  9942. }, {
  9943. "style": {
  9944. "height": "36px"
  9945. }
  9946. }).form; //创建窗体
  9947. _taskbar = {
  9948. "id": str + _formdiv.id,
  9949. "style": {
  9950. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9951. },
  9952. "name": "电子白板",
  9953. "forms": _formdiv,
  9954. "click": function () {
  9955. U.MD.D.I.openApplication(str, obj, info);
  9956. }
  9957. }
  9958. break;
  9959. case "mind":
  9960. aTool = 3;
  9961. _iframe = $$("iframe", {
  9962. "frameborder": "no",
  9963. "border": "0",
  9964. "scrolling ": "no",
  9965. "style": {
  9966. "cssText": "border:0;width:100%;height:100%"
  9967. },
  9968. "src": "/kityminder-editor/dist/index.html"
  9969. });
  9970. _box.appendChild(_iframe);
  9971. _box.appendChild(_jie);
  9972. _formdiv = new U.UF.UI.form(
  9973. "思维导图",
  9974. _box, { //"/jsmind/example/demo.html"
  9975. "id": "minds" + cid + stage + task + tool,
  9976. "style": {
  9977. "width": "90%",
  9978. "height": "90%",
  9979. "overflow": 'hidden'
  9980. },
  9981. "onresize": function () { }
  9982. }, {
  9983. closecallback: function () { }
  9984. }, {
  9985. "style": {
  9986. "height": "36px"
  9987. }
  9988. }).form; //创建窗体
  9989. _taskbar = {
  9990. "id": str + _formdiv.id,
  9991. "style": {
  9992. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9993. },
  9994. "name": "思维导图",
  9995. "forms": _formdiv,
  9996. "click": function () {
  9997. U.MD.D.I.openApplication(str, obj, info);
  9998. }
  9999. }
  10000. break;
  10001. case "doc":
  10002. aTool = 6;
  10003. _iframe = $$("iframe", {
  10004. "frameborder": "no",
  10005. "border": "0",
  10006. "scrolling ": "no",
  10007. "style": {
  10008. "cssText": "border:0;width:100%;height:100%"
  10009. },
  10010. "src": "/Office/Word/WordEditArea.htm"
  10011. })
  10012. _box.appendChild(_iframe);
  10013. _box.appendChild(_jie);
  10014. _formdiv = new U.UF.UI.form(
  10015. "协同文档",
  10016. _box, {
  10017. "id": "docs" + cid + stage + task + tool,
  10018. "style": {
  10019. "width": "90%",
  10020. "height": "90%",
  10021. "overflow": 'hidden'
  10022. },
  10023. "onresize": function () { }
  10024. }, {
  10025. closecallback: function () { }
  10026. }, {
  10027. "style": {
  10028. "height": "36px"
  10029. }
  10030. }).form; //创建窗体
  10031. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10032. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10033. })
  10034. _taskbar = {
  10035. "id": str + _formdiv.id,
  10036. "style": {
  10037. "backgroundImage": "url(/img/icon/doc.png)"
  10038. },
  10039. "name": "协同文档",
  10040. "forms": _formdiv,
  10041. "click": function () {
  10042. U.MD.D.I.openApplication(str, obj, info);
  10043. }
  10044. }
  10045. break;
  10046. }
  10047. const script1 = document.createElement("script");
  10048. script1.type = "text/javascript";
  10049. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10050. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  10051. const script2 = document.createElement("script");
  10052. script2.type = "text/javascript";
  10053. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10054. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  10055. const script3 = document.createElement("script");
  10056. script3.type = "text/javascript";
  10057. script3.charset = "UTF-8";
  10058. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  10059. const script4 = document.createElement("script");
  10060. script4.type = "text/javascript";
  10061. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10062. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  10063. if (_iframe) {
  10064. if (str == 'doc') {
  10065. _iframe = _formdiv.querySelector('iframe')
  10066. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10067. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10068. _iframe.contentWindow.document.body.appendChild(script1);
  10069. _iframe.contentWindow.document.body.appendChild(script2);
  10070. // _iframe.contentWindow.document.body.appendChild(script3);
  10071. _iframe.contentWindow.document.body.appendChild(script4);
  10072. })
  10073. if (onloadListener) {
  10074. _iframe.contentDocument.location.reload()
  10075. } else {
  10076. _iframe.contentDocument.location.reload()
  10077. }
  10078. } else if (str == 'mind') {
  10079. _iframe = _formdiv.querySelector('iframe')
  10080. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10081. _iframe.contentWindow.document.body.appendChild(script1);
  10082. _iframe.contentWindow.document.body.appendChild(script2);
  10083. _iframe.contentWindow.document.body.appendChild(script4);
  10084. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10085. })
  10086. if (onloadListener) {
  10087. _iframe.contentDocument.location.reload()
  10088. } else {
  10089. _iframe.contentDocument.location.reload()
  10090. }
  10091. } else {
  10092. _iframe.onload = () => {
  10093. _iframe.contentWindow.document.body.appendChild(script1);
  10094. _iframe.contentWindow.document.body.appendChild(script2);
  10095. // _iframe.contentWindow.document.body.appendChild(script3);
  10096. _iframe.contentWindow.document.body.appendChild(script4);
  10097. };
  10098. }
  10099. _jie.onclick = async () => {
  10100. let text = ''
  10101. if (aTool == 6) {
  10102. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10103. } else if (aTool == 3) {
  10104. text = await U.MD.D.I.getEditorContent(_iframe);
  10105. }
  10106. _loading.style.display = 'flex'
  10107. console.log(_loading);
  10108. var _ajs = _iframe.contentWindow.document.createElement("script");
  10109. _ajs.type = "text/javascript";
  10110. _ajs.innerHTML =
  10111. // 'console.log(' + _loading + ');\n' +
  10112. 'var _js = document.createElement("script");\n' +
  10113. '_js.type="text/javascript";\n' +
  10114. '_js.charset="UTF-8";\n' +
  10115. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10116. "_js.onload = function(){\n" +
  10117. ' var a = document.getElementsByTagName("img")\n' +
  10118. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10119. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10120. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10121. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10122. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10123. "beforeUpload_shishi(file," +
  10124. "'" +
  10125. _userid +
  10126. "'" +
  10127. ", " +
  10128. "'" +
  10129. _cid +
  10130. "'" +
  10131. ", " +
  10132. "'" +
  10133. _stage +
  10134. "'" +
  10135. ", " +
  10136. "'" +
  10137. _task +
  10138. "'" +
  10139. ", " +
  10140. "'" +
  10141. _tool +
  10142. "'" +
  10143. ", " +
  10144. "'" +
  10145. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  10146. "'" +
  10147. ", " +
  10148. "'" +
  10149. aTool +
  10150. "'" +
  10151. ", " +
  10152. "`" +
  10153. text +
  10154. "`" +
  10155. ")\n" +
  10156. " });\n" +
  10157. "}\n" +
  10158. "document.head.appendChild(_js);\n";
  10159. _iframe.contentWindow.document.head.appendChild(_ajs);
  10160. }
  10161. }
  10162. //U.MD.D.I.openClick(str);
  10163. //如果有任务栏信息
  10164. // if (_taskbar) {
  10165. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10166. // }
  10167. }
  10168. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  10169. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10170. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10171. _userinfo = US.userInfo, //登录用户信息
  10172. _userid = US.userInfo.userid //登录用户id
  10173. let _iframe;
  10174. let _cid = cid,
  10175. _stage = stage,
  10176. _task = task,
  10177. _tool = tool;
  10178. var _jie = $$("div", {
  10179. "style": {
  10180. "position": "absolute",
  10181. "bottom": "50px",
  10182. "right": "50px",
  10183. "zIndex": "9999",
  10184. "backgroundColor": "#2268bc",
  10185. "color": "#fff",
  10186. "padding": "12px 20px",
  10187. "cursor": "pointer",
  10188. "borderRadius": "4px",
  10189. },
  10190. "innerHTML": "确认并提交"
  10191. })
  10192. let aTool = ''
  10193. let _loading = document.createElement('div')
  10194. _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;"
  10195. // _loading.id = "";
  10196. let _lchild = document.createElement('div')
  10197. let _limg = document.createElement('img')
  10198. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10199. _limg.style = "width: 26px;margin-right: 10px;"
  10200. _lchild.appendChild(_limg)
  10201. let _lspan = document.createElement('span')
  10202. _lspan.innerHTML = "上传中..."
  10203. _lchild.appendChild(_lspan)
  10204. _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%);"
  10205. _loading.appendChild(_lchild)
  10206. var _box = $$('div', {
  10207. "style": {
  10208. "position": "relative",
  10209. "width": "100%",
  10210. "height": "100%",
  10211. },
  10212. })
  10213. _box.appendChild(_loading)
  10214. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  10215. switch (str) {
  10216. case "whiteboard":
  10217. aTool = 1;
  10218. _iframe = $$("iframe", {
  10219. "frameborder": "no",
  10220. "border": "0",
  10221. "scrolling ": "no",
  10222. "style": {
  10223. "cssText": "border:0;width:100%;height:100%"
  10224. },
  10225. "src": "https://beta.iwb.cocorobo.cn/"
  10226. })
  10227. _box.appendChild(_iframe);
  10228. _box.appendChild(_jie);
  10229. _formdiv = new U.UF.UI.form(
  10230. "电子白板",
  10231. _box, {
  10232. "id": "whiteboards" + cid + stage + task + tool,
  10233. "style": {
  10234. "width": "90%",
  10235. "height": "90%",
  10236. "overflow": 'hidden'
  10237. },
  10238. "onresize": function () { }
  10239. }, {
  10240. closecallback: function () { }
  10241. }, {
  10242. "style": {
  10243. "height": "36px"
  10244. }
  10245. }).form; //创建窗体
  10246. _taskbar = {
  10247. "id": str + _formdiv.id,
  10248. "style": {
  10249. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10250. },
  10251. "name": "电子白板",
  10252. "forms": _formdiv,
  10253. "click": function () {
  10254. U.MD.D.I.openApplication(str, obj, info);
  10255. }
  10256. }
  10257. break;
  10258. case "mind":
  10259. aTool = 3;
  10260. _iframe = $$("iframe", {
  10261. "frameborder": "no",
  10262. "border": "0",
  10263. "scrolling ": "no",
  10264. "style": {
  10265. "cssText": "border:0;width:100%;height:100%"
  10266. },
  10267. "src": "/kityminder-editor/dist/index.html"
  10268. });
  10269. _box.appendChild(_iframe);
  10270. _box.appendChild(_jie);
  10271. _formdiv = new U.UF.UI.form(
  10272. "思维导图",
  10273. _box, { //"/jsmind/example/demo.html"
  10274. "id": "minds" + cid + stage + task + tool,
  10275. "style": {
  10276. "width": "90%",
  10277. "height": "90%",
  10278. "overflow": 'hidden'
  10279. },
  10280. "onresize": function () { }
  10281. }, {
  10282. closecallback: function () { }
  10283. }, {
  10284. "style": {
  10285. "height": "36px"
  10286. }
  10287. }).form; //创建窗体
  10288. _taskbar = {
  10289. "id": str + _formdiv.id,
  10290. "style": {
  10291. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10292. },
  10293. "name": "思维导图",
  10294. "forms": _formdiv,
  10295. "click": function () {
  10296. U.MD.D.I.openApplication(str, obj, info);
  10297. }
  10298. }
  10299. break;
  10300. case "doc":
  10301. aTool = 6;
  10302. _iframe = $$("iframe", {
  10303. "frameborder": "no",
  10304. "border": "0",
  10305. "scrolling ": "no",
  10306. "style": {
  10307. "cssText": "border:0;width:100%;height:100%"
  10308. },
  10309. "src": "/Office/Word/WordEditArea.htm"
  10310. })
  10311. _box.appendChild(_iframe);
  10312. _box.appendChild(_jie);
  10313. _formdiv = new U.UF.UI.form(
  10314. "协同文档",
  10315. _box, {
  10316. "id": "docs" + cid + stage + task + tool,
  10317. "style": {
  10318. "width": "90%",
  10319. "height": "90%",
  10320. "overflow": 'hidden'
  10321. },
  10322. "onresize": function () { }
  10323. }, {
  10324. closecallback: function () { }
  10325. }, {
  10326. "style": {
  10327. "height": "36px"
  10328. }
  10329. }).form; //创建窗体
  10330. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10331. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10332. })
  10333. _taskbar = {
  10334. "id": str + _formdiv.id,
  10335. "style": {
  10336. "backgroundImage": "url(/img/icon/doc.png)"
  10337. },
  10338. "name": "协同文档",
  10339. "forms": _formdiv,
  10340. "click": function () {
  10341. U.MD.D.I.openApplication(str, obj, info);
  10342. }
  10343. }
  10344. break;
  10345. }
  10346. const script1 = document.createElement("script");
  10347. script1.type = "text/javascript";
  10348. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10349. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  10350. const script2 = document.createElement("script");
  10351. script2.type = "text/javascript";
  10352. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10353. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  10354. const script3 = document.createElement("script");
  10355. script3.type = "text/javascript";
  10356. script3.charset = "UTF-8";
  10357. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  10358. const script4 = document.createElement("script");
  10359. script4.type = "text/javascript";
  10360. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10361. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  10362. if (_iframe) {
  10363. if (str == 'doc') {
  10364. _iframe = _formdiv.querySelector('iframe')
  10365. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10366. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10367. _iframe.contentWindow.document.body.appendChild(script1);
  10368. _iframe.contentWindow.document.body.appendChild(script2);
  10369. // _iframe.contentWindow.document.body.appendChild(script3);
  10370. _iframe.contentWindow.document.body.appendChild(script4);
  10371. })
  10372. if (onloadListener) {
  10373. _iframe.contentDocument.location.reload()
  10374. } else {
  10375. _iframe.contentDocument.location.reload()
  10376. }
  10377. } else if (str == 'mind') {
  10378. _iframe = _formdiv.querySelector('iframe')
  10379. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10380. _iframe.contentWindow.document.body.appendChild(script1);
  10381. _iframe.contentWindow.document.body.appendChild(script2);
  10382. _iframe.contentWindow.document.body.appendChild(script4);
  10383. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10384. })
  10385. if (onloadListener) {
  10386. _iframe.contentDocument.location.reload()
  10387. } else {
  10388. _iframe.contentDocument.location.reload()
  10389. }
  10390. } else {
  10391. _iframe.onload = () => {
  10392. _iframe.contentWindow.document.body.appendChild(script1);
  10393. _iframe.contentWindow.document.body.appendChild(script2);
  10394. // _iframe.contentWindow.document.body.appendChild(script3);
  10395. _iframe.contentWindow.document.body.appendChild(script4);
  10396. };
  10397. }
  10398. _jie.onclick = async () => {
  10399. let text = ''
  10400. if (aTool == 6) {
  10401. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10402. } else if (aTool == 3) {
  10403. text = await U.MD.D.I.getEditorContent(_iframe);
  10404. }
  10405. _loading.style.display = 'flex'
  10406. console.log(_loading);
  10407. var _ajs = _iframe.contentWindow.document.createElement("script");
  10408. _ajs.type = "text/javascript";
  10409. _ajs.innerHTML =
  10410. // 'console.log(' + _loading + ');\n' +
  10411. 'var _js = document.createElement("script");\n' +
  10412. '_js.type="text/javascript";\n' +
  10413. '_js.charset="UTF-8";\n' +
  10414. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10415. "_js.onload = function(){\n" +
  10416. ' var a = document.getElementsByTagName("img")\n' +
  10417. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10418. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10419. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10420. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10421. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10422. "beforeUpload_shishi(file," +
  10423. "'" +
  10424. _userid +
  10425. "'" +
  10426. ", " +
  10427. "'" +
  10428. _cid +
  10429. "'" +
  10430. ", " +
  10431. "'" +
  10432. _stage +
  10433. "'" +
  10434. ", " +
  10435. "'" +
  10436. _task +
  10437. "'" +
  10438. ", " +
  10439. "'" +
  10440. _tool +
  10441. "'" +
  10442. ", " +
  10443. "'" +
  10444. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  10445. "'" +
  10446. ", " +
  10447. "'" +
  10448. aTool +
  10449. "'" +
  10450. ", " +
  10451. "`" +
  10452. text +
  10453. "`" +
  10454. ")\n" +
  10455. " });\n" +
  10456. "}\n" +
  10457. "document.head.appendChild(_js);\n";
  10458. _iframe.contentWindow.document.head.appendChild(_ajs);
  10459. }
  10460. }
  10461. //U.MD.D.I.openClick(str);
  10462. //如果有任务栏信息
  10463. // if (_taskbar) {
  10464. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10465. // }
  10466. }
  10467. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  10468. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10469. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10470. _userinfo = US.userInfo, //登录用户信息
  10471. _userid = US.userInfo.userid //登录用户id
  10472. let _iframe;
  10473. let _cid = cid,
  10474. _stage = stage,
  10475. _task = task,
  10476. _tool = tool;
  10477. var _jie = $$("div", {
  10478. "style": {
  10479. "position": "absolute",
  10480. "bottom": "50px",
  10481. "right": "50px",
  10482. "zIndex": "9999",
  10483. "backgroundColor": "#2268bc",
  10484. "color": "#fff",
  10485. "padding": "12px 20px",
  10486. "cursor": "pointer",
  10487. "borderRadius": "4px",
  10488. },
  10489. "innerHTML": "上传模板"
  10490. })
  10491. let aTool = ''
  10492. let _loading = document.createElement('div')
  10493. _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;"
  10494. // _loading.id = "";
  10495. let _lchild = document.createElement('div')
  10496. let _limg = document.createElement('img')
  10497. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10498. _limg.style = "width: 26px;margin-right: 10px;"
  10499. _lchild.appendChild(_limg)
  10500. let _lspan = document.createElement('span')
  10501. _lspan.innerHTML = "上传中..."
  10502. _lchild.appendChild(_lspan)
  10503. _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%);"
  10504. _loading.appendChild(_lchild)
  10505. var _box = $$('div', {
  10506. "style": {
  10507. "position": "relative",
  10508. "width": "100%",
  10509. "height": "100%",
  10510. },
  10511. })
  10512. _box.appendChild(_loading)
  10513. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  10514. switch (str) {
  10515. case "whiteboard":
  10516. aTool = 1;
  10517. _iframe = $$("iframe", {
  10518. "frameborder": "no",
  10519. "border": "0",
  10520. "scrolling ": "no",
  10521. "style": {
  10522. "cssText": "border:0;width:100%;height:100%"
  10523. },
  10524. "src": "https://beta.iwb.cocorobo.cn/"
  10525. })
  10526. _box.appendChild(_iframe);
  10527. _box.appendChild(_jie);
  10528. _formdiv = new U.UF.UI.form(
  10529. "电子白板",
  10530. _box, {
  10531. "id": "whiteboards_Yu" + cid + stage + task + tool,
  10532. "style": {
  10533. "width": "90%",
  10534. "height": "90%",
  10535. "overflow": 'hidden'
  10536. },
  10537. "onresize": function () { }
  10538. }, {
  10539. closecallback: function () { }
  10540. }, {
  10541. "style": {
  10542. "height": "36px"
  10543. }
  10544. }).form; //创建窗体
  10545. _taskbar = {
  10546. "id": str + _formdiv.id,
  10547. "style": {
  10548. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10549. },
  10550. "name": "电子白板",
  10551. "forms": _formdiv,
  10552. "click": function () {
  10553. U.MD.D.I.openApplication(str, obj, info);
  10554. }
  10555. }
  10556. break;
  10557. case "mind":
  10558. aTool = 3;
  10559. _iframe = $$("iframe", {
  10560. "frameborder": "no",
  10561. "border": "0",
  10562. "scrolling ": "no",
  10563. "style": {
  10564. "cssText": "border:0;width:100%;height:100%"
  10565. },
  10566. "src": "/kityminder-editor/dist/index.html"
  10567. });
  10568. _box.appendChild(_iframe);
  10569. _box.appendChild(_jie);
  10570. _formdiv = new U.UF.UI.form(
  10571. "思维导图",
  10572. _box, { //"/jsmind/example/demo.html"
  10573. "id": "minds_Yu" + cid + stage + task + tool,
  10574. "style": {
  10575. "width": "90%",
  10576. "height": "90%",
  10577. "overflow": 'hidden'
  10578. },
  10579. "onresize": function () { }
  10580. }, {
  10581. closecallback: function () { }
  10582. }, {
  10583. "style": {
  10584. "height": "36px"
  10585. }
  10586. }).form; //创建窗体
  10587. _taskbar = {
  10588. "id": str + _formdiv.id,
  10589. "style": {
  10590. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10591. },
  10592. "name": "思维导图",
  10593. "forms": _formdiv,
  10594. "click": function () {
  10595. U.MD.D.I.openApplication(str, obj, info);
  10596. }
  10597. }
  10598. break;
  10599. case "doc":
  10600. aTool = 6;
  10601. _iframe = $$("iframe", {
  10602. "frameborder": "no",
  10603. "border": "0",
  10604. "scrolling ": "no",
  10605. "style": {
  10606. "cssText": "border:0;width:100%;height:100%"
  10607. },
  10608. "src": "/Office/Word/WordEditArea.htm"
  10609. })
  10610. _box.appendChild(_iframe);
  10611. _box.appendChild(_jie);
  10612. _formdiv = new U.UF.UI.form(
  10613. "协同文档",
  10614. _box, {
  10615. "id": "docs_Yu" + cid + stage + task + tool,
  10616. "style": {
  10617. "width": "90%",
  10618. "height": "90%",
  10619. "overflow": 'hidden'
  10620. },
  10621. "onresize": function () { }
  10622. }, {
  10623. closecallback: function () { }
  10624. }, {
  10625. "style": {
  10626. "height": "36px"
  10627. }
  10628. }).form; //创建窗体
  10629. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10630. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10631. })
  10632. _taskbar = {
  10633. "id": str + _formdiv.id,
  10634. "style": {
  10635. "backgroundImage": "url(/img/icon/doc.png)"
  10636. },
  10637. "name": "协同文档",
  10638. "forms": _formdiv,
  10639. "click": function () {
  10640. U.MD.D.I.openApplication(str, obj, info);
  10641. }
  10642. }
  10643. break;
  10644. case "CocoPi":
  10645. aTool = 57;
  10646. _iframe = $$("iframe", {
  10647. "allowpaymentrequest": "allowpaymentrequest",
  10648. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10649. "webkitallowfullscreen": "",
  10650. "mozallowfullscreen": "",
  10651. "frameborder": "no",
  10652. "border": "0",
  10653. "scrolling ": "no",
  10654. "style": {
  10655. "cssText": "border:0;width:100%;height:100%"
  10656. },
  10657. "src": "https://pi.cocorobo.cn/"
  10658. })
  10659. _box.appendChild(_iframe);
  10660. _box.appendChild(_jie);
  10661. _formdiv = new U.UF.UI.form(
  10662. "CocoPi",
  10663. _box, {
  10664. "id": "CocoPi_Yu" + cid + stage + task + tool,
  10665. "style": {
  10666. "width": "90%",
  10667. "height": "90%",
  10668. "overflow": 'hidden'
  10669. },
  10670. "onresize": function () { }
  10671. }, {
  10672. closecallback: function () { }
  10673. }, {
  10674. "style": {
  10675. "height": "36px"
  10676. }
  10677. }).form; //创建窗体
  10678. _taskbar = {
  10679. "id": str + _formdiv.id,
  10680. "style": {
  10681. "backgroundImage": "url(/img/icon/cocopi.png)"
  10682. },
  10683. "name": "CocoPi",
  10684. "forms": _formdiv,
  10685. "click": function () {
  10686. U.MD.D.I.openApplication(str, obj, info);
  10687. }
  10688. }
  10689. break;
  10690. }
  10691. if (_iframe) {
  10692. if (str == 'doc') {
  10693. _iframe = _formdiv.querySelector('iframe')
  10694. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10695. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10696. })
  10697. if (onloadListener) {
  10698. _iframe.contentDocument.location.reload()
  10699. } else {
  10700. _iframe.contentDocument.location.reload()
  10701. }
  10702. } else if (str == 'mind') {
  10703. _iframe = _formdiv.querySelector('iframe')
  10704. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10705. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10706. })
  10707. if (onloadListener) {
  10708. _iframe.contentDocument.location.reload()
  10709. } else {
  10710. _iframe.contentDocument.location.reload()
  10711. }
  10712. } else if (str == 'whiteboard') {
  10713. _iframe = _formdiv.querySelector('iframe')
  10714. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10715. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10716. })
  10717. // if (onloadListener) {
  10718. // try {
  10719. // _iframe.src += "?cocorobo="+new Date().getTime()
  10720. // _iframe.contentWindow.document.location.reload()
  10721. // } catch (error) {
  10722. // }
  10723. // } else {
  10724. // _iframe.contentDocument.location.reload()
  10725. // }
  10726. } else if (str == 'CocoPi') {
  10727. _iframe = _formdiv.querySelector('iframe')
  10728. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10729. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10730. })
  10731. if (onloadListener) {
  10732. _iframe.contentDocument.location.reload()
  10733. } else {
  10734. _iframe.contentDocument.location.reload()
  10735. }
  10736. } else {
  10737. _iframe.onload = () => { };
  10738. }
  10739. _jie.onclick = async () => {
  10740. let text = ''
  10741. let type = '2'
  10742. if (aTool == 1) {
  10743. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10744. type = '3'
  10745. } else if (aTool == 6) {
  10746. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10747. type = '1'
  10748. } else if (aTool == 3) {
  10749. text = await U.MD.D.I.getEditorContent(_iframe);
  10750. type = '2'
  10751. } else if (aTool == 57) {
  10752. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10753. type = '4'
  10754. }
  10755. _loading.style.display = 'flex'
  10756. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10757. }
  10758. }
  10759. //U.MD.D.I.openClick(str);
  10760. //如果有任务栏信息
  10761. // if (_taskbar) {
  10762. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10763. // }
  10764. }
  10765. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10766. var xmlhttp;
  10767. var Mac, Sn, DeviceId
  10768. if (window.XMLHttpRequest) {
  10769. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10770. xmlhttp = new XMLHttpRequest();
  10771. } else {
  10772. // IE6, IE5 浏览器执行代码
  10773. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10774. }
  10775. xmlhttp.onreadystatechange = function () {
  10776. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10777. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10778. // resolve(res.value[0][0].text);
  10779. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10780. }
  10781. }
  10782. }
  10783. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10784. xmlhttp.send();
  10785. }
  10786. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10787. var xmlhttp;
  10788. var Mac, Sn, DeviceId
  10789. if (window.XMLHttpRequest) {
  10790. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10791. xmlhttp = new XMLHttpRequest();
  10792. } else {
  10793. // IE6, IE5 浏览器执行代码
  10794. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10795. }
  10796. xmlhttp.onreadystatechange = function () {
  10797. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10798. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10799. // resolve(res.value[0][0].text);
  10800. if (type == '2') {
  10801. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10802. } else if (type == '3') {
  10803. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10804. } else if (type == '4') {
  10805. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10806. }
  10807. } else {
  10808. if (type == '2') {
  10809. iframe.contentWindow.editor.minder.importData('json', '')
  10810. } else if (type == '3') {
  10811. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10812. } else if (type == '4') {
  10813. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10814. }
  10815. }
  10816. }
  10817. }
  10818. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10819. xmlhttp.send();
  10820. }
  10821. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10822. var xmlhttp;
  10823. var Mac, Sn, DeviceId
  10824. if (window.XMLHttpRequest) {
  10825. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10826. xmlhttp = new XMLHttpRequest();
  10827. } else {
  10828. // IE6, IE5 浏览器执行代码
  10829. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10830. }
  10831. xmlhttp.onreadystatechange = function () {
  10832. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10833. if (xmlhttp.response) {
  10834. // resolve(res.value[0][0].text);
  10835. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10836. // $(fileInput).val('');
  10837. // });
  10838. span.innerHTML = '上传成功'
  10839. setTimeout(() => {
  10840. loading.style.display = 'none'
  10841. }, 1000);
  10842. }
  10843. }
  10844. }
  10845. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10846. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10847. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10848. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10849. // 设置请求头,表示请求体的编码格式
  10850. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10851. // 设置请求体,使用url-encoded格式的数据
  10852. }
  10853. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10854. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10855. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10856. _userinfo = US.userInfo, //登录用户信息
  10857. _userid = US.userInfo.userid //登录用户id
  10858. let _iframe;
  10859. let _cid = cid,
  10860. _stage = stage,
  10861. _task = task,
  10862. _tool = tool;
  10863. var _jie = $$("div", {
  10864. "style": {
  10865. "position": "absolute",
  10866. "bottom": "50px",
  10867. "right": "50px",
  10868. "zIndex": "9999",
  10869. "backgroundColor": "#2268bc",
  10870. "color": "#fff",
  10871. "padding": "12px 20px",
  10872. "cursor": "pointer",
  10873. "borderRadius": "4px",
  10874. },
  10875. "innerHTML": "提交作业"
  10876. })
  10877. let aTool = ''
  10878. let _loading = document.createElement('div')
  10879. _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;"
  10880. // _loading.id = "";
  10881. let _lchild = document.createElement('div')
  10882. let _limg = document.createElement('img')
  10883. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10884. _limg.style = "width: 26px;margin-right: 10px;"
  10885. _lchild.appendChild(_limg)
  10886. let _lspan = document.createElement('span')
  10887. _lspan.innerHTML = "上传中..."
  10888. _lchild.appendChild(_lspan)
  10889. _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%);"
  10890. _loading.appendChild(_lchild)
  10891. var _box = $$('div', {
  10892. "style": {
  10893. "position": "relative",
  10894. "width": "100%",
  10895. "height": "100%",
  10896. },
  10897. })
  10898. _box.appendChild(_loading)
  10899. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10900. switch (str) {
  10901. case "CocoPi":
  10902. aTool = 57;
  10903. _iframe = $$("iframe", {
  10904. "allowpaymentrequest": "allowpaymentrequest",
  10905. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10906. "webkitallowfullscreen": "",
  10907. "mozallowfullscreen": "",
  10908. "frameborder": "no",
  10909. "border": "0",
  10910. "scrolling ": "no",
  10911. "style": {
  10912. "cssText": "border:0;width:100%;height:100%"
  10913. },
  10914. "src": "https://pi.cocorobo.cn/"
  10915. })
  10916. _box.appendChild(_iframe);
  10917. _box.appendChild(_jie);
  10918. _formdiv = new U.UF.UI.form(
  10919. "CocoPi",
  10920. _box, {
  10921. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10922. "style": {
  10923. "width": "90%",
  10924. "height": "90%",
  10925. "overflow": 'hidden'
  10926. },
  10927. "onresize": function () { }
  10928. }, {
  10929. closecallback: function () { }
  10930. }, {
  10931. "style": {
  10932. "height": "36px"
  10933. }
  10934. }).form; //创建窗体
  10935. _taskbar = {
  10936. "id": str + _formdiv.id,
  10937. "style": {
  10938. "backgroundImage": "url(/img/icon/cocopi.png)"
  10939. },
  10940. "name": "CocoPi",
  10941. "forms": _formdiv,
  10942. "click": function () {
  10943. U.MD.D.I.openApplication(str, obj, info);
  10944. }
  10945. }
  10946. break;
  10947. }
  10948. if (_iframe) {
  10949. if (str == 'CocoPi') {
  10950. _iframe = _formdiv.querySelector('iframe')
  10951. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10952. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10953. })
  10954. if (onloadListener) {
  10955. _iframe.contentDocument.location.reload()
  10956. } else {
  10957. _iframe.contentDocument.location.reload()
  10958. }
  10959. }
  10960. _jie.onclick = async () => {
  10961. let text = ''
  10962. if (aTool == 57) {
  10963. text = _iframe.contentWindow.getLoadXmlStr()
  10964. }
  10965. _loading.style.display = 'flex'
  10966. console.log(_loading);
  10967. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10968. _loading.style.display = 'none'
  10969. let _div = document.createElement('div')
  10970. _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;"
  10971. let _inner = document.createElement('div')
  10972. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10973. _inner.innerHTML = "上传成功"
  10974. _div.appendChild(_inner)
  10975. _iframe.contentWindow.window.document.body.appendChild(_div)
  10976. _div.onclick = () => {
  10977. _iframe.contentWindow.window.document.body.removeChild(_div)
  10978. }
  10979. setTimeout(() => {
  10980. _iframe.contentWindow.window.document.body.removeChild(_div)
  10981. }, 1000);
  10982. }, [], { "type": "POST", "withCredentials": true });
  10983. }
  10984. }
  10985. }
  10986. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10987. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10988. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10989. _userid = student.userid, //登录用户id
  10990. _username = student.student //用户名字
  10991. let _iframe;
  10992. let _cid = cid,
  10993. _stage = stage,
  10994. _task = task,
  10995. _tool = tool;
  10996. var _jie = $$("div", {
  10997. "style": {
  10998. "position": "absolute",
  10999. "bottom": "50px",
  11000. "right": "50px",
  11001. "zIndex": "9999",
  11002. "backgroundColor": "#2268bc",
  11003. "color": "#fff",
  11004. "padding": "12px 20px",
  11005. "cursor": "pointer",
  11006. "borderRadius": "4px",
  11007. },
  11008. "innerHTML": "提交作业"
  11009. })
  11010. let aTool = ''
  11011. let _loading = document.createElement('div')
  11012. _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;"
  11013. // _loading.id = "";
  11014. let _lchild = document.createElement('div')
  11015. let _limg = document.createElement('img')
  11016. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  11017. _limg.style = "width: 26px;margin-right: 10px;"
  11018. _lchild.appendChild(_limg)
  11019. let _lspan = document.createElement('span')
  11020. _lspan.innerHTML = "上传中..."
  11021. _lchild.appendChild(_lspan)
  11022. _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%);"
  11023. _loading.appendChild(_lchild)
  11024. var _box = $$('div', {
  11025. "style": {
  11026. "position": "relative",
  11027. "width": "100%",
  11028. "height": "100%",
  11029. },
  11030. })
  11031. _box.appendChild(_loading)
  11032. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  11033. switch (str) {
  11034. case "CocoPi":
  11035. aTool = 57;
  11036. _iframe = $$("iframe", {
  11037. "allowpaymentrequest": "allowpaymentrequest",
  11038. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  11039. "webkitallowfullscreen": "",
  11040. "mozallowfullscreen": "",
  11041. "frameborder": "no",
  11042. "border": "0",
  11043. "scrolling ": "no",
  11044. "style": {
  11045. "cssText": "border:0;width:100%;height:100%"
  11046. },
  11047. "src": "https://pi.cocorobo.cn/"
  11048. })
  11049. _box.appendChild(_iframe);
  11050. _box.appendChild(_jie);
  11051. _formdiv = new U.UF.UI.form(
  11052. "CocoPi-" + _username,
  11053. _box, {
  11054. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  11055. "style": {
  11056. "width": "90%",
  11057. "height": "90%",
  11058. "overflow": 'hidden'
  11059. },
  11060. "onresize": function () { }
  11061. }, {
  11062. closecallback: function () { }
  11063. }, {
  11064. "style": {
  11065. "height": "36px"
  11066. }
  11067. }).form; //创建窗体
  11068. _taskbar = {
  11069. "id": str + _formdiv.id,
  11070. "style": {
  11071. "backgroundImage": "url(/img/icon/cocopi.png)"
  11072. },
  11073. "name": "CocoPi",
  11074. "forms": _formdiv,
  11075. "click": function () {
  11076. U.MD.D.I.openApplication(str, obj, info);
  11077. }
  11078. }
  11079. break;
  11080. }
  11081. if (_iframe) {
  11082. if (str == 'CocoPi') {
  11083. _iframe = _formdiv.querySelector('iframe')
  11084. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11085. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  11086. })
  11087. if (onloadListener) {
  11088. _iframe.contentDocument.location.reload()
  11089. } else {
  11090. _iframe.contentDocument.location.reload()
  11091. }
  11092. }
  11093. _jie.onclick = async () => {
  11094. let text = ''
  11095. if (aTool == 57) {
  11096. text = _iframe.contentWindow.getLoadXmlStr()
  11097. }
  11098. _loading.style.display = 'flex'
  11099. console.log(_loading);
  11100. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  11101. _loading.style.display = 'none'
  11102. let _div = document.createElement('div')
  11103. _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;"
  11104. let _inner = document.createElement('div')
  11105. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  11106. _inner.innerHTML = "上传成功"
  11107. _div.appendChild(_inner)
  11108. _iframe.contentWindow.window.document.body.appendChild(_div)
  11109. _div.onclick = () => {
  11110. _iframe.contentWindow.window.document.body.removeChild(_div)
  11111. }
  11112. setTimeout(() => {
  11113. _iframe.contentWindow.window.document.body.removeChild(_div)
  11114. }, 1000);
  11115. }, [], { "type": "POST", "withCredentials": true });
  11116. }
  11117. }
  11118. }
  11119. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  11120. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  11121. if (res.value[0].length > 0) {
  11122. if (atool == 57) {
  11123. iframe.contentWindow.loadingXml(res.value[0][0].content)
  11124. }
  11125. } else {
  11126. if (atool == 57) {
  11127. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  11128. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  11129. }
  11130. }
  11131. }, [], { "type": "POST", "withCredentials": true });
  11132. }
  11133. U.MD.D.addOp = function(text,type,time){
  11134. var userInfo = US.userInfo;
  11135. if(Object.keys(userInfo).length !== 0){
  11136. U.A.Request(US.Config.pbl + "addOperationTimeT", [userInfo.userid,text,type,time], function (res) {
  11137. }, [], { "type": "POST", "withCredentials": true });
  11138. }
  11139. }